/* 
* Star.London Website Styles
* Main stylesheet for star.london colocation services website
*/

/* Base Styles and Variables */
:root {
    --primary-color: #0B3D91;
    --secondary-color: #1E5FCF;
    --accent-color: #50E3C2;
    --dark-color: #111827;
    --light-color: #F3F4F6;
    --text-color: #333333;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-100: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #FBBF24;
    --danger: #EF4444;
    --info: #3B82F6;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    --box-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --box-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --border-radius-sm: 0.125rem;
    --border-radius: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-full: 9999px;
    
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
    --section-spacing: 5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
    overflow-x: hidden;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.text-white {
    color: var(--white);
}

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

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

.text-accent {
    color: var(--accent-color);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--border-radius-full);
}

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

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-gradient {
    background: linear-gradient(135deg, #0B3D91 0%, #1E5FCF 100%);
    color: #ffffff;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    border-radius: var(--border-radius-full);
}

.divider.light {
    background: var(--white);
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

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

.margin-bottom {
    margin-bottom: 1rem;
}

.margin-top-large {
    margin-top: 3rem;
}

.margin-bottom-large {
    margin-bottom: 3rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--box-shadow-md);
    border-color: var(--secondary-color);
}

.cta-button.light {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-button.light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.accent {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.accent:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-button.login {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.login:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.cta-button-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--white);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    text-align: center;
    border: 2px solid var(--white);
    cursor: pointer;
}

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

.cta-center {
    text-align: center;
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    z-index: -1;
}

.glow-button {
    box-shadow: 0 0 5px -5px rgba(80, 227, 194, 0.8);
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link i {
}

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

.text-link:hover i {
}

/* Layout Elements */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.column.content-column {
    padding-right: 2rem;
}

.column.image-column {
    position: relative;
}

@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .column.content-column {
        padding-right: 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Header and Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 0.4rem 0;
    transition: all var(--transition-fast);
}

#header.scrolled {
    padding: 0.4rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--box-shadow-md);
}

#header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    width: 80px;
    height: 80px;
    padding-right: 0;
    margin-right: 0;
}

.logo-spacer {
    width: 20px;
    height: 80px;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    max-width: 100%;
}

nav {
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

nav ul li {
    margin: 0 0.1rem;
    display: flex;
    white-space: nowrap;
}

nav ul li a {
    display: block;
    padding: 0.5rem 0.45rem;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    font-size: 0.85rem;
    text-align: center;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.cta-button {
    color: var(--white);
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
}

nav ul li a.cta-button:hover {
    color: var(--white);
}

nav ul li a.cta-button.accent {
    color: var(--primary-color);
    margin-left: 0.25rem;
    flex-shrink: 0;
}

nav ul li a.cta-button.login {
    color: var(--primary-color);
    margin-left: 0.25rem;
    padding: 0.5rem 0.8rem;
    flex-shrink: 0;
}

nav ul li a.cta-button.login:hover {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
}

@media (max-width: 992px) {
    .logo-spacer {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--box-shadow-md);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: all var(--transition-medium);
        opacity: 0;
        visibility: hidden;
    }
    
    nav.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a.cta-button {
        margin: 0.5rem auto;
        width: 80%;
    }
    
    nav ul li a.cta-button.accent,
    nav ul li a.cta-button.login {
        margin: 0.5rem auto;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background-color: var(--gray-100);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--gray-400);
    content: "/";
}

.breadcrumb-item.active {
    color: var(--gray-800);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding-top: 70px;
    overflow: hidden;
    background: url('../images/Telehouse-2099.png') no-repeat center center;
    background-size: cover;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/hero-background.png') repeat;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1000px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 1;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 1;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    opacity: 1;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 1;
}

.hero-scroll-indicator a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    transition: all var(--transition-fast);
}

.hero-scroll-indicator a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: -100px;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    overflow: hidden;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    margin-bottom: 0.5rem;
}

.about-feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.about-image-container {
    position: relative;
}

.floating-element {
    position: absolute;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    box-shadow: var(--box-shadow-lg);
    display: flex;
    align-items: center;
}

.floating-element-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 15%;
    right: 0;
    animation-delay: 1.5s;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-text {
    font-weight: 600;
    color: var(--primary-color);
}

/* Telehouse Section */
.telehouse-section {
    position: relative;
    background: linear-gradient(0deg, rgba(11, 61, 145, 0.95) 0%, rgba(30, 95, 207, 0.95) 100%);
    color: var(--white);
}

