/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #0b1f22;
    background-color: #fff;
}

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

/* Topbar */
.topbar {
    background-color: #1a1a1a;
    height: 38px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
}

.topbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    gap: 15px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.topbar-icon {
    flex-shrink: 0;
}

.topbar-email,
.topbar-address {
    color: #ffffff;
    font-size: 12px;
}

/* Navbar */

/* Navbar */
:root {
    --navbar-height: 85px;
}

.main-navbar {
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.98) 0%, rgba(11, 31, 34, 0.95) 100%);
    height: var(--navbar-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(77, 208, 225, 0.1);
}

body {
    padding-top: 0;
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left: Logo + Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.brand-accent {
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Fusion Venture LLC – logo text style (header) */
.navbar-brand-fusion .brand-main {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Center: Menu Items */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar-menu-item {
    position: relative;
}

.navbar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-link:hover {
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a.nav-disabled,
.navbar-link.nav-disabled {
    cursor: default;
    pointer-events: auto;
}
.navbar-link.nav-disabled:hover {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: inherit;
    color: #ffffff;
}
.dropdown-menu a.nav-disabled:hover,
.mega-group-list a.nav-disabled:hover {
    color: #e0e0e0;
    background-color: transparent;
}

.dropdown-caret {
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #0b1f22;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1) 0%, rgba(38, 198, 218, 0.1) 100%);
    color: #0b1f22;
}

/* ===== Services Mega Menu ===== */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 40px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

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

.mega-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-group {
    margin-bottom: 28px;
}

.mega-group:last-child {
    margin-bottom: 0;
}

.mega-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b1f22;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.mega-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.mega-group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-group-list li {
    margin-bottom: 8px;
}

.mega-group-list li:last-child {
    margin-bottom: 0;
}

.mega-group-list a {
    display: block;
    color: #0b1f22;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.mega-group-list a:hover {
    color: #1ec7bd;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
    .mega-menu {
        width: 800px;
        padding: 35px;
    }

    .mega-services {
        gap: 50px;
    }

    .mega-group {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        position: relative;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        padding: 0;
        background: rgba(5, 25, 28, 0.6);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mega-dropdown.open .mega-menu {
        max-height: 2000px;
    }

    .mega-services {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }

    .mega-group {
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 16px;
    }

    .mega-group:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-group-title {
        color: #ffffff;
        font-size: 13px;
        cursor: pointer;
        user-select: none;
        position: relative;
        padding-right: 30px;
    }

    .mega-group-title::after {
        content: '+';
        position: absolute;
        right: 0;
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .mega-group.open .mega-group-title::after {
        transform: rotate(45deg);
    }

    .mega-icon {
        filter: brightness(0) invert(1);
    }

    .mega-group-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }

    .mega-group.open .mega-group-list {
        max-height: 500px;
        margin-top: 12px;
    }

    .mega-group-list a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 0;
        font-size: 14px;
    }

    .mega-group-list a:hover {
        color: #4dd0e1;
    }
}

@media (max-width: 480px) {
    .mega-services {
        padding: 16px;
    }

    .mega-group {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .mega-group-title {
        font-size: 12px;
        gap: 10px;
    }

    .mega-icon {
        width: 20px;
        height: 20px;
    }

    .mega-group-list a {
        font-size: 13px;
        padding: 8px 0;
    }
}

/* Right: Call Helpline */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.navbar-helpline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.helpline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.helpline-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.helpline-label {
    font-size: 11px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Topbar */
@media (max-width: 768px) {
    .topbar {
        height: auto;
        min-height: 36px;
        padding: 8px 0;
    }

    .topbar .container {
        flex-wrap: wrap;
        gap: 6px;
        padding: 0 16px;
    }

    .topbar-left {
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
    }

    .topbar-email,
    .topbar-address {
        font-size: 10px;
        word-break: break-word;
    }

    .topbar-icon {
        width: 14px;
        height: 14px;
    }
}

.helpline-number {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .navbar-menu-list {
        gap: 20px;
    }

    .navbar-link {
        font-size: 14px;
    }

    .helpline-number {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }

    .navbar-container {
        padding: 0 16px;
        gap: 0;
        justify-content: space-between;
    }

    .navbar-brand {
        flex-shrink: 0;
    }

    .navbar-brand-text {
        display: none;
    }

    .navbar-logo svg {
        width: 35px;
        height: 35px;
    }

    .navbar-menu {
        display: none !important;
    }

    .navbar-menu.menu-open {
        display: none !important;
    }

    .navbar-menu-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .navbar-menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
        min-height: 44px;
    }

    .dropdown-caret {
        transition: transform 0.3s ease;
    }

    .navbar-menu-item.dropdown.open .dropdown-caret {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(5, 25, 28, 0.6);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }

    .navbar-menu-item.dropdown.open .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a {
        display: block;
        color: #e0e0e0;
        padding: 14px 0 14px 20px;
        font-size: 15px;
        min-height: 44px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background-color: rgba(77, 208, 225, 0.1);
        color: #4dd0e1;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navbar-helpline {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .helpline-label {
        display: none;
    }

    .helpline-text {
        flex-direction: row;
        align-items: center;
    }

    .helpline-number {
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .main-navbar {
        min-height: 65px;
    }

    .navbar-container {
        padding: 0 12px;
    }

    .navbar-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 16px 12px;
    }

    .navbar-link {
        font-size: 15px;
        padding: 14px 0;
    }

    .dropdown-menu a {
        padding: 12px 0 12px 16px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: rgba(11, 31, 34, 0.95);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(77, 208, 225, 0.12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='networkGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%234dd0e1;stop-opacity:0.2'/%3E%3Cstop offset='100%25' style='stop-color:%2326c6da;stop-opacity:0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='url(%23networkGrad)' stroke-width='1.5' fill='none'%3E%3Ccircle cx='150' cy='50' r='8' fill='%234dd0e1' fill-opacity='0.3'/%3E%3Ccircle cx='250' cy='100' r='8' fill='%234dd0e1' fill-opacity='0.3'/%3E%3Ccircle cx='200' cy='180' r='8' fill='%234dd0e1' fill-opacity='0.3'/%3E%3Ccircle cx='100' cy='200' r='8' fill='%234dd0e1' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='120' r='8' fill='%234dd0e1' fill-opacity='0.3'/%3E%3Cline x1='150' y1='50' x2='250' y2='100'/%3E%3Cline x1='250' y1='100' x2='200' y2='180'/%3E%3Cline x1='200' y1='180' x2='100' y2='200'/%3E%3Cline x1='100' y1='200' x2='50' y2='120'/%3E%3Cline x1='50' y1='120' x2='150' y2='50'/%3E%3Cline x1='200' y1='180' x2='150' y2='50'/%3E%3Cline x1='250' y1='100' x2='100' y2='200'/%3E%3C/g%3E%3C/svg%3E");
    background-position: right center, right center;
    background-size: 600px 600px, 600px 600px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 31, 34, 0.95) 0%, rgba(11, 31, 34, 0.75) 50%, rgba(11, 31, 34, 0.6) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 50%, rgba(77, 208, 225, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(77, 208, 225, 0.03) 2px,
            rgba(77, 208, 225, 0.03) 4px
        );
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.hero-small-heading {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}

.hero-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.hero-main-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-accent {
    color: #ff6600;
}

.hero-cta-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}

.hero-email-input {
    flex: 1;
    background: #e8e8e8;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14px;
    color: #0b1f22;
    outline: none;
    transition: border-color 0.3s ease;
}

.hero-email-input::placeholder {
    color: #666;
}

.hero-email-input:focus {
    border-color: #4dd0e1;
}

.hero-cta-button {
    background: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta-button:hover {
    background: #ff7700;
    transform: translateY(-1px);
}

.hero-cta-button:active {
    transform: translateY(0);
}

.hero-partners {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 120px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.meta-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.meta-logo svg {
    width: 32px;
    height: 32px;
}

.partner-text {
    font-size: 11px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-main-heading {
        font-size: 52px;
    }

    .hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 30px;
        gap: 25px;
    }

    .hero-main-heading {
        font-size: 36px;
    }

    .hero-cta-bar {
        flex-direction: column;
        gap: 10px;
    }

    .hero-email-input {
        width: 100%;
    }

    .hero-cta-button {
        width: 100%;
    }

    .hero-partners {
        gap: 25px;
        justify-content: center;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-main-heading {
        font-size: 28px;
    }

    .hero-small-heading {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-content {
        padding: 0 20px;
    }
}

/* Trust Badges Strip */
.trust-badges-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 50px 0;
    width: 100%;
}

.trust-badges-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.trust-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    flex: 1;
    min-height: 60px;
}

.trust-badge-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 1;
    visibility: visible;
}

.trustpilot-logo svg,
.excellence-award svg {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
}

.trust-badge-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.trust-customers {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
}

.trust-avatars {
    display: flex;
    align-items: center;
    gap: -10px;
}

.trust-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(11, 31, 34, 0.95);
    margin-left: -15px;
    overflow: hidden;
    background-color: #4a5568;
    flex-shrink: 0;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-customers-text {
    color: #b0b0b0;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Responsive Trust Badges */
@media (max-width: 1024px) {
    .trust-badges-container {
        padding: 0 40px;
    }

    .trust-badge-item {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 0;
    }

    .trust-badges-container {
        padding: 0 30px;
    }

    .trust-badges-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .trust-badge-divider {
        display: none;
    }

    .trust-badge-item {
        padding: 0 15px;
        flex: 0 0 auto;
    }

    .trust-badge-logo,
    .trustpilot-logo svg,
    .excellence-award svg {
        max-height: 50px;
        max-width: 120px;
    }

    .trust-customers {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-left: 0;
    }

    .trust-avatars {
        gap: -10px;
    }
}

@media (max-width: 480px) {
    .trust-badges-container {
        padding: 0 20px;
    }

    .trust-badges-row {
        gap: 15px;
    }

    .trust-badge-logo,
    .trustpilot-logo svg,
    .excellence-award svg {
        max-height: 40px;
        max-width: 100px;
    }

    .trust-avatar {
        width: 45px;
        height: 45px;
    }

    .trust-customers-text {
        font-size: 14px;
    }
}

/* ===== Customers Praise Section ===== */
.customers-praise-section {
    position: relative;
    background-color: #05191c;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.customers-praise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(11, 31, 34, 0.4) 0%, rgba(5, 25, 28, 0.8) 50%, rgba(5, 25, 28, 1) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(77, 208, 225, 0.02) 2px,
            rgba(77, 208, 225, 0.02) 4px
        );
    z-index: 1;
    pointer-events: none;
}

.customers-praise-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, rgba(5, 25, 28, 0.6) 100%),
        radial-gradient(circle 120px at 15% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle 100px at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle 110px at 10% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        radial-gradient(circle 95px at 90% 75%, rgba(255, 255, 255, 0.09) 0%, transparent 50%),
        radial-gradient(circle 105px at 25% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle 115px at 75% 45%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle 100px at 50% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        radial-gradient(circle 110px at 40% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle 95px at 60% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.customers-praise-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.customers-praise-kicker {
    font-size: 12px;
    font-weight: 300;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 0;
}

.customers-praise-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 1.5px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.customers-praise-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    letter-spacing: -0.5px;
}

.praise-line-1,
.praise-line-2 {
    display: block;
}

.customers-praise-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin: 25px 0 30px 0;
}

.praise-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.praise-checkmark {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.customers-praise-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    width: 100%;
    margin-top: 35px;
}

.praise-info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0;
}

.praise-info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2px;
}

.praise-info-icon svg {
    width: 100%;
    height: 100%;
}

.praise-info-text {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    padding-top: 0;
}

/* Responsive Customers Praise */
@media (max-width: 1024px) {
    .customers-praise-container {
        padding: 0 40px;
        gap: 40px;
    }

    .customers-praise-title {
        font-size: 50px;
        line-height: 1.08;
    }

    .customers-praise-features {
        gap: 50px;
    }

    .praise-feature-item {
        font-size: 34px;
        gap: 12px;
    }

    .praise-checkmark {
        width: 32px;
        height: 32px;
    }

    .customers-praise-info {
        gap: 35px;
    }

    .praise-info-block {
        gap: 16px;
    }

    .praise-info-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .customers-praise-section {
        padding: 60px 0;
    }

    .customers-praise-container {
        padding: 0 30px;
        gap: 35px;
    }

    .customers-praise-kicker {
        font-size: 11px;
        letter-spacing: 2.5px;
        padding-bottom: 16px;
    }

    .customers-praise-underline {
        width: 300px;
        height: 1.5px;
    }

    .customers-praise-title {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -0.3px;
    }

    .customers-praise-features {
        gap: 35px;
        margin: 20px 0 25px 0;
    }

    .praise-feature-item {
        font-size: 30px;
        gap: 12px;
        font-weight: 700;
    }

    .praise-checkmark {
        width: 30px;
        height: 30px;
    }

    .customers-praise-info {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 30px;
    }

    .praise-info-block {
        gap: 16px;
        padding: 0;
    }

    .praise-info-icon {
        width: 32px;
        height: 32px;
        margin-top: 2px;
    }

    .praise-info-text {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .customers-praise-container {
        padding: 0 20px;
        gap: 30px;
    }

    .customers-praise-kicker {
        letter-spacing: 2px;
        padding-bottom: 14px;
    }

    .customers-praise-underline {
        width: 250px;
        height: 1.5px;
    }

    .customers-praise-title {
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -0.2px;
    }

    .customers-praise-features {
        gap: 25px;
        flex-direction: column;
        align-items: center;
        margin: 18px 0 22px 0;
    }

    .praise-feature-item {
        font-size: 26px;
        gap: 10px;
    }

    .praise-checkmark {
        width: 28px;
        height: 28px;
    }

    .customers-praise-info {
        gap: 24px;
        margin-top: 25px;
    }
}

/* ===== Testimonials Slider ===== */
.testimonials-section {
    position: relative;
    background-color: #05191c;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(11, 31, 34, 0.4) 0%, rgba(5, 25, 28, 0.8) 50%, rgba(5, 25, 28, 1) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(77, 208, 225, 0.02) 2px,
            rgba(77, 208, 225, 0.02) 4px
        );
    z-index: 1;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, rgba(5, 25, 28, 0.6) 100%),
        radial-gradient(circle 120px at 15% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle 100px at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle 110px at 10% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        radial-gradient(circle 95px at 90% 75%, rgba(255, 255, 255, 0.09) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.t-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(77, 208, 225, 0.15);
    border: 2px solid rgba(77, 208, 225, 0.3);
    color: #4dd0e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.t-arrow:hover {
    background: rgba(77, 208, 225, 0.25);
    border-color: rgba(77, 208, 225, 0.5);
    transform: scale(1.1);
}

.t-arrow:active {
    transform: scale(0.95);
}

.t-arrow svg {
    width: 24px;
    height: 24px;
}

.t-viewport {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.t-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.t-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    background: rgba(11, 31, 34, 0.6);
    border: 1.5px solid rgba(77, 208, 225, 0.3);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 320px;
    transition: border-color 0.3s ease;
}

.t-card:hover {
    border-color: rgba(77, 208, 225, 0.5);
}

.t-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.t-header-text {
    flex: 1;
}

.t-name {
    color: #4dd0e1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.t-meta {
    color: #b0b0b0;
    font-size: 12px;
}

.t-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.t-stars {
    display: flex;
    gap: 2px;
}

.t-stars svg {
    width: 16px;
    height: 16px;
}

.t-days {
    color: #b0b0b0;
    font-size: 12px;
}

.t-text {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.t-brand {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    align-items: flex-end;
}

.t-brand svg {
    width: 80px;
    height: 24px;
}

.t-brand img.t-brand-logo {
    max-width: 120px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-container {
        padding: 0 40px;
        gap: 20px;
    }

    .t-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 30px;
        gap: 16px;
    }

    .t-arrow {
        width: 40px;
        height: 40px;
    }

    .t-arrow svg {
        width: 20px;
        height: 20px;
    }

    .t-card {
        flex: 0 0 calc(100% - 32px);
        min-width: calc(100% - 32px);
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 20px;
        gap: 12px;
    }

    .t-arrow {
        width: 36px;
        height: 36px;
    }

    .t-arrow svg {
        width: 18px;
        height: 18px;
    }

    .t-card {
        padding: 20px;
        min-height: 300px;
        gap: 14px;
    }

    .t-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .t-name {
        font-size: 15px;
    }

    .t-text {
        font-size: 13px;
    }
}

/* ===== About Intro Split Section ===== */
.about-intro {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.95) 0%, rgba(5, 25, 28, 0.98) 100%);
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}

.about-intro-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Left Collage */
.about-collage {
    position: relative;
    width: 100%;
    height: 560px;
}

/* Animated collage (replaces image) */
.about-collage-animated {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.collage-animation-wrap {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0b1f22 0%, #0a2528 50%, #062024 100%);
    border-radius: 18px;
}

.collage-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: collageOrbFloat 12s ease-in-out infinite;
}

.collage-orb-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.45) 0%, transparent 70%);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.collage-orb-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(34, 209, 199, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 15%;
    animation-delay: -3s;
}

.collage-orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(47, 224, 154, 0.35) 0%, transparent 70%);
    bottom: 20%;
    left: 35%;
    animation-delay: -6s;
}

