/* About Tourno Design 4 - Split-Screen Animated Layout */

/* Import futuristic fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;900&family=Exo+2:wght@300;400;500;600;700&display=swap');

/* Global Styles */
body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: #0f172a;
    overflow-x: hidden;
}

/* Hero Section with Background Image */
.hero-with-bg {
    min-height: 17.5vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.75));
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.split-container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Full width container when only one side has content */
.split-container:has(.split-left:only-child),
.split-container:has(.split-right:only-child) {
    justify-content: center;
}

.split-container .split-left:only-child,
.split-container .split-right:only-child {
    flex: none;
    max-width: 800px;
    width: 100%;
}

.split-left,
.split-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.split-right {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
}


/* Split Content */
.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

/* Animated Title */
.animated-title {
    margin-bottom: 2rem;
}

.title-word {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #28a745;
    display: block;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.title-word.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animated Subtitle */
.animated-subtitle {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    margin-bottom: 3rem;
}

.animated-subtitle.revealed {
    opacity: 1;
    transform: translateX(0);
}

.animated-subtitle p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-stats.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    display: block;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


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

/* Tech Elements */
.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: tech-rotate 10s linear infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 25%;
    animation-delay: 3s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 60%;
    animation-delay: 6s;
}

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

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.5), transparent);
    height: 2px;
    animation: tech-pulse 3s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    bottom: 40%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes tech-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Content Sections */
.content-sections {
    position: relative;
}