.telehouse-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.telehouse-section .container {
    position: relative;
    z-index: 2;
}

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

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-bg-shape {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    overflow: hidden;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.service-card {
    height: 100%;
}

.service-card-inner {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.service-card-inner:hover {
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

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

.service-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1rem;
}

.service-tag.premium {
    background-color: rgba(255, 187, 0, 0.1);
    color: #FFA000;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Values Section */
.values-section {
    position: relative;
    overflow: hidden;
    background: #000;
    color: var(--white);
}

.values-bg-shape {
    position: absolute;
    top: -100px;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    overflow: hidden;
}

.values-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.values-intro-box {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 11;
}

.values-intro-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.values-section .section-header {
    position: relative;
    z-index: 11;
}

.values-section .section-header h2,
.values-section .section-header p {
    color: var(--white);
}

.values-section .divider {
    background: var(--white);
}

.values-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 11;
}

.value-card {
    height: 100%;
}

.value-card-inner {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.value-card-inner:hover {
    box-shadow: var(--box-shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.value-stat {
    margin-top: auto;
    background-color: rgba(11, 61, 145, 0.05);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
}

.value-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.value-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.value-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-full);
    margin-top: auto;
}

.values-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 11;
}

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

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Specifications Section */

.spec-tabs-container {
    position: relative;
    z-index: 1;
}

.tab-nav-container {
    margin-bottom: 2rem;
}

.tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-full);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--box-shadow-sm);
}

.tab-button i {
    color: var(--primary-color);
}

.tab-button:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tab-button.active i {
    color: var(--white);
}

.tab-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 0;
    overflow: hidden;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.spec-content-flex {
    display: flex;
    flex-wrap: wrap;
}

.spec-details {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
}

.spec-details h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.spec-details p {
    margin-bottom: 1.5rem;
}

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

.spec-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.spec-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-color);
}

.spec-image {
    flex: 1;
    min-width: 300px;
}

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

@media (max-width: 768px) {
    .tab-button {
        width: 100%;
        justify-content: center;
    }
}

/* Team Section */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.team-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(11, 61, 145, 0.7) 0%, rgba(11, 61, 145, 0) 100%);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
}

.team-title {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 0.8rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--box-shadow);
}

.faq-item.active {
    box-shadow: var(--box-shadow-md);
    border-color: var(--gray-300);
}

.faq-question {
    margin: 0;
    padding: 1.8rem;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    color: var(--primary-color);
    text-align: center;
}

.faq-question:hover {
    background-color: rgba(11, 61, 145, 0.05);
}

.faq-question::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform var(--transition-fast);
    margin-left: 0.5rem;
    color: var(--accent-color);
}

.faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: none;
    text-align: center;
    max-width: 85%;
    margin: 0 auto;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/quotes-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    position: relative;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote p {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    top: -100px;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
    overflow: hidden;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-box {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.contact-info-box:hover {
    box-shadow: var(--box-shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-box h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-info-box address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-box a {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.email-list a {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
}

.contact-form h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.privacy-notice {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.privacy-notice a {
    color: var(--primary-color);
    font-weight: 600;
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--box-shadow);
}

.submit-button:hover {
    box-shadow: var(--box-shadow-lg);
}

.map-wrapper {
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.static-map {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.static-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.static-map-content {
    padding: 2rem;
    z-index: 1;
    max-width: 90%;
}

.static-map-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.static-map-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.static-map-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.map-link {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.map-link:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 11;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-size: 1.4rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(80, 227, 194, 0.4) 100%);
    border-radius: var(--border-radius-full);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    margin-right: 0.8rem;
    color: var(--accent-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 11;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 400px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-xl);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid var(--gray-300);
    color: var(--text-color);
}

.cookie-btn.decline:hover {
    background-color: var(--gray-100);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-xl);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 0;
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--gray-500);
    cursor: pointer;
    z-index: 1;
    transition: all var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-logo {
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.modal-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.modal-icon {
    margin: 1.5rem 0;
    font-size: 3rem;
    color: var(--success);
}

.close-button {
    margin-top: 1rem;
    min-width: 150px;
}

body.modal-open {
    overflow: hidden;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    background-color: var(--gray-100);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

/* 50/50 Product Section */
.section.bg-gradient .section-header h2, 
.section.bg-gradient .section-header p {
    color: #ffffff;
}

.fifty-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fifty-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #FF4081;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.fifty-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.pricing-item {
    text-align: center;
}

.pricing-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-divider {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.fifty-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.fifty-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.fifty-feature i {
    color: #50E3C2;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.fifty-feature span {
    font-size: 0.95rem;
}

.fifty-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fifty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.fifty-highlight {
    text-align: center;
}

.highlight-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.highlight-icon i {
    color: #50E3C2;
}

.highlight-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.fifty-use-cases {
    margin-top: 3rem;
}

.fifty-use-cases h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.use-case {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: #50E3C2;
}

.use-case h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.use-case p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-link {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
}
