﻿/* ============================================================
   COMMON STYLES - Header, Footer, Shared Components
   TaskSquads Static Site
   ============================================================ */

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

body {
    font-family: "Segoe UI", sans-serif;
    background: #f9f9f9;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

/* === HEADER & NAVIGATION === */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100px;
}

/* === Logo === */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    display: block;
    height: 150px;
    width: auto;
}

/* === Nav Menu === */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b6b80;
    border-radius: 5px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
    /* background: #e6f0ff; */
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #007bff;
    border-radius: 3px;
}

/* === Dropdown === */
.arrow-icon {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.dropdown-parent {
    position: relative;
}

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

.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.dropdown-parent:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #6b6b80;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.dropdown li a:hover {
    color: #007bff;
    background: #e6f0ff;
}

/* === Nav Actions === */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta {
    padding: 0.6rem 1.5rem;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-cta:hover {
    background: #0069d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.35);
}

/* === Hamburger === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    z-index: 1001;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.hamburger .bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #2d2d3a;
    border-radius: 3px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* === Nav Overlay === */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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

/* === TOP BAR === */
.top-bar {
    background-color: #0080ff;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 40px;
}

.top-bar .top-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.top-bar .top-left span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.top-bar .top-left a {
    color: white;
    text-decoration: none;
}

.top-bar .top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25px;
    margin: 0 15px;
    max-width: calc(100% - 400px);
}

.top-bar .top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    min-width: 150px;
}

.top-bar .top-right a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.top-bar .top-right a:hover {
    color: #dcefff;
    transform: scale(1.1);
}

/* === PROMO BANNER === */
.promo-banner {
    background: transparent !important;
    color: white;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.promo-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 28px;
    display: flex;
    align-items: center;
}

.moving-promo-text {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: movePromoText 20s linear infinite;
    padding-right: 30px;
    font-size: 16px;
}

.moving-promo-text a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 10px;
    margin-left: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}

.moving-promo-text a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.promo-banner:hover .moving-promo-text {
    animation-play-state: paused;
}

@keyframes movePromoText {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* === RESPONSIVE: TOP BAR & PROMO === */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 8px;
        min-height: auto;
        text-align: center;
    }

    .top-bar .top-left,
    .top-bar .top-center,
    .top-bar .top-right {
        width: 100%;
        justify-content: center;
        margin: 0;
        min-width: auto;
        max-width: 100%;
    }

    .top-bar .top-left {
        order: 1;
        flex-direction: row;
        gap: 15px;
        font-size: 0.85rem;
        padding: 5px 0;
    }
    .top-bar .top-center {
        order: 2;
        height: 35px !important;
        min-height: 35px !important;
        margin: 5px 0;
    }
    .top-bar .top-right {
        order: 3;
        padding: 5px 0;
        gap: 1rem;
    }

    .promo-banner {
        font-size: 16px !important;
        height: 35px !important;
        min-height: 35px !important;
    }
    .promo-container {
        height: 35px !important;
        min-height: 35px !important;
    }
    .moving-promo-text {
        animation: movePromoTextMobile 15s linear infinite !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.6rem 0.8rem;
    }
    .top-bar .top-left {
        font-size: 0.8rem;
        gap: 10px;
        flex-direction: column;
    }
    .top-bar .top-center {
        height: 32px !important;
        min-height: 32px !important;
    }
    .promo-banner {
        font-size: 15px !important;
        height: 32px !important;
        min-height: 32px !important;
    }
    .promo-container {
        height: 32px !important;
        min-height: 32px !important;
    }
    .moving-promo-text {
        font-size: 15px !important;
        animation: movePromoTextMobile 12s linear infinite !important;
    }
}

@keyframes movePromoTextMobile {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* === RESPONSIVE NAVBAR === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Dropdown on mobile */
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-left: 1rem;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .dropdown-parent.active .dropdown {
        max-height: 300px;
        padding: 0.25rem 0;
    }

    .dropdown li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-parent .arrow-icon {
        transition: transform 0.3s ease;
    }

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

    .dropdown-parent:hover .arrow-icon {
        transform: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
        height: 60px;
    }

    .logo-img {
        height: 40px;
    }
}