.collage-orb-4 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(38, 198, 218, 0.4) 0%, transparent 70%);
    top: 25%;
    right: 30%;
    animation-delay: -9s;
}

@keyframes collageOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.collage-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77, 208, 225, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 208, 225, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 18px;
    animation: collageGridPulse 8s ease-in-out infinite;
}

@keyframes collageGridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.collage-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(34, 209, 199, 0.12) 0%, transparent 50%);
    border-radius: 18px;
    pointer-events: none;
}

.collage-badge-overlay {
    z-index: 4;
}

/* Main Image - single image in about section (kept for other pages if used) */
.collage-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 18px;
    object-fit: cover;
    filter: grayscale(100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Bottom Left Badge */
.collage-badge {
    position: absolute;
    z-index: 4;
    bottom: 56px;
    left: 0;
    width: 250px;
    padding: 18px;
    background: rgba(5, 21, 24, 0.92);
    border: 2px solid rgba(30, 199, 189, 0.65);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
}

.badge-icon-box {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-box svg {
    width: 100%;
    height: 100%;
}

.badge-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

/* Right Text Block */
.about-copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FV Icon */
.fv-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.fv-icon {
    width: 80px;
    height: 80px;
    animation: fvIconPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.5));
}

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

.about-heading {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 100%;
}