.content-section {
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.split-section {
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.content-section,
.split-section {
    background: transparent;
    color: #f1f5f9;
}


/* Section Content */
.section-content {
    padding: 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.split-section .section-content {
    padding: 3rem 3rem 3rem 3rem;
    max-width: 600px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.content-section .section-title,
.split-section .section-title {
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.section-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: inherit;
}

.content-section .section-text,
.split-section .section-text {
    color: #e2e8f0;
}

.content-section .section-intro,
.split-section .section-intro {
    color: #cbd5e1;
}

.section-intro {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(40, 167, 69, 0.2);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.highlight-icon i {
    color: white;
    font-size: 14px;
}

.highlight-item span {
    font-size: 12px;
    font-weight: 500;
    color: #f8fafc;
}

/* Visual Elements */
.visual-element {
    padding: 3rem 3rem 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Code Window */
.code-window {
    background: #1a202c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
}

.window-header {
    background: #2d3748;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.window-title {
    font-family: 'Orbitron', monospace;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.window-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    position: relative;
    color: #e2e8f0;
}

.code-line {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.code-line.typed {
    opacity: 1;
    transform: translateX(0);
}

.code-comment { color: #6b7280; }
.code-keyword { color: #3b82f6; }
.code-class { color: #10b981; }
.code-function { color: #f59e0b; }
.code-string { color: #ef4444; }
.code-indent { margin-left: 1rem; }
.code-indent2 { margin-left: 2rem; }

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #28a745;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Mission Visual */
.mission-visual {
    width: 400px;
    height: 400px;
    position: relative;
}

.mission-orbit {
    width: 100%;
    height: 100%;
    position: relative;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.5);
}

.orbit-center i {
    color: white;
    font-size: 2rem;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 150px;
    height: 150px;
    animation: orbit-rotate 10s linear infinite;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation: orbit-rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

.dot-1 { top: -6px; left: 50%; transform: translateX(-50%); }
.dot-2 { bottom: -6px; left: 50%; transform: translateX(-50%); }
.dot-3 { top: 50%; right: -6px; transform: translateY(-50%); }
.dot-4 { top: -6px; left: 50%; transform: translateX(-50%); }
.dot-5 { bottom: -6px; left: 50%; transform: translateX(-50%); }
.dot-6 { top: 50%; left: -6px; transform: translateY(-50%); }

/* Mission Quote */
.mission-quote {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #28a745;
    margin: 2rem 0;
    position: relative;
}

/* Reasons Stack */
.reasons-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.reason-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

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

.reason-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.reason-content p {
    color: #e2e8f0;
    margin: 0;
    font-size: 1.3rem;
}

/* Network Visualization */
.network-visualization {
    width: 400px;
    height: 400px;
    position: relative;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    animation: network-pulse 3s ease-in-out infinite;
}

.network-node i {
    color: white;
    font-size: 1.25rem;
}

.node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0.5s;
}

.node-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.5s;
}

.node-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes network-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(40, 167, 69, 0.5); }
    50% { box-shadow: 0 0 40px rgba(40, 167, 69, 0.8); }
}

.network-connection {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.5), transparent);
    height: 2px;
    animation: connection-flow 2s ease-in-out infinite;
}

.conn-1 {
    top: 35%;
    left: 25%;
    width: 120px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.conn-2 {
    top: 35%;
    right: 25%;
    width: 120px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.conn-3 {
    bottom: 35%;
    left: 25%;
    width: 120px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.conn-4 {
    bottom: 35%;
    right: 25%;
    width: 120px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes connection-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Pricing Visual */
.pricing-visual {
    text-align: center;
    position: relative;
    width: 400px;
    height: 400px;
}

.price-display {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: price-shine 3s ease-in-out infinite;
}

@keyframes price-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.currency {
    font-size: 1.5rem;
    opacity: 0.8;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin: 0.5rem 0;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    position: relative;
    height: 200px;
}

.feature-bubble {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    color: #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
    animation: bubble-float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.bubble-2 {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

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

/* Features List */
.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(30, 41, 59, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 1rem;
    background: rgba(30, 41, 59, 0.1);
    border-radius: 8px;
}

.feature-item i {
    color: #4ade80;
    margin-right: 1rem;
    font-size: 1.125rem;
}

.feature-item span {
    font-size: 14px;
    line-height: 1.4;
}

.content-section .feature-item span,
.split-section .feature-item span {
    color: #f1f5f9;
}

/* CTA Section */
.cta-section {
    margin: 2rem 0;
}

.futuristic-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.futuristic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    border-color: #28a745;
    color: white;
    text-decoration: none;
}

.btn-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.futuristic-btn:hover .btn-effect {
    left: 100%;
}

/* Features Tabs */
.features-tabs {
    margin-top: 2rem;
}

/* Features Accordion */
.features-accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: rgba(248, 250, 252, 0.05);
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(74, 222, 128, 0.3);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 250, 252, 0.03);
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(74, 222, 128, 0.1);
}

.accordion-header.active {
    background: rgba(74, 222, 128, 0.15);
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

.accordion-header h4 {
    color: #4ade80;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
}

.accordion-icon {
    color: #4ade80;
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(248, 250, 252, 0.02);
}

.accordion-content.active {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.accordion-content p {
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/* Hologram Display */
.hologram-display {
    width: 300px;
    height: 300px;
    position: relative;
}

.hologram-content {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1000px;
}

.hologram-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: hologram-rotate 8s linear infinite;
}

.layer-1 {
    animation-delay: 0s;
    transform: rotateX(0deg);
}

.layer-2 {
    animation-delay: 2s;
    transform: rotateX(60deg);
}

.layer-3 {
    animation-delay: 4s;
    transform: rotateX(120deg);
}

@keyframes hologram-rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.hologram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(40, 167, 69, 0.6);
    animation: hologram-pulse 2s ease-in-out infinite;
}

@keyframes hologram-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(40, 167, 69, 0.6); }
    50% { box-shadow: 0 0 60px rgba(40, 167, 69, 0.9); }
}

.hologram-center i {
    color: white;
    font-size: 2.5rem;
}

/* Company Visual */
.company-visual {
    width: 300px;
    height: 400px;
    position: relative;
}

.building-outline {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 8px;
    overflow: hidden;
}

.building-floor {
    width: 100%;
    height: 25%;
    border-bottom: 1px solid rgba(40, 167, 69, 0.3);
    position: relative;
}

.building-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.light {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 2px;
    animation: light-blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

.light-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.light-2 {
    top: 40%;
    right: 25%;
    animation-delay: 0.5s;
}

.light-3 {
    top: 65%;
    left: 30%;
    animation-delay: 1s;
}

.light-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes light-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Company Info Grid */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(226, 232, 240, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1rem;
}

.info-details {
    flex: 1;
}

.info-details label {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-details value {
    display: block;
    color: #f1f5f9;
    font-weight: 500;
}

.info-details value a {
    color: #4ade80;
    text-decoration: none;
}

.info-details value a:hover {
    text-decoration: underline;
}

/* Social Connect */
.social-connect {
    margin-top: 2rem;
    text-align: center;
}

.social-connect h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0084b4);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    
    .split-left,
    .split-right {
        min-height: 50vh;
    }
    
    .title-word {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    
    .section-content,
    .visual-element {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reasons-stack {
        gap: 0.75rem;
    }
    
    .reason-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .reason-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-header h4 {
        font-size: 1.1rem;
    }
    
    .accordion-content.active {
        padding: 1rem 1.5rem;
    }
    
    .feature-highlights {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .hero-with-bg {
        min-height: 15vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .title-word {
        font-size: 2rem;
    }
    
    .split-section {
        min-height: auto;
        padding: 0;
    }
    
    /* Force all sections to take full width on mobile/tablet - AGGRESSIVE OVERRIDE */
    .content-section .container,
    .content-section .container-fluid,
    .split-section .container,
    .split-section .container-fluid {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .content-section .section-content,
    .split-section .section-content,
    .visual-element {
        padding: 1rem !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Ensure the sections themselves take full width */
    .content-section,
    .split-section {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    
    .code-window,
    .mission-visual,
    .network-visualization,
    .pricing-visual,
    .hologram-display,
    .company-visual {
        max-width: 100%;
        transform: scale(0.8);
    }
    
    .company-info-grid {
        gap: 0.75rem;
    }
    
}

/* Fix top bar dropdown z-index issue on mobile and tablet - make it much lower */
/* ===== ABOUT TOURNO SPECIFIC STYLES ===== */
/* Note: Dropdown and mobile menu fixes are now in mobile_menu_dropdowns.css */