/* === FOOTER === */
.main-footer {
    background: linear-gradient(135deg, #001a33, #002244);
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-block h3 {
    color: #0080ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-block h4 {
    color: #0080ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-block p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-block ul li a:hover {
    color: #0080ff;
}

.footer-block ul.reasons li {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-block ul.reasons li i {
    color: #28a745;
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: #25d366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* === BACK TO TOP === */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #0080ff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition:
        background 0.3s,
        transform 0.3s;
}

#backToTop:hover {
    background-color: #005fcc;
    transform: scale(1.1);
}

/* === UTILITY: CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ============================================================
   HOME PAGE STYLES - TaskSquads Static Site
   ============================================================ */

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 70vh;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
    background: #0a1f3a;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    z-index: 2;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    animation: pulseShape 6s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
}

.hero-accent-line {
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin-bottom: 20px;
    animation:
        expandWidth 1s ease-out 0.3s both,
        glowLine 2s ease-in-out infinite alternate;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideFromLeft 1s ease-out 0.5s both;
}

.hero-desc {
    font-size: 1.3rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    animation: slideFromLeft 1s ease-out 0.8s both;
}

/* Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1.1s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: transform 0.3s;
}

.hero-feature:hover {
    transform: translateX(5px);
}

.hero-check {
    width: 24px;
    height: 24px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-check i {
    color: white;
    font-size: 12px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 1.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff6600;
    color: white;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    border-radius: 30px;
    padding: 0.85rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #005dc1, #00a8d1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background: #007bff;
    color: #fff;
    font-size: 0.95rem;
}

.btn-sm:hover {
    background: #005fcc;
}

/* === HERO ANIMATIONS === */
@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-10px) rotate(45deg);
    }
}

@keyframes pulseShape {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes glowLine {
    from {
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
    }
}

/* === HOW IT WORKS === */
/* ============================================================
   HOW IT WORKS - Modern Card Flow Design
   ============================================================ */
.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8faff 50%, #eef3ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background dots */
.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(0, 123, 255, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255, 102, 0, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(76, 175, 80, 0.03) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.how-it-works h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
}

.how-it-works h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    margin: 16px auto 0;
    border-radius: 2px;
}

.how-it-works .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ---- Steps Grid ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ---- Individual Step Card ---- */
.step {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px 35px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease;
    animation: fadeInUp 0.8s ease-out both;
    z-index: 1;
}

.step:nth-child(1) {
    animation-delay: 0.15s;
}
.step:nth-child(2) {
    animation-delay: 0.35s;
}
.step:nth-child(3) {
    animation-delay: 0.55s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Step top accent bar */
.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    border-radius: 0 0 5px 5px;
    transition: width 0.3s ease;
}

.step:nth-child(1)::before {
    background: linear-gradient(90deg, #007bff, #00a6ff);
}
.step:nth-child(2)::before {
    background: linear-gradient(90deg, #ff6600, #ff9500);
}
.step:nth-child(3)::before {
    background: linear-gradient(90deg, #4caf50, #66d96a);
}

.step:hover::before {
    width: 120px;
}

/* ---- Step Circle (Number Badge) ---- */
.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.step:hover .step-circle {
    transform: scale(1.08);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.step-circle span {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Circle color themes */
.step-blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
}
.step-blue span {
    color: #007bff;
}

.step-orange {
    background: linear-gradient(135deg, #ff6600, #cc4400);
}
.step-orange span {
    color: #ff6600;
}

.step-green {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}
.step-green span {
    color: #4caf50;
}

/* ---- Step Text ---- */
.step h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 260px;
    margin: 0 auto;
}

/* ---- CTA Button ---- */
.steps-cta {
    margin-top: 60px;
    position: relative;
}

/* ============================================================
   GLOBAL COVERAGE - World-Class Service Reach
   ============================================================ */
.global-coverage {
    padding: 100px 20px;
    background: #0080ff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle world-map-like grid pattern */
.global-coverage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 25% 30%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 75% 70%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
}

/* Dot grid overlay */
.global-coverage::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
    pointer-events: none;
}

.global-coverage .container {
    position: relative;
    z-index: 1;
}

.global-coverage h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.global-coverage h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.6));
    margin: 16px auto 0;
    border-radius: 2px;
}