.about-paragraph {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
    max-width: 800px;
    text-align: center;
}

/* Responsive About Intro */
@media (max-width: 1024px) {
    .about-intro {
        padding: 80px 0;
    }

    .about-intro-container {
        padding: 0 40px;
    }

    .about-heading {
        font-size: 44px;
    }

    .fv-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 60px 0;
    }

    .about-intro-container {
        padding: 0 30px;
    }

    .about-copy {
        gap: 25px;
        align-items: center;
        text-align: center;
    }

    .about-heading {
        font-size: 36px;
        text-align: center;
    }

    .about-paragraph {
        text-align: center;
        max-width: 100%;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 50px 0;
    }

    .about-intro-container {
        padding: 0 20px;
        gap: 40px;
    }

    .about-collage {
        min-height: 380px;
    }

    .collage-main {
        width: 90%;
        height: 360px;
    }

    .collage-diamond {
        width: 100px;
        height: 100px;
        top: 80px;
        left: 68%;
    }

    .collage-diamond svg {
        width: 30px;
        height: 30px;
    }

    .collage-badge {
        width: 200px;
        bottom: 30px;
        padding: 12px 14px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-paragraph {
        font-size: 16px;
    }

    .fv-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===== Awards Section ===== */
.awards-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.95) 0%, rgba(5, 25, 28, 0.98) 100%);
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}