.global-coverage .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ---- Regions Grid ---- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

/* ---- Region Card ---- */
.region-card {
    background: #ffffff;
    padding: 40px 30px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Top gradient accent line */
.region-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    transition: width 0.35s ease;
}

.region-card:nth-child(1)::before {
    background: linear-gradient(90deg, #007bff, #00a6ff);
}
.region-card:nth-child(2)::before {
    background: linear-gradient(90deg, #0056b3, #0080ff);
}
.region-card:nth-child(3)::before {
    background: linear-gradient(90deg, #004085, #0066cc);
}

.region-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 16px 40px rgba(0, 0, 0, 0.12);
}

.region-card:hover::before {
    width: 100px;
}

/* ---- Region Icon ---- */
.region-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.region-card:hover .region-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Glow behind icon */
.region-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: inherit;
    opacity: 0.2;
    filter: blur(12px);
    z-index: -1;
}

.region-card h3 {
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.region-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.region-tz {
    display: inline-block;
    color: #007bff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.region-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: #0056b3;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    letter-spacing: 0.2px;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 45px 30px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #0080ff;
}

.stat-label {
    color: #1a202c;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* === SERVICES PREVIEW === */
.services-preview {
    padding: 90px 20px;
    background: #ffffff;
    text-align: center;
}

.services-preview h2 {
    color: #000000;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-preview .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (min-width: 1024px) {
    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #ffffff;
    padding: 36px 28px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 340px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    color: #0d6efd;
    font-size: 2rem;
    margin-bottom: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: #1a202c;
    line-height: 1.8;
    flex-grow: 1;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

.section-cta .btn-gradient {
    background: linear-gradient(90deg, #0d6efd, #12b8ff);
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.section-cta .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(13, 110, 253, 0.4);
}

/* === PLANS PREVIEW === */
.plans-preview {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.plans-preview h2 {
    color: #1f4294;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.plans-preview .section-subtitle {
    color: white;
}

.plans-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .plans-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .plans-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    color: #333;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.plan-card h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.plan-price {
    font-size: 1.6rem;
    color: #333;
    font-weight: bold;
}
.plan-rate {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
}

/* === ENQUIRY & FEEDBACK === */
.enquiry-feedback {
    background: #f4f8ff;
    padding: 80px 20px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.enquiry-box,
.testimonials-box {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.enquiry-box h2,
.testimonials-box h2 {
    color: #083b7a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enquiry-box > p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* === Enquiry Form === */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a202c;
    background: #ffffff;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    outline: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.enquiry-form input {
    height: 50px;
}

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

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #9ca3af;
}

.enquiry-form button {
    background: #0d6efd;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25);
}

.enquiry-form button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
}

/* === Testimonials === */
.testimonials-box {
    overflow-y: auto;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-grow: 1;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #eef5ff;
    border-left: 5px solid #0d6efd;
    border-radius: 10px;
    padding: 20px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.1);
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text p {
    margin: 0 0 10px 0;
    font-style: italic;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.93rem;
}

.testimonial-author {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9rem;
}

.testimonial-author small {
    color: #6b7280;
    font-weight: 400;
    display: block;
    margin-top: 2px;
    font-size: 0.82rem;
}

/* === Responsive === */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .enquiry-form button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* === TRUST BADGES === */
.trust-badges {
    padding: 80px 20px;
    background: #0d1b2a;
    text-align: center;
}

.trust-badges h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.trust-badges .section-subtitle {
    color: #b0c4de;
}

.trust-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .trust-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.trust-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.trust-icon svg {
    stroke: white;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
    color: #003366;
    margin: 20px 0 12px;
    font-size: 1.2rem;
    font-weight: 600;
}
.trust-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        height: auto;
        max-height: none;
        margin-top: 0;
    }
    .hero-content {
        padding: 30px 5%;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        flex-direction: column;
    }
    .how-it-works h2 {
        font-size: 2rem;
    }
    .step {
        padding: 40px 24px 30px;
    }
    .global-coverage h2 {
        font-size: 1.8rem;
    }
    .two-col {
        flex-direction: column;
    }
}
/* ============================================================
   ABOUT PAGE STYLES - TaskSquads Static Site
   ============================================================ */

/* === HERO === */
.about-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 80%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
    animation: backgroundShift 10s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(1deg);
    }
}

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

.about-hero-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-hero-badge i {
    color: #fe5865;
    margin-right: 8px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.typing-text {
    color: #fe5865;
    border-right: 3px solid #fe5865;
    padding-right: 5px;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn-pulse {
    background: #ffffff;
    color: #007bff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* === MISSION === */
.mission-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.mission-text h2 {
    color: #0080ff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.mission-points {
    margin-top: 1rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mission-point i {
    color: #0080ff;
    margin-top: 0.2rem;
}
.mission-point strong {
    display: block;
    margin-bottom: 0.3rem;
}
.mission-point p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.why-choose-box {
    background: linear-gradient(135deg, #0080ff, #00bfff);
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.why-choose-box i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}
.why-choose-box h3 {
    margin-bottom: 0.8rem;
}
.why-choose-box p {
    opacity: 0.9;
    line-height: 1.6;
}

/* === VISION & VALUES === */
.vision-values {
    padding: 3rem 0;
    background: #fff;
}

.vision-values h2 {
    text-align: center;
    color: #007bff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.vm-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    transition: all 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.vm-card h3 {
    color: #0056b3;
    margin-bottom: 0.8rem;
}
.vm-card p {
    color: #666;
    line-height: 1.6;
}

/* === WHAT WE DO === */
.what-we-do {
    padding: 3rem 0;
    background: white;
}

.what-we-do h2 {
    text-align: center;
    color: #0080ff;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.segment {
    margin-bottom: 3rem;
}

.segment-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.segment-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.badge-blue {
    background: linear-gradient(135deg, #007bff, #00c6ff);
}
.badge-pink {
    background: linear-gradient(135deg, #e91e63, #ff5722);
}

.segment-header p {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.segment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.segment-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.segment-card h3 {
    color: #0056b3;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}
.segment-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.88rem;
}

.segment-tags {
    margin-top: 0.8rem;
}
.segment-tags span {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin: 2px;
    background: #e8f0fe;
    color: #0056b3;
}

.segment-cta {
    text-align: center;
    margin-top: 2rem;
}

/* === ACHIEVEMENTS === */
.achievements {
    padding: 3rem 0;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    text-align: center;
}

.achievements h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.achievement-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 3rem 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: #0080ff;
    margin-bottom: 2rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

.review-card > i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.review-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0080ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author h4 {
    margin: 0;
    color: #0080ff;
    font-size: 1.1rem;
}
.review-author small {
    color: #666;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.slider-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* === CTA === */
.about-cta {
    padding: 3rem 0;
    background: #007bff;
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #007bff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
}
.btn-outline-white {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .vm-grid,
    .segment-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2rem;
    }
}
/* ============================================================
   SERVICES PAGE STYLES - TaskSquads Static Site
   ============================================================ */

/* === HERO === */
.services-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* === INTRODUCTION === */
.intro-section {
    padding: 4rem 2rem;
    background: #fff;
}

.intro-section h2 {
    text-align: center;
    color: #007bff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.intro-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s;
}

.intro-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}
.intro-highlight i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}
.intro-highlight h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.intro-highlight p {
    color: #666;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* === VA SERVICES === */
.va-services {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}
.service-card i {
    font-size: 3rem;
    color: #0080ff;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.service-card:hover i {
    transform: scale(1.1);
    color: #00bfff;
}
.service-card h3 {
    color: #0056b3;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* === ANNOTATION WORKFLOW === */
.annotation-workflow {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
    overflow: hidden;
}

.workflow-container {
    position: relative;
    max-width: 1400px;
    margin: auto;
    min-height: 850px;
}

/* Center Circle */
.workflow-center {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001d72, #0037b3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18),
        0 0 0 14px rgba(0, 123, 255, 0.08);
    animation: floatCenter 5s ease-in-out infinite;
}

.center-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #d633ff;
    border-right-color: #00bfff;
    border-bottom-color: #ffb703;
    border-left-color: #70e000;
    animation: rotateRing 10s linear infinite;
}

.center-content {
    text-align: center;
    color: white;
    z-index: 2;
}
.center-content h3 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.center-bars {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.center-bars span {
    width: 40px;
    height: 5px;
    border-radius: 30px;
    animation: barPulse 2s ease-in-out infinite;
}
.center-bars span:nth-child(1) {
    background: #d633ff;
}
.center-bars span:nth-child(2) {
    background: #00bfff;
    animation-delay: 0.15s;
}
.center-bars span:nth-child(3) {
    background: #ffb703;
    animation-delay: 0.3s;
}
.center-bars span:nth-child(4) {
    background: #70e000;
    animation-delay: 0.45s;
}
.center-bars span:nth-child(5) {
    background: #ffd60a;
    animation-delay: 0.6s;
}

@keyframes floatCenter {
    0%,
    100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-12px);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes barPulse {
    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.7;
    }
    50% {
        transform: scaleX(1.3);
        opacity: 1;
    }
}

/* Right Items */
.workflow-items {
    position: absolute;
    right: 0;
    width: 55%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.workflow-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.workflow-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.item-1 {
    margin-left: 0;
}
.item-2 {
    margin-left: 40px;
}
.item-3 {
    margin-left: 70px;
}
.item-4 {
    margin-left: 70px;
}
.item-5 {
    margin-left: 40px;
}
.item-6 {
    margin-left: 0;
}

/* Node */
.node {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 18px;
    animation: pulseNode 2s infinite;
}

.purple-node {
    background: #d633ff;
    box-shadow: 0 0 12px #d633ff;
}
.violet-node {
    background: #7b2ff7;
    box-shadow: 0 0 12px #7b2ff7;
}
.blue-node {
    background: #00bfff;
    box-shadow: 0 0 12px #00bfff;
}
.orange-node {
    background: #ff8500;
    box-shadow: 0 0 12px #ff8500;
}
.green-node {
    background: #52b788;
    box-shadow: 0 0 12px #52b788;
}
.yellow-node {
    background: #ffcc00;
    box-shadow: 0 0 12px #ffcc00;
}

@keyframes pulseNode {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.35);
    }
}

/* Workflow Cards */
.workflow-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.6rem;
    border-radius: 60px;
    color: white;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.workflow-card:hover {
    transform: translateX(12px) scale(1.03);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.workflow-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: 0.4s;
}

.workflow-card:hover .workflow-icon {
    transform: rotate(8deg) scale(1.08);
}

.workflow-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
}
.workflow-text p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.94;
    font-size: 0.88rem;
}

.purple {
    background: linear-gradient(135deg, #d633ff, #b5179e);
}
.violet {
    background: linear-gradient(135deg, #7b2ff7, #5a189a);
}
.blue {
    background: linear-gradient(135deg, #00bfff, #0096db);
}
.orange {
    background: linear-gradient(135deg, #ff8500, #ffb703);
}
.green {
    background: linear-gradient(135deg, #52b788, #70e000);
}
.yellow {
    background: linear-gradient(135deg, #ffcc00, #ffb703);
}

/* === CTA === */
.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.services-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #007bff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .workflow-container {
        min-height: auto;
    }
    .workflow-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 3rem;
        width: 260px;
        height: 260px;
    }
    .workflow-items {
        position: relative;
        width: 100%;
        transform: none;
        top: auto;
    }
    .workflow-item {
        margin-left: 0 !important;
    }
    .workflow-card {
        border-radius: 25px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    .services-hero p {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .workflow-card {
        flex-direction: column;
        text-align: center;
        padding: 1.3rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}
/* ============================================================
   PRICING PAGE STYLES - TaskSquads Static Site
   ============================================================ */

/* === VA PRICING === */
.pricing-section {
    background-color: #f4f9fc;
    padding: 4rem 2rem;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
}
.pricing-section > p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* === TABS === */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.plan-tab {
    border: 2px solid #dce8f5;
    background: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
    font-family: inherit;
}

.plan-tab:hover {
    border-color: #0080ff;
    color: #0080ff;
}
.plan-tab.active {
    background: #0080ff;
    color: #fff;
    border-color: #0080ff;
}

.plan-tab-content {
    display: none;
}
.plan-tab-content.active {
    display: block;
}

/* === DURATION TOGGLE === */
.duration-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.duration-btn {
    border: 2px solid #dce8f5;
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
}

.duration-btn:hover {
    border-color: #0080ff;
}
.duration-btn.active {
    background: #0080ff;
    color: #fff;
}

.discount-badge {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #28a745;
}
.duration-btn.active .discount-badge {
    color: #fff;
}

/* === DURATION PANELS === */
.duration-panel {
    display: none;
}
.duration-panel.active {
    display: block;
}

/* === PRICING TABLE === */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid #0080ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-size: 1.25rem;
    color: #0080ff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.plan-price {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.price-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.hourly-rate {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.total-hours {
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.validity {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}

.plan-btn {
    background-color: #0080ff;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.plan-btn:hover {
    background-color: #006ad1;
}

/* === ANNOTATION PRICING === */
.annotation-pricing {
    background-color: #f5faff;
    padding: 4rem 2rem;
    text-align: center;
}

.annotation-pricing h2 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 0.5rem;
}
.pricing-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.annotation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.annotation-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.annotation-card:hover {
    transform: translateY(-5px);
}
.annotation-card.popular {
    border: 2px solid #0080ff;
    background: #eaf6ff;
}

.annotation-card h3 {
    font-size: 1.4rem;
    color: #0080ff;
    margin-bottom: 0.5rem;
}
.anno-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.annotation-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 1rem 0 1.5rem;
}

.annotation-card ul li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #444;
}

.annotation-card ul li i {
    margin-right: 8px;
    color: #0080ff;
}

.choose-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: #0080ff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.choose-btn:hover {
    background-color: #005bb5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 1.8rem;
    }
    .pricing-table,
    .annotation-grid {
        grid-template-columns: 1fr;
    }
    .plan-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}
/* ============================================================
   CONTACT PAGE STYLES - TaskSquads Static Site
   ============================================================ */

:root {
    --primary-blue: #0080ff;
    --primary-dark: #0044aa;
    --primary-gradient: linear-gradient(135deg, #0080ff 0%, #0044aa 100%);
    --accent: #ff6b6b;
    --text-dark: #1a2a4a;
    --text-gray: #4a5a6f;
    --border-color: #eef2f6;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    --radius: 16px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* === HERO === */
.contact-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 20px 50px;
    background: linear-gradient(135deg, #f0f7ff 0%, #dce8f8 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.contact-hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.hero-badges span {
    background: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 128, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.hero-badges span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.12);
    border-color: rgba(0, 128, 255, 0.2);
}
.hero-badges span i {
    color: var(--primary-blue);
}

/* === TAB NAVIGATION === */
.tab-nav {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.tab-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    color: var(--text-gray);
    font-family: inherit;
}

.tab-btn:hover {
    background: rgba(0, 128, 255, 0.04);
    color: var(--primary-blue);
}
.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.3);
}
.tab-btn i {
    margin-right: 10px;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}
.tab-content.active {
    display: block;
}

/* === TWO COLUMN LAYOUT === */
.two-col {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    min-height: 580px;
}

/* === LEFT COLUMN === */
.contact-info-col {
    background: var(--primary-gradient);
    padding: 40px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}
.brand-tagline {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.4;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}
.info-item i {
    font-size: 1.1rem;
    width: 20px;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    font-weight: 600;
    margin-bottom: 1px;
}
.info-value {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-word;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
}
.info-value a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.about-section {
    margin: 4px 0 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

.about-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    font-weight: 600;
    margin-bottom: 3px;
}
.about-text {
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.8;
}

.map-container {
    margin-top: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

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

/* === RIGHT COLUMN === */
.contact-content-col {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content-col h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-content-col h2 i {
    color: var(--primary-blue);
}

.subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.booking-iframe {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

/* === FORM === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}
.required {
    color: var(--accent);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
    background: #fafcff;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 128, 255, 0.08);
    background: white;
}

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

.contact-form button {
    background: var(--primary-gradient);
    color: white;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    margin-top: 4px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.3);
}

/* === ALERTS === */
.message-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .booking-iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 20px 15px 40px;
    }
    .contact-hero {
        padding: 35px 20px 30px;
    }
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    .contact-hero .hero-badges span {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .tab-btn {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
    .booking-iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    .booking-iframe {
        height: 400px;
    }
    .contact-info-col {
        padding: 20px 16px;
    }
    .contact-content-col {
        padding: 20px 16px;
    }
}