.awards-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.awards-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.awards-kicker {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 18px;
}

.awards-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 420px;
    height: 1.5px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.awards-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.awards-paragraph {
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.awards-paragraph strong {
    font-weight: 700;
    color: #ffffff;
}

/* Right Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 22px;
    width: 100%;
}

.award-tile {
    background: rgba(11, 36, 39, 0.8);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
}

.award-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.award-badge {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Awards */
@media (max-width: 1024px) {
    .awards-section {
        padding: 80px 0;
    }

    .awards-container {
        padding: 0 40px;
        gap: 50px;
    }

    .awards-title {
        font-size: 48px;
    }

    .awards-paragraph {
        font-size: 17px;
    }

    .awards-grid {
        gap: 18px;
    }

    .award-tile {
        padding: 20px;
        min-height: 130px;
    }

    .award-badge {
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }

    .awards-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .awards-content {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .awards-kicker {
        text-align: center;
    }

    .awards-underline {
        left: 50%;
        transform: translateX(-50%);
    }

    .awards-title {
        font-size: 38px;
        text-align: center;
    }

    .awards-paragraph {
        text-align: center;
        max-width: 100%;
        font-size: 16px;
    }

    .awards-grid {
        order: 2;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .award-tile {
        padding: 18px;
        min-height: 120px;
    }

    .award-badge {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 50px 0;
    }

    .awards-container {
        padding: 0 20px;
        gap: 40px;
    }

    .awards-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom: 16px;
    }

    .awards-underline {
        width: 300px;
    }

    .awards-title {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .awards-paragraph {
        font-size: 15px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 14px;
    }

    .award-tile {
        padding: 16px;
        min-height: 110px;
    }

    .award-badge {
        max-height: 70px;
    }
}

/* ===== Expertise Section ===== */
.expertise-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.95) 0%, rgba(5, 25, 28, 0.98) 100%);
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}

.expertise-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-kicker {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.expertise-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1.5px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.expertise-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 30px 0 0 0;
    letter-spacing: -0.5px;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expertise-row {
    display: grid;
    grid-template-columns: 80px 1fr 1px 1.5fr;
    gap: 30px;
    align-items: center;
}

.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    flex-shrink: 0;
}

.expertise-icon svg {
    width: 60px;
    height: 60px;
}

.expertise-title-col {
    display: flex;
    align-items: center;
}

.expertise-service-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.expertise-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.expertise-description {
    display: flex;
    align-items: center;
}

.expertise-description p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Expertise */
@media (max-width: 1024px) {
    .expertise-section {
        padding: 80px 0;
    }

    .expertise-container {
        padding: 0 40px;
    }

    .expertise-title {
        font-size: 42px;
    }

    .expertise-row {
        gap: 24px;
    }

    .expertise-service-title {
        font-size: 16px;
    }

    .expertise-description p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }

    .expertise-container {
        padding: 0 30px;
    }

    .expertise-header {
        margin-bottom: 50px;
    }

    .expertise-title {
        font-size: 36px;
    }

    .expertise-content {
        gap: 35px;
    }

    .expertise-row {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: flex-start;
    }

    .expertise-icon {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }

    .expertise-icon svg {
        width: 56px;
        height: 56px;
    }

    .expertise-title-col {
        margin-bottom: 8px;
    }

    .expertise-divider {
        display: none;
    }

    .expertise-description {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .expertise-section {
        padding: 50px 0;
    }

    .expertise-container {
        padding: 0 20px;
    }

    .expertise-header {
        margin-bottom: 40px;
    }

    .expertise-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom: 16px;
    }

    .expertise-underline {
        width: 240px;
    }

    .expertise-title {
        font-size: 28px;
        margin-top: 24px;
    }

    .expertise-content {
        gap: 30px;
    }

    .expertise-row {
        gap: 16px;
    }

    .expertise-icon svg {
        width: 48px;
        height: 48px;
    }

    .expertise-service-title {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .expertise-description p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* ===== Team Slider ===== */
.team-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.95) 0%, rgba(5, 25, 28, 0.98) 100%);
    padding: 90px 0 150px 0;
    width: 100%;
    overflow: hidden;
}

.team-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-kicker {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.team-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1.5px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.team-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 30px 0 0 0;
    letter-spacing: -0.5px;
}

.team-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(77, 208, 225, 0.15);
    border: 2px solid rgba(77, 208, 225, 0.3);
    color: #4dd0e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.team-arrow:hover {
    background: rgba(77, 208, 225, 0.25);
    border-color: rgba(77, 208, 225, 0.5);
    transform: scale(1.1);
}

.team-arrow:active {
    transform: scale(0.95);
}

.team-arrow svg {
    width: 24px;
    height: 24px;
}

.team-viewport {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.team-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-track::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 calc((100% - 56px) / 3);
    scroll-snap-align: start;
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.team-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    filter: grayscale(100%);
    display: block;
}

.team-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    width: 82%;
    background: rgba(11, 31, 34, 0.95);
    border: 2px solid rgba(77, 208, 225, 0.5);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(77, 208, 225, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.team-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(77, 208, 225, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: rgba(77, 208, 225, 0.8);
    color: #4dd0e1;
    background: rgba(77, 208, 225, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Team single card layout (one card + side text) */
.team-single-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 100%;
}

.team-single-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.team-single-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
}

.team-single-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 31, 34, 0.98) 0%, rgba(11, 31, 34, 0.6) 60%, transparent 100%);
    padding: 28px 24px 24px;
    border-radius: 0 0 16px 16px;
}

.team-single-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.team-single-role {
    font-size: 15px;
    color: rgba(77, 208, 225, 0.95);
    margin: 0;
    font-weight: 500;
}

.team-single-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.team-side-lead {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.team-side-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Team */
@media (max-width: 1024px) {
    .team-section {
        padding: 80px 0 140px 0;
    }

    .team-container {
        padding: 0 40px;
    }

    .team-title {
        font-size: 44px;
    }

    .team-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-single-card {
        max-width: 380px;
        margin: 0 auto;
    }

    .team-single-photo {
        height: 420px;
    }

    .team-single-side {
        text-align: center;
        padding-top: 0;
    }

    .team-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }

    .team-photo {
        height: 450px;
    }

    .team-overlay {
        bottom: -50px;
        padding: 18px;
    }

    .team-name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0 120px 0;
    }

    .team-container {
        padding: 0 30px;
    }

    .team-header {
        margin-bottom: 50px;
    }

    .team-title {
        font-size: 36px;
    }

    .team-single-card {
        max-width: 100%;
    }

    .team-single-photo {
        height: 380px;
    }

    .team-single-name {
        font-size: 20px;
    }

    .team-single-role {
        font-size: 14px;
    }

    .team-side-lead {
        font-size: 19px;
    }

    .team-side-text {
        font-size: 16px;
    }

    .team-slider-wrapper {
        gap: 16px;
    }

    .team-arrow {
        width: 40px;
        height: 40px;
    }

    .team-arrow svg {
        width: 20px;
        height: 20px;
    }

    .team-track {
        gap: 20px;
    }

    .team-card {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
    }

    .team-photo {
        height: 420px;
    }

    .team-overlay {
        width: 88%;
        bottom: -45px;
        padding: 16px;
    }

    .team-name {
        font-size: 17px;
    }

    .team-role {
        font-size: 13px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 50px 0 100px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-header {
        margin-bottom: 40px;
    }

    .team-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom: 16px;
    }

    .team-underline {
        width: 240px;
    }

    .team-title {
        font-size: 28px;
        margin-top: 24px;
    }

    .team-slider-wrapper {
        gap: 12px;
    }

    .team-arrow {
        width: 36px;
        height: 36px;
    }

    .team-arrow svg {
        width: 18px;
        height: 18px;
    }

    .team-track {
        gap: 16px;
    }

    .team-card {
        flex: 0 0 calc(100% - 32px);
        min-width: calc(100% - 32px);
    }

    .team-photo {
        height: 380px;
    }

    .team-overlay {
        width: 90%;
        bottom: -40px;
        padding: 14px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .team-social {
        gap: 10px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 13px;
        height: 13px;
    }
}

/* ===== Contact Proposal Section ===== */
.contact-proposal {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 31, 34, 0.95) 0%, rgba(5, 25, 28, 0.98) 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.05) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234dd0e1' fill-opacity='0.03'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E");
    padding: 40px 0 90px 0;
    margin-top: -50px;
    width: 100%;
    overflow: hidden;
}

.contact-proposal-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.contact-proposal-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.contact-kicker {
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.contact-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1.5px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.contact-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 30px 0 0 0;
    letter-spacing: -0.5px;
}

.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(11, 31, 34, 0.85);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    min-height: 600px;
}

.contact-form-side {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.form-title strong {
    font-weight: 900;
}

.form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 35px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field-wrapper {
    display: flex;
    flex-direction: column;
}

.form-field-wrapper.form-field-full {
    grid-column: 1 / -1;
}

.cp-field {
    width: 100%;
    height: 54px;
    background: rgba(75, 95, 99, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    padding: 0 18px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cp-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cp-field:focus {
    border-color: rgba(77, 208, 225, 0.5);
    background: rgba(75, 95, 99, 0.8);
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.15);
}

.cp-field option {
    background: #0b1f22;
    color: #ffffff;
}

.cp-textarea {
    height: auto;
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.6;
}

select.cp-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4 L6 8 L10 4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 2px solid #4caf50;
}

.form-message-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 2px solid #f44336;
}

.cp-submit-btn {
    width: 100%;
    max-width: 500px;
    height: 56px;
    background: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.cp-submit-btn:hover {
    background: #ff7700;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

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

.cp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

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

.cp-phone-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
}

.cp-phone-text strong {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 0 22px 22px 0;
}

.contact-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 34, 0.7) 0%, rgba(5, 25, 28, 0.85) 100%);
    z-index: 1;
}

.contact-side-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.side-text-line {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.side-text-teal {
    color: #1ec7bd;
}

/* Responsive Contact Proposal */
@media (max-width: 1024px) {
    .contact-proposal {
        padding: 30px 0 80px 0;
        margin-top: -40px;
    }

    .contact-proposal-container {
        padding: 0 40px;
    }

    .contact-title {
        font-size: 44px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 40px 35px;
    }

    .form-title {
        font-size: 28px;
    }

    .contact-image-side {
        border-radius: 0 0 22px 22px;
        min-height: 400px;
    }

    .side-text-line {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .contact-proposal {
        padding: 20px 0 60px 0;
        margin-top: -30px;
    }

    .contact-proposal-container {
        padding: 0 30px;
    }

    .contact-proposal-header {
        margin-bottom: 40px;
    }

    .contact-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        padding-bottom: 16px;
    }

    .contact-underline {
        width: 220px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-card {
        border-radius: 18px;
    }

    .contact-form-side {
        padding: 35px 28px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-subtitle {
        font-size: 15px;
    }

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

    .cp-field {
        height: 52px;
        font-size: 14px;
    }

    .cp-textarea {
        min-height: 110px;
    }

    .cp-submit-btn {
        height: 54px;
        font-size: 14px;
    }

    .contact-image-side {
        min-height: 350px;
        border-radius: 0 0 18px 18px;
    }

    .side-text-line {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .contact-proposal {
        padding: 15px 0 50px 0;
        margin-top: -20px;
    }

    .contact-proposal-container {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-card {
        border-radius: 16px;
    }

    .contact-form-side {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-row {
        gap: 14px;
    }

    .cp-field {
        height: 50px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .cp-textarea {
        min-height: 100px;
        padding: 14px 16px;
    }

    .cp-submit-btn {
        height: 52px;
        font-size: 13px;
        border-radius: 12px;
    }

    .cp-phone-text {
        font-size: 13px;
    }

    .contact-image-side {
        min-height: 300px;
        border-radius: 0 0 16px 16px;
    }

    .side-text-line {
        font-size: 32px;
    }
}

/* Main Content Styles */
.site-content {
    min-height: calc(100vh - 200px);
    /* padding: 40px 0; */
}

.site-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0b1f22;
}

.site-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #0b1f22;
}

/* ===== Footer ===== */
.site-footer {
    margin-top: 0;
}

.footer-banner {
    position: relative;
    width: 100%;
    height: 240px;
    background-image: url('../img/footer-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
}

.footer-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 34, 0.75) 0%, rgba(5, 25, 28, 0.85) 100%);
    z-index: 1;
}

.footer-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 28px;
}

.footer-banner-text {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-body {
    background-color: #05191c;
    padding: 70px 0;
    width: 100%;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.55fr 1px 1fr;
    gap: 50px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-services-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.5;
}

.service-bullet {
    flex-shrink: 0;
}

.footer-divider-horizontal {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

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

.footer-contact-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.footer-contact-item:first-child {
    color: #4dd0e1;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-divider-vertical {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    align-self: stretch;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-main {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand-accent {
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-fusion .footer-brand-text {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

.footer-brand-sub {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.footer-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-phone-icon {
    flex-shrink: 0;
}

.footer-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-description p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 100%;
    height: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-banner {
        height: 220px;
    }

    .footer-banner-text {
        font-size: 42px;
    }

    .footer-body {
        padding: 60px 0;
    }

    .footer-container {
        padding: 0 40px;
        gap: 40px;
    }

    .footer-contact-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .footer-banner {
        height: 200px;
    }

    .footer-banner-text {
        font-size: 36px;
    }

    .footer-body {
        padding: 50px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .footer-divider-vertical {
        display: none;
    }

    .footer-left {
        order: 1;
    }

    .footer-right {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-banner {
        height: 180px;
    }

    .footer-banner-text {
        font-size: 28px;
        letter-spacing: -0.3px;
    }

    .footer-body {
        padding: 40px 0;
    }

    .footer-container {
        padding: 0 20px;
        gap: 35px;
    }

    .footer-left {
        gap: 30px;
    }

    .footer-services-title {
        font-size: 20px;
    }

    .footer-services-list li {
        font-size: 15px;
    }

    .footer-contact-title {
        font-size: 32px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-brand-main {
        font-size: 24px;
    }

    .footer-phone-number {
        font-size: 16px;
    }

    .footer-description p {
        font-size: 14px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .site-main h1 {
        font-size: 24px;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: rgba(11, 31, 34, 0.95);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(77, 208, 225, 0.12) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 31, 34, 0.95) 0%, rgba(11, 31, 34, 0.75) 50%, rgba(11, 31, 34, 0.6) 100%);
    z-index: 1;
}

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

.page-header-kicker {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.page-header-kicker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

.page-header-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.page-header-description {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.page-content-wrapper {
    width: 100%;
}

.page-content-main {
    max-width: 900px;
    margin: 0 auto;
}

.page-content-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f22;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.page-content-main h2:first-child {
    margin-top: 0;
}

.page-content-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #0b1f22;
    margin-bottom: 20px;
}

.page-content-main ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-content-main ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #0b1f22;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.page-content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
    border-radius: 50%;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 5px 0;
}

.team-role {
    font-size: 16px;
    color: #4dd0e1;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}

/* Careers List */
.careers-list {
    margin: 40px 0;
}

.career-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #4dd0e1;
}

.career-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.career-item p {
    margin-bottom: 20px;
}

.career-apply-btn {
    display: inline-block;
    background: #ff6600;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.career-apply-btn:hover {
    background: #ff7700;
}

/* Responsive Page Styles */
@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
        padding: 60px 20px;
    }

    .page-header-title {
        font-size: 32px;
    }

    .page-header-description {
        font-size: 16px;
    }

    .page-content-section {
        padding: 60px 0;
    }

    .page-content-container {
        padding: 0 30px;
    }

    .page-content-main h2 {
        font-size: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   ABOUT US PAGE SPECIFIC STYLES
   ============================================ */

/* Breadcrumb Navigation - About Us Page */
.breadcrumb-nav {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(77, 208, 225, 0.1);
}

.breadcrumb-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #4dd0e1;
}

.breadcrumb-link svg {
    width: 16px;
    height: 16px;
}

.breadcrumb-separator {
    color: #666;
}

.breadcrumb-current {
    color: #b0b0b0;
}

/* Inline Breadcrumb - Inside Hero Section */
.breadcrumb-nav-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    animation: fadeInDown 0.5s ease-out;
}

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

.breadcrumb-link-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4dd0e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.breadcrumb-link-inline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.breadcrumb-link-inline:hover {
    color: #26c6da;
}

.breadcrumb-link-inline:hover::after {
    transform: scaleX(1);
}

.breadcrumb-link-inline svg {
    width: 16px;
    height: 16px;
    stroke: #4dd0e1;
}

.breadcrumb-separator-inline {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-current-inline {
    color: #ffffff;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

.breadcrumb-current-inline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #4dd0e1 0%, #26c6da 100%);
}

/* About Hero Section - Reusing hero-section styles, adding specific overrides */
.about-hero {
    min-height: 500px;
}

.about-hero-content {
    text-align: center;
    align-items: center;
    position: relative;
}

.about-hero-title {
    font-size: 72px;
    margin-bottom: 30px;
}

.about-hero-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-hero-btn {
    margin: 0 auto;
}

/* Three Core Values Section - About Us Page */
.about-values-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 80px 0;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-value-card {
    perspective: 1000px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.about-value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-value-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.about-value-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.about-value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 208, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-value-card:hover .about-value-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(77, 208, 225, 0.5);
    box-shadow: 0 20px 40px rgba(77, 208, 225, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.about-value-card:hover .about-value-card-inner::before {
    left: 100%;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotateY(10deg);
}

.about-value-card:hover .about-value-icon svg {
    stroke: #4dd0e1;
    filter: drop-shadow(0 0 10px rgba(77, 208, 225, 0.5));
}

.about-value-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-value-icon svg {
    transition: all 0.4s ease;
}

.about-value-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.about-value-card:hover .about-value-title {
    color: #4dd0e1;
}

.about-value-text {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.about-value-card:hover .about-value-text {
    color: #ffffff;
}

.about-values-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4dd0e1;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-btn-outline:hover {
    background: #4dd0e1;
    color: #ffffff;
}

/* Trust Badges - About Us Page Specific Styles */
.trust-badge-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge-yelp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge-trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-badge-top100 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top100-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-rating {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

/* Relationships and Results Section - About Us Page */
.about-relationships-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.about-relationships-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-relationships-image {
    width: 100%;
}

.about-relationships-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-relationships-content {
    color: #ffffff;
}

.about-relationships-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-relationships-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.about-relationships-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Foundation of Excellence Section - About Us Page (OLD - Keeping for reference) */
.about-foundation-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.about-foundation-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-foundation-left {
    color: #ffffff;
}

.about-foundation-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-foundation-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.about-foundation-boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-foundation-box {
    background: #00ff88;
    color: #1a1a1a;
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Foundation of Excellence Section - NEW DESIGN */
.about-foundation-section-new {
    background: linear-gradient(135deg, rgba(11, 31, 34, 0.98) 0%, rgba(5, 25, 28, 0.98) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-foundation-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-foundation-container-new {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.about-foundation-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-foundation-title-new {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.about-foundation-subtitle-new {
    font-size: 18px;
    color: #1ec7bd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-foundation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-foundation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-foundation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 208, 225, 0.1) 50%, transparent);
    transition: left 0.5s ease;
}

.about-foundation-card:hover::before {
    left: 100%;
}

.about-foundation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 208, 225, 0.5);
    box-shadow: 0 20px 40px rgba(77, 208, 225, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.foundation-card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.foundation-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.foundation-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

.about-foundation-cta {
    text-align: center;
    margin-top: 50px;
}

.foundation-cta-btn {
    background: linear-gradient(135deg, #1ec7bd 0%, #4dd0e1 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 199, 189, 0.3);
}

.foundation-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 199, 189, 0.4);
    background: linear-gradient(135deg, #4dd0e1 0%, #1ec7bd 100%);
}

/* EVOLVE Diagram - About Us Page */
.about-evolve-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-evolve-diagram svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Our Story Section - About Us Page */
.about-story-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.about-story-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #1ec7bd;
    padding: 15px;
    background: rgba(11, 31, 34, 0.8);
    max-width: 100%;
}

.about-story-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 500px;
    object-fit: cover;
}

.about-story-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(11, 31, 34, 0.9);
    padding: 20px 40px;
    border-radius: 8px;
    border: 2px solid #1ec7bd;
}

.about-story-content {
    color: #ffffff;
}

.about-story-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-story-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Our Promise Section - About Us Page */
.about-promise-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.about-promise-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-promise-content {
    color: #ffffff;
}

.about-promise-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-promise-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
}

.about-promise-image {
    width: 100%;
}

.about-promise-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Bottom CTA Section - About Us Page */
.about-bottom-cta {
    background: linear-gradient(135deg, rgba(11, 31, 34, 0.95) 0%, rgba(11, 31, 34, 0.98) 100%);
    padding: 100px 0;
    text-align: center;
}

.about-bottom-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-bottom-cta-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-bottom-cta-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-bottom-cta-btn:hover {
    background: #00e677;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Responsive Styles - About Us Page */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 56px;
    }

    .about-values-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-relationships-container,
    .about-foundation-container,
    .about-story-container,
    .about-promise-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 30px;
    }

    .breadcrumb-nav-inline {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-values-container {
        padding: 0 30px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-value-card-inner {
        padding: 40px 25px;
    }

    .about-value-card:hover .about-value-card-inner {
        transform: translateY(-5px);
    }

    .about-relationships-title,
    .about-foundation-title,
    .about-story-title,
    .about-promise-title {
        font-size: 32px;
    }

    .about-bottom-cta-title {
        font-size: 32px;
    }

    .about-relationships-container,
    .about-foundation-container,
    .about-story-container,
    .about-promise-container {
        padding: 0 30px;
    }

    .about-foundation-container-new {
        padding: 0 30px;
    }

    .about-foundation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-story-container {
        grid-template-columns: 0.7fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-foundation-title-new {
        font-size: 32px;
    }

    .about-foundation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-image {
        order: 2;
    }

    .about-story-content {
        order: 1;
    }
}

/* Team Bio Short - Team Page */
.team-bio-short {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 10px 0 15px 0;
    text-align: center;
}

/* ============================================
   SERVICE PAGE SPECIFIC STYLES (Digital Marketing Strategy)
   ============================================ */

/* Service Hero Section */
.service-hero {
    min-height: 500px;
    padding: 100px 0;
}

.service-hero-content {
    text-align: center;
    align-items: center;
}

.service-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.service-hero-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.service-search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.service-search-input::placeholder {
    color: #b0b0b0;
}

.service-search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4dd0e1;
}

.service-hero-btn {
    white-space: nowrap;
}

/* Goals Section */
.service-goals-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.service-goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-goals-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.service-goals-text {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
}

.service-goals-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

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

/* Trust Signals Section */
.service-trust-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 60px 0;
    border-top: 1px solid rgba(77, 208, 225, 0.1);
    border-bottom: 1px solid rgba(77, 208, 225, 0.1);
}

.service-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.service-trust-logo {
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
}

.service-trust-logo:nth-child(1) { animation-delay: 0.1s; }
.service-trust-logo:nth-child(2) { animation-delay: 0.2s; }
.service-trust-logo:nth-child(3) { animation-delay: 0.3s; }
.service-trust-logo:nth-child(4) { animation-delay: 0.4s; }
.service-trust-logo:nth-child(5) { animation-delay: 0.5s; }

.service-trust-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Strategy Essential Section */
.service-strategy-essential {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.service-strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-section-intro {
    font-size: 16px;
    color: #b0b0b0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.strategy-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.strategy-box {
    padding: 40px;
    border-radius: 12px;
    border: 2px solid;
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease-out;
}

.strategy-box-success {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.strategy-box-danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
}

.strategy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.strategy-box-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.strategy-list li svg {
    flex-shrink: 0;
}

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

/* CTA Mid Section */
.service-cta-mid {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(77, 208, 225, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.service-cta-mid-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-cta-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-cta-btn-green {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta-btn-green:hover {
    background: #00e677;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Approach Section */
.service-approach-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.service-approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-approach-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-approach-item:nth-child(1) { animation-delay: 0.1s; }
.service-approach-item:nth-child(2) { animation-delay: 0.2s; }
.service-approach-item:nth-child(3) { animation-delay: 0.3s; }
.service-approach-item:nth-child(4) { animation-delay: 0.4s; }

.service-approach-item:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 208, 225, 0.5);
    box-shadow: 0 20px 40px rgba(77, 208, 225, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.approach-image {
    margin: 20px 0 30px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-approach-item:hover .approach-image {
    transform: scale(1.1);
}

.approach-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.approach-text {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Services List Section */
.service-services-list {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.service-services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-list-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.service-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInRight 0.5s ease-out forwards;
    opacity: 0;
}

.service-list-item:nth-child(1) { animation-delay: 0.1s; }
.service-list-item:nth-child(2) { animation-delay: 0.2s; }
.service-list-item:nth-child(3) { animation-delay: 0.3s; }
.service-list-item:nth-child(4) { animation-delay: 0.4s; }
.service-list-item:nth-child(5) { animation-delay: 0.5s; }
.service-list-item:nth-child(6) { animation-delay: 0.6s; }
.service-list-item:nth-child(7) { animation-delay: 0.7s; }
.service-list-item:nth-child(8) { animation-delay: 0.8s; }
.service-list-item:nth-child(9) { animation-delay: 0.9s; }

.service-list-item:hover {
    transform: translateX(10px);
    border-color: rgba(77, 208, 225, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.1);
}

.service-list-icon {
    flex-shrink: 0;
}

.service-list-content {
    flex: 1;
}

.service-list-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.service-list-content p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.service-list-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.service-list-item:hover .service-list-arrow {
    opacity: 1;
    transform: translateX(5px);
}

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

/* FAQ Section */
.service-faq-section {
    background-color: rgba(11, 31, 34, 0.95);
    padding: 100px 0;
}

.service-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(77, 208, 225, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(77, 208, 225, 0.4);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    color: #4dd0e1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Service Page */
@media (max-width: 1024px) {
    .service-hero-title {
        font-size: 42px;
    }

    .strategy-comparison,
    .service-approach-grid {
        grid-template-columns: 1fr;
    }

    .service-goals-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-cta {
        flex-direction: column;
    }

    .service-search-input {
        width: 100%;
    }

    .service-section-title {
        font-size: 28px;
    }

    .strategy-box {
        padding: 30px 20px;
    }

    .service-approach-item {
        padding: 30px 20px;
    }

    .service-list-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-list-item:hover {
        transform: translateY(-5px);
    }
}
