/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Main */
* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
}

:root {
    --primary-orange  : #ff6b35;
    --secondary-orange: #f7931e;
    --accent-yellow   : #ffcc02;
    --dark-bg         : #0a0a0a;
    --darker-bg       : #050505;
    --card-bg         : rgba(255, 255, 255, 0.02);
    --glass-bg        : rgba(255, 255, 255, 0.05);
    --text-primary    : #ffffff;
    --text-secondary  : #b0b0b0;
    --border-glass    : rgba(255, 255, 255, 0.1);

    /* Light Theme Palette - Soft Gray on White */
    --light-bg            : #f7f9fc; /* Page background */
    --light-card-bg       : #ffffff; /* Solid white cards */
    --light-text-primary  : #1b1f2a; /* Deep neutral for text */
    --light-text-secondary: #667085; /* Subtle secondary */
    --light-border        : rgba(16, 24, 40, 0.08); /* Very light border */
    --light-glass-bg      : rgba(255, 255, 255, 0.75); /* Translucent white */
    --light-shadow        : rgba(16, 24, 40, 0.06); /* Soft shadow */
    --light-shadow-strong : rgba(16, 24, 40, 0.12); /* Stronger soft shadow */
    --light-accent        : #f2f4f7; /* Section accent */
    --light-element-bg    : #ffffff; /* Inputs/elements */
    --light-element-border: rgba(16, 24, 40, 0.08);
    --light-hover-bg      : #f9fafb;
    --light-active-bg     : #eef2f6;
    --light-button-text   : #ffffff; /* White text for buttons */
    --light-button-hover  : #ff6b35; /* Vibrant orange hover */
    
    /* Light Theme Gradients */
    --light-gradient-card  : linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    --light-gradient-hover : linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --light-gradient-bg    : linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
	
	
	/*Custom Settings For Light Theme */
	--light-container-1: #f7f9fc;
	--light-container-2: #fff;
	/*asdasdasd*/
	/*Custom Settings For Dark Theme */
	--surface-radius: 16px;
}

body {
    font-family          : 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background           : radial-gradient(ellipse at top, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    color                : var(--text-primary);
    line-height          : 1.6;
    overflow-x           : hidden;
    min-height           : 100vh;
    transition           : background 0.3s ease, color 0.3s ease;
}

body.light-theme {
    background: var(--light-bg);
    background-attachment: fixed;
    color: var(--light-text-primary);
}

/* Navigation Bar (Header) */
.main-navbar {
    position  : fixed;
    top       : 20px;
    left      : 50%;
    transform : translateX(-50%);
    z-index   : 1000;
    transition: all 0.3s ease;
}

.main-nav-container {
    background     : rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border         : 1px solid var(--border-glass);
    border-radius  : 25px;
    padding        : 12px 25px;
    display        : flex;
    align-items    : center;
    gap            : 25px;
    box-shadow     : 0 10px 40px rgba(0, 0, 0, 0.3);
    flex-wrap      : wrap;
}

body.light-theme .main-nav-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    color: var(--light-text-primary);
}

.main-nav-menu {
    display    : flex;
    list-style : none;
    gap        : 20px;
    align-items: center;
    margin     : 0;
}

body.light-theme .main-nav-menu {
    color: var(--text-primary);
}

.main-nav-link {
    color          : var(--text-primary);
    text-decoration: none;
    font-weight    : 500;
    transition     : all 0.3s ease;
    position       : relative;
    padding        : 8px 14px;
    border-radius  : 20px;
    font-size      : 0.95rem;
}

.main-nav-link:hover,
.main-nav-link.active {
    color     : var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.main-cta-nav-button {
    background     : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color          : white;
    padding        : 10px 18px;
    border-radius  : 15px;
    text-decoration: none;
    font-weight    : 600;
    transition     : all 0.3s ease;
    font-size      : 0.9rem;
    white-space    : nowrap;
}

.main-cta-nav-button:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.main-nav-actions {
    display    : flex;
    align-items: center;
    gap        : 10px;
}

body.light-theme .main-nav-actions {
    color: #ffffff;
}

.main-nav-action-btn {
    width          : 35px;
    height         : 35px;
    border-radius  : 50%;
    background     : rgba(255, 255, 255, 0.05);
    border         : 1px solid var(--border-glass);
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          : var(--text-primary);
    text-decoration: none;
    transition     : all 0.3s ease;
    font-size      : 0.9rem;
}

.main-nav-action-btn:hover {
    background  : rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color       : var(--primary-orange);
}

/* Search Modal */
.main-search-modal {
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index        : 2000;
    display        : none;
    align-items    : flex-start;
    justify-content: center;
    padding-top    : 100px;
}

.main-search-modal.active {
    display: flex;
}

/* Mobile Navigation Bar (Header) */
.main-mobile-nav-toggle {
    display   : none;
    background: none;
    border    : none;
    color     : var(--text-primary);
    font-size : 1.5rem;
    cursor    : pointer;
    padding   : 8px;
}

body.light-theme .main-mobile-nav-toggle {
    color: #ffffff;
}

.main-search-container {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    width          : 90%;
    max-width      : 600px;
    backdrop-filter: blur(20px);
}

.main-search-input {
    width        : 100%;
    padding      : 15px 20px;
    background   : rgba(255, 255, 255, 0.05);
    border       : 1px solid var(--border-glass);
    border-radius: 10px;
    color        : var(--text-primary);
    font-size    : 1.2rem;
    font-family  : inherit;
}

.main-search-input:focus {
    outline     : none;
    border-color: var(--primary-orange);
}

.main-search-close {
    position  : absolute;
    top       : 20px;
    right     : 20px;
    background: none;
    border    : none;
    color     : var(--text-primary);
    font-size : 1.5rem;
    cursor    : pointer;
}

/* Auth Modal (Login & Register Popup) */
.main-auth-modal {
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index        : 3000;
    display        : none;
    align-items    : center;
    justify-content: center;
    padding        : 20px;
}

.main-auth-modal.active {
    display: flex;
}

.main-auth-container {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    width          : 100%;
    max-width      : 500px;
    backdrop-filter: blur(20px);
    position       : relative;
    overflow       : hidden;
}

.main-auth-header {
    background   : linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding      : 30px;
    text-align   : center;
    border-bottom: 1px solid var(--border-glass);
}

.main-auth-header h2 {
    color        : var(--text-primary);
    font-size    : 2rem;
    margin-bottom: 10px;
    font-weight  : 700;
}

.main-auth-header p {
    color: var(--text-secondary);
}

.main-auth-tabs {
    display      : flex;
    border-bottom: 1px solid var(--border-glass);
}

.main-auth-tab {
    flex       : 1;
    text-align : center;
    padding    : 20px;
    background : rgba(255, 255, 255, 0.02);
    color      : var(--text-secondary);
    font-weight: 600;
    cursor     : pointer;
    transition : all 0.3s ease;
}

.main-auth-tab.active {
    background   : transparent;
    color        : var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
}

.main-auth-form-container {
    padding: 40px 30px;
}

body.light-theme .main-auth-form-container {
    color: #ffffff;
}

.main-auth-form {
    display: none;
}

.main-auth-form.active {
    display: block;
}

.main-auth-form-group {
    margin-bottom: 25px;
}

.main-auth-form-group label {
    display      : block;
    color        : var(--text-primary);
    margin-bottom: 8px;
    font-weight  : 500;
}

.main-auth-form-group input {
    width        : 100%;
    padding      : 15px;
    background   : rgba(255, 255, 255, 0.05);
    border       : 1px solid var(--border-glass);
    border-radius: 10px;
    color        : var(--text-primary);
    font-size    : 1rem;
    transition   : all 0.3s ease;
    font-family  : inherit;
}

.main-auth-form-group input:focus {
    outline     : none;
    border-color: var(--primary-orange);
    background  : rgba(255, 255, 255, 0.08);
}

.main-auth-form-group input::placeholder {
    color: var(--text-secondary);
}

.main-auth-submit-btn {
    width        : 100%;
    padding      : 15px;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    border       : none;
    border-radius: 10px;
    font-size    : 1.1rem;
    font-weight  : 600;
    cursor       : pointer;
    transition   : all 0.3s ease;
    margin-top   : 10px;
}

body.light-theme .main-auth-submit-btn {
    color: white;
}

.main-auth-submit-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.main-auth-footer {
    text-align: center;
    margin-top: 20px;
    color     : var(--text-secondary);
}

.main-auth-footer a {
    color          : var(--primary-orange);
    text-decoration: none;
    font-weight    : 600;
}

.main-auth-footer a:hover {
    text-decoration: underline;
}

.main-auth-close {
    position  : absolute;
    top       : 20px;
    right     : 20px;
    background: none;
    border    : none;
    color     : var(--text-primary);
    font-size : 1.5rem;
    cursor    : pointer;
    z-index   : 10;
}

/* Back to Top Button Left-Bottom */
.main-back-to-top {
    position       : fixed;
    bottom         : 30px;
    right          : 30px;
    width          : 50px;
    height         : 50px;
    background     : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          : white;
    font-size      : 1.5rem;
    text-decoration: none;
    opacity        : 0;
    visibility     : hidden;
    transform      : translateY(20px);
    transition     : all 0.3s ease;
    z-index        : 1000;
    box-shadow     : 0 5px 15px rgba(255, 107, 53, 0.4);
}

body.light-theme .main-back-to-top {
    color: white;
}

.main-back-to-top.show {
    opacity   : 1;
    visibility: visible;
    transform : translateY(0);
}

.main-back-to-top:hover {
    transform : translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

/* Hero Section */
.index-hero {
    padding   : 150px 0 100px;
    text-align: center;
    position  : relative;
    overflow  : hidden;
}

.index-hero-stats {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap                  : 30px;
    max-width            : 800px;
    margin               : 0 auto;
    margin-top           : 60px;
}

body.light-theme .index-hero-stats {
    color: var(--text-primary);
}

.index-hero-stat {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 25px 15px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
}

body.light-theme .index-hero-stat {
    background: #111827;
    border: 1px solid rgba(17, 24, 39, 0.3);
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.25);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.index-hero-stat:hover {
    transform   : translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow  : 0 10px 30px rgba(255, 107, 53, 0.2);
}

.index-hero-stat h3 {
    font-size    : 2rem;
    font-weight  : 800;
    color        : var(--primary-orange);
    margin-bottom: 5px;
}

.index-hero-stat p {
    color      : var(--text-secondary);
    font-size  : 0.9rem;
    font-weight: 500;
}

body.light-theme .index-hero-stat h3 {
    color: var(--primary-orange);
}

body.light-theme .index-hero-stat p {
    color: var(--text-secondary);
}

.index-hero::before {
    content      : '';
    position     : absolute;
    top          : -100px;
    left         : 50%;
    transform    : translateX(-50%);
    width        : 400px;
    height       : 400px;
    background   : radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity      : 0.1;
    border-radius: 50%;
    filter       : blur(60px);
}

body.light-theme .index-hero::before {
    opacity: 0.05;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
}

.index-hero-container {
    max-width: 1400px;
    margin   : 0 auto;
    padding  : 0 20px;
    position : relative;
    z-index  : 2;
}

body.light-theme .index-hero-container {
    color: var(--light-text-primary);
}

.index-hero h1 {
    font-size              : clamp(3rem, 8vw, 6rem);
    font-weight            : 800;
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    margin-bottom          : 20px;
    letter-spacing         : -0.02em;
}

body.light-theme .index-hero h1 {
    color: var(--light-text-primary);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-hero .index-subtitle {
    font-size    : 1.5rem;
    color        : var(--text-secondary);
    margin-bottom: 30px;
    font-weight  : 400;
    max-width    : 800px;
    margin-left  : auto;
    margin-right : auto;
}

body.light-theme .index-hero .index-subtitle {
    color: #cccccc;
}

.index-hero .index-description {
    font-size    : 1.1rem;
    color        : var(--text-secondary);
    margin-bottom: 50px;
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
    line-height  : 1.8;
}

body.light-theme .index-hero .index-description {
    color: #bbbbbb;
}

body.light-theme .index-hero .index-subtitle {
    color: var(--light-text-secondary);
}

body.light-theme .index-hero .index-description {
    color: var(--light-text-secondary);
}

.index-hero-buttons {
    display        : flex;
    justify-content: center;
    gap            : 20px;
    flex-wrap      : wrap;
    margin-bottom  : 80px;
}

body.light-theme .index-hero-buttons {
    color: var(--light-text-primary);
}

.index-btn-primary {
    display        : inline-flex;
    align-items    : center;
    gap            : 10px;
    padding        : 16px 32px;
    background     : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color          : white;
    text-decoration: none;
    border-radius  : var(--surface-radius);
    font-weight    : 600;
    font-size      : 1.1rem;
    transition     : all 0.3s ease;
}

.index-btn-primary:hover {
    transform : translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.index-btn-secondary {
    display        : inline-flex;
    align-items    : center;
    gap            : 10px;
    padding        : 16px 32px;
    background     : var(--glass-bg);
    border         : 2px solid var(--border-glass);
    color          : var(--text-primary);
    text-decoration: none;
    border-radius  : var(--surface-radius);
    font-weight    : 600;
    font-size      : 1.1rem;
    transition     : all 0.3s ease;
    backdrop-filter: blur(20px);
}

.index-btn-secondary:hover {
    border-color: var(--primary-orange);
    transform   : translateY(-3px);
    box-shadow  : 0 15px 40px rgba(255, 107, 53, 0.2);
}

body.light-theme .index-btn-primary {
    color: var(--light-button-text);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .index-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

body.light-theme .index-btn-secondary {
    background: #111827;
    border: 1px solid rgba(17, 24, 39, 0.3);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.25);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .index-btn-secondary:hover {
    border-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.35);
}

body.light-theme .index-btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.container {
    max-width: 1900px;
    margin   : 0 auto;
    padding  : 0 20px;
}

.section-title {
    font-size              : 3rem;
    font-weight            : 700;
    text-align             : center;
    margin-bottom          : 20px;
    background             : linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
}

.section-subtitle {
    text-align   : center;
    color        : var(--text-secondary);
    font-size    : 1.2rem;
    margin-bottom: 80px;
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
}

body.light-theme .section-title {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
}

body.light-theme .section-subtitle {
    text-shadow: none;
    font-weight: 500;
    color: var(--light-text-secondary);
}

.services-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 40px;
    margin-bottom        : 80px;
}

body.light-theme .services-grid {
    color: var(--light-text-primary);
}

.service-card {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    transition     : all 0.4s ease;
    backdrop-filter: blur(20px);
    position       : relative;
    overflow       : hidden;
    text-align     : center;
}

body.light-theme .service-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 32px var(--light-shadow);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: var(--light-text-primary);
}

body.light-theme .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

body.light-theme .service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform   : translateY(-12px);
    border-color: var(--primary-orange);
    box-shadow  : 0 30px 70px rgba(255, 107, 53, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-icon {
    font-size    : 3.5rem;
    margin-bottom: 25px;
    display      : block;
}

body.light-theme .service-icon {
    color: #ffffff;
}

.service-card h3 {
    font-size    : 1.5rem;
    font-weight  : 700;
    margin-bottom: 15px;
    color        : var(--primary-orange);
}

.service-card p {
    color        : var(--text-secondary);
    line-height  : 1.6;
    margin-bottom: 25px;
}

body.light-theme .service-card h3 {
    color: var(--primary-orange);
    text-shadow: none;
    font-weight: 700;
}

body.light-theme .service-card p {
    color: var(--light-text-secondary);
    text-shadow: none;
    font-weight: 400;
    line-height: 1.7;
}

.service-tags {
    display        : flex;
    flex-wrap      : wrap;
    gap            : 8px;
    justify-content: center;
}

.service-tags .tag {
    background   : rgba(255, 107, 53, 0.1);
    color        : var(--accent-yellow);
    padding      : 4px 10px;
    border-radius: 12px;
    font-size    : 0.8rem;
    font-weight  : 500;
    border       : 1px solid rgba(255, 107, 53, 0.2);
}

body.light-theme .service-tags .tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Specialization Section */
.specialization-section {
    padding      : 100px 0;
    background   : var(--card-bg);
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .specialization-section {
    color: var(--text-primary);
}

.specialization-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

body.light-theme .specialization-grid {
    color: var(--text-primary);
}

.spec-category {
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
}

body.light-theme .spec-category {
    color: var(--text-primary);
}

.spec-category:hover {
    transform   : translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow  : 0 20px 50px rgba(255, 107, 53, 0.15);
}

.spec-header {
    display      : flex;
    align-items  : center;
    gap          : 15px;
    margin-bottom: 30px;
}

body.light-theme .spec-header {
    color: #ffffff;
}

.spec-icon {
    font-size: 2.5rem;
}

body.light-theme .spec-icon {
    color: #ffffff;
}

.spec-header h3 {
    color      : var(--primary-orange);
    font-size  : 1.5rem;
    font-weight: 700;
}

.spec-list {
    list-style: none;
    /*space-y : 15px;*/
}

body.light-theme .spec-list {
    color: #ffffff;
}

.spec-list li {
    color        : var(--text-secondary);
    margin-bottom: 12px;
    padding      : 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size    : 0.95rem;
    line-height  : 1.6;
}

.spec-list li:last-child {
    border-bottom: none;
}

.datacorp-showcase {
    background   : linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 15px;
    padding      : 25px;
    margin-top   : 20px;
}

body.light-theme .datacorp-showcase {
    color: #ffffff;
}

.datacorp-info h4 {
    color        : var(--primary-orange);
    font-size    : 1.2rem;
    font-weight  : 600;
    margin-bottom: 15px;
}

body.light-theme .datacorp-info h4 {
    color: #ffffff;
}

.datacorp-info p {
    color        : var(--text-secondary);
    line-height  : 1.6;
    margin-bottom: 20px;
}

.datacorp-features {
    display      : flex;
    flex-wrap    : wrap;
    gap          : 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background   : rgba(255, 255, 255, 0.1);
    color        : var(--accent-yellow);
    padding      : 4px 8px;
    border-radius: 8px;
    font-size    : 0.75rem;
    font-weight  : 500;
}

body.light-theme .feature-tag {
    color: #ffffff;
}

/* Stats Showcase Section */
.stats-showcase {
    padding      : 80px 0;
    background   : var(--card-bg);
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .stats-showcase {
    color: #ffffff;
}

.stats-showcase-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 40px;
}

body.light-theme .stats-showcase-grid {
    color: #ffffff;
}

.stat-showcase-item {
    text-align   : center;
    padding      : 40px 20px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border       : 1px solid var(--border-glass);
    transition   : all 0.3s ease;
}

body.light-theme .stat-showcase-item {
    color: #ffffff;
}

.stat-showcase-item:hover {
    transform   : translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow  : 0 20px 50px rgba(255, 107, 53, 0.15);
}

.stat-icon {
    font-size    : 3rem;
    margin-bottom: 20px;
    display      : block;
}

body.light-theme .stat-icon {
    color: #ffffff;
}

.stat-number {
    font-size    : 3.5rem;
    font-weight  : 800;
    color        : var(--primary-orange);
    margin-bottom: 10px;
}

body.light-theme .stat-number {
    color: #ffffff;
}

.stat-label {
    font-size    : 1.3rem;
    font-weight  : 600;
    color        : var(--text-primary);
    margin-bottom: 8px;
}

body.light-theme .stat-label {
    color: #ffffff;
}

.stat-description {
    color    : var(--text-secondary);
    font-size: 0.95rem;
}

body.light-theme .stat-description {
    color: #cccccc;
}

/* Datacorp Hero Section */
.datacorp-hero-section {
    padding      : 100px 0;
    background   : linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .datacorp-hero-section {
    background: #0f172a; /* slate-900 for strong contrast */

}

.datacorp-badge {
    display      : inline-block;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    padding      : 12px 24px;
    border-radius: 25px;
    font-weight  : 600;
    font-size    : 1.1rem;
    margin-bottom: 30px;
    box-shadow   : 0 8px 25px rgba(255, 107, 53, 0.3);
    position     : relative;
}

.gradient-text {
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    font-weight            : 800;
    font-size              : 2.8rem;
    margin                 : 20px 0;
}

body.light-theme .gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.datacorp-badge::before {
    content     : '💼';
    font-size   : 1.3em;
    margin-right: 8px;
    filter      : drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.section-badge {
    display      : inline-block;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    padding      : 12px 24px;
    border-radius: var(--surface-radius);
    font-weight  : 600;
    font-size    : 1.1rem;
    margin-bottom: 30px;
    box-shadow   : 0 8px 25px rgba(255, 107, 53, 0.3);
    position     : relative;
}

body.light-theme .section-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.datacorp-mockup {
    background     : linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border         : 2px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 20px;
    margin         : 40px 0;
    box-shadow     : 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
}

body.light-theme .datacorp-mockup {
    background: linear-gradient(135deg, #fafafa, #eaeaea);
    border: 2px solid var(--border-glass);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.datacorp-mockup:hover {
    transform   : translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow  : 0 25px 70px rgba(255, 107, 53, 0.2);
}

.mockup-header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    margin-bottom  : 20px;
    padding-bottom : 15px;
    border-bottom  : 1px solid var(--border-glass);
}

body.light-theme .mockup-header {
    border-bottom: 1px solid var(--border-glass);
}

.mockup-dots {
    display: flex;
    gap    : 8px;
}

.mockup-dots span {
    width        : 12px;
    height       : 12px;
    border-radius: 50%;
    background   : var(--text-secondary);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28ca42;
}

.mockup-title {
    color      : var(--text-primary);
    font-weight: 600;
    font-size  : 1.1rem;
}

body.light-theme .mockup-title {
    color: var(--text-primary);
}

.mockup-stats {
    display      : flex;
    gap          : 20px;
    margin-bottom: 20px;
}

.stat-mini {
    background   : rgba(255, 107, 53, 0.1);
    border       : 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding      : 15px;
    text-align   : center;
    flex         : 1;
	font-size  	 : 1.3rem;
	font-weight	 : 700;
	color        : var(--primary-orange);

}

.stat-mini:first-child {
    font-size  : 1.3rem;
    font-weight: 700;
    color      : var(--primary-orange);
}

.stat-mini span {
    display   : block;
    font-size : 0.8rem;
    color     : var(--text-secondary);
    margin-top: 5px;
}

.mockup-chart {
    height       : 80px;
    background   : linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    border-radius: 8px;
    position     : relative;
    overflow     : hidden;
}

.mockup-chart::after {
    content : '';
    position: absolute;
    top     : 0;
    left    : 0;
    right   : 0;
    bottom  : 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.1) 20px,
            rgba(255, 255, 255, 0.1) 21px);
}

.gradient-icon {
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    font-size              : 2.5rem !important;
    filter                 : drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.datacorp-hero-content {
    margin-top: 60px;
}

.datacorp-features-list {
    display              : grid;
    grid-template-columns: repeat(2, 1fr);
    gap                  : 20px;
    margin-bottom        : 50px;
}

.datacorp-feature {
    display        : flex;
    align-items    : flex-start;
    gap            : 20px;
    padding        : 25px;
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
    box-shadow     : 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .datacorp-feature {
    background: #fafafa;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

body.light-theme .datacorp-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

body.light-theme .datacorp-feature:hover::before {
    transform: scaleX(1);
}

.datacorp-feature:hover {
    transform   : translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow  : 0 15px 35px rgba(255, 107, 53, 0.25);
}

.datacorp-feature .feature-icon {
    font-size      : 2rem;
    margin-top     : 2px;
    width          : 60px;
    height         : 60px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    border-radius  : 15px;
    background     : linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border         : 2px solid var(--primary-orange);
    flex-shrink    : 0;
    box-shadow     : 0 5px 15px rgba(255, 107, 53, 0.2);
    transition     : all 0.3s ease;
}

.datacorp-feature:hover .feature-icon {
    transform : scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
}

.datacorp-feature h4 {
    color        : var(--primary-orange);
    font-size    : 1.2rem;
    margin-bottom: 10px;
    font-weight  : 700;
}

.datacorp-feature p {
    color      : var(--text-secondary);
    line-height: 1.6;
    font-size  : 1rem;
}

body.light-theme .datacorp-feature h4 {
    color        : var(--primary-orange);
    font-size    : 1.2rem;
    margin-bottom: 10px;
    font-weight  : 700;
}

body.light-theme .datacorp-feature p {
    color      : var(--light-text-secondary);
    line-height: 1.6;
    font-size  : 1rem;
}

.datacorp-actions {
    display        : flex;
    justify-content: center;
    gap            : 20px;
    flex-wrap      : wrap;
}

/* Pricing Transparency Section */
.pricing-transparency {
    padding: 100px 0;
}

body.light-theme .pricing-transparency {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
}

.pricing-grid {
    display              : grid;
    grid-template-columns: repeat(5, minmax(400px, 1fr));
    gap                  : 30px;
    margin-top           : 60px;
    margin-bottom        : 60px;
    justify-content       : center;
}

.pricing-card {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 35px;
    text-align     : center;
    transition     : all 0.3s ease;
    backdrop-filter: blur(15px);
    position       : relative;
    overflow       : hidden;
    display        : flex;
    flex-direction : column;
}

body.light-theme .pricing-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 32px var(--light-shadow);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: var(--light-text-primary);
}

body.light-theme .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

body.light-theme .pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform   : scale(1.05);
    box-shadow  : 0 30px 70px rgba(255, 107, 53, 0.35);
    border-width: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover {
    transform   : translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow  : 0 25px 50px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position     : absolute;
    top          : -1px;
    left         : 50%;
    transform    : translateX(-50%);
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    padding      : 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size    : 0.9rem;
    font-weight  : 600;
}

.pricing-icon {
    font-size    : 3rem;
    margin-bottom: 20px;
    display      : block;
}

.pricing-card h3 {
    font-size    : 1.6rem;
    font-weight  : 700;
    color        : var(--text-primary);
    margin-bottom: 20px;
}

.pricing-range {
    margin-bottom: 30px;
}

.price-from {
    display      : block;
    color        : var(--text-secondary);
    font-size    : 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    font-size  : 2.5rem;
    font-weight: 800;
    color      : var(--primary-orange);
}

body.light-theme .pricing-card h3 {
    color: #ffffff;
}

body.light-theme .price-from {
    color: #bbbbbb;
}

body.light-theme .price-amount {
    color: var(--primary-orange);
}

.pricing-features {
    list-style   : none;
    margin-bottom: 30px;
    text-align   : left;
    flex-grow    : 1;
}

.pricing-features li {
    display      : flex;
    align-items  : center;
    gap          : 10px;
    margin-bottom: 10px;
    color        : var(--text-secondary);
    padding      : 8px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size    : 0.9rem;
}

.pricing-features li::before {
    content    : '✓';
    color      : var(--accent-yellow);
    font-weight: bold;
    font-size  : 1.1rem;
}

body.light-theme .pricing-features li {
    color: #cccccc;
    background: rgba(255, 255, 255, 0.05);
}

body.light-theme .pricing-features li::before {
    color: var(--accent-yellow);
}

.pricing-btn {
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    gap            : 8px;
    padding        : 14px 30px;
    background     : var(--glass-bg);
    border         : 2px solid var(--border-glass);
    color          : var(--text-primary);
    text-decoration: none;
    border-radius  : 12px;
    font-weight    : 600;
    transition     : all 0.3s ease;
    backdrop-filter: blur(15px);
    font-size      : 1rem;
    margin-top     : auto;
    width          : 100%;
}

.pricing-btn.primary {
    background  : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color       : white;
}

.pricing-btn:hover {
    border-color: var(--primary-orange);
    transform   : translateY(-3px);
    box-shadow  : 0 12px 30px rgba(255, 107, 53, 0.4);
}

.pricing-btn.primary:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

body.light-theme .pricing-btn {
    background: var(--light-glass-bg);
    border: 2px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-theme .pricing-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.pricing-note {
    text-align     : center;
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 30px;
    backdrop-filter: blur(20px);
}

.pricing-note p {
    color        : var(--text-secondary);
    margin-bottom: 15px;
    font-size    : 1rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note strong {
    color: var(--primary-orange);
}

body.light-theme .pricing-note {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}

body.light-theme .pricing-note p {
    color: var(--text-secondary);
}

body.light-theme .pricing-note strong {
    color: var(--primary-orange);
}

.stats-section {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 80px 40px;
    margin         : 80px 0;
    backdrop-filter: blur(20px);
}

.stats-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap                  : 40px;
    text-align           : center;
}

body.light-theme .stats-section {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.stat-item h4 {
    font-size    : 3rem;
    font-weight  : 800;
    color        : var(--primary-orange);
    margin-bottom: 10px;
}

.stat-item p {
    color      : var(--text-secondary);
    font-weight: 500;
    font-size  : 1.1rem;
}

body.light-theme .stat-item h4 {
    color: var(--primary-orange);
}

body.light-theme .stat-item p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align   : center;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
	border-radius: var(--surface-radius);
    padding      : 80px 40px;
    margin       : 100px auto;
    position     : relative;
    overflow     : hidden;
    max-width    : 1000px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.cta-section h2 {
    font-size    : 3rem;
    font-weight  : 700;
    margin-bottom: 20px;
    color        : white;
}

.cta-section p {
    font-size    : 1.3rem;
    margin-bottom: 40px;
    color        : rgba(255, 255, 255, 0.9);
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
}

.cta-button {
    display        : inline-flex;
    align-items    : center;
    gap            : 12px;
    padding        : 18px 36px;
    background     : white;
    color          : var(--primary-orange);
    text-decoration: none;
    border-radius  : var(--surface-radius);
    font-weight    : 700;
    font-size      : 1.1rem;
    transition     : all 0.3s ease;
}

.cta-button:hover {
    transform : translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

body.light-theme .cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

body.light-theme .cta-button {
    background: white;
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-top: 1px solid var(--border-glass);
    padding   : 80px 0 40px;
}

body.light-theme .footer {
    background: var(--light-accent);
    border-top: 1px solid var(--light-border);
    color: var(--light-text-primary);
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1400px;
    margin   : 0 auto;
    padding  : 0 20px;
}

.footer-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 50px;
    margin-bottom        : 50px;
}

.footer-section h3 {
    font-size    : 1.3rem;
    font-weight  : 700;
    color        : var(--primary-orange);
    margin-bottom: 25px;
}

body.light-theme .footer-section h3 {
    color: var(--primary-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color          : var(--text-secondary);
    text-decoration: none;
    transition     : color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

body.light-theme .footer-section ul li a {
    color: var(--text-secondary);
}

body.light-theme .footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-logo {
    font-size              : 2.2rem;
    font-weight            : 800;
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    margin-bottom          : 20px;
}

.footer-description {
    color        : var(--text-secondary);
    margin-bottom: 30px;
    font-size    : 1.1rem;
    line-height  : 1.7;
}

body.light-theme .footer-description {
    color: var(--text-secondary);
}

.footer-bottom {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    color          : var(--text-secondary);
    font-size      : 0.95rem;
    flex-wrap      : wrap;
    gap            : 20px;
    padding-top    : 30px;
    border-top     : 1px solid var(--border-glass);
}

body.light-theme .footer-bottom {
    color: var(--light-text-secondary);
}

/* Language Button Dropdown */
.language-switch {
    position: relative;
    display : inline-block;
}

.language-dropdown {
    position       : absolute;
    top            : 100%;
    right          : 0;
    background     : rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    margin-top     : 10px;
    padding        : 15px;
    min-width      : 150px;
    opacity        : 0;
    visibility     : hidden;
    transition     : all 0.3s ease;
    z-index        : 1001;
    transform      : translateY(-10px);
}

body.light-theme .language-dropdown {
    background: #fff;
    border: 1px solid var(--surface-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.language-switch:hover .language-dropdown {
    opacity   : 1;
    visibility: visible;
    transform : translateY(0);
}

.language-option {
    display        : block;
    padding        : 8px 12px;
    color          : var(--text-secondary);
    text-decoration: none;
    border-radius  : 8px;
    transition     : all 0.3s ease;
    font-size      : 0.9rem;
    cursor         : pointer;
    transform      : scale(1);
}

body.light-theme .language-option {
    color: var(--light-text-secondary);
}

.language-option:hover {
    color     : var(--text-primary);
    background: rgba(255, 107, 53, 0.1);
    transform : scale(1.05);
}

body.light-theme .language-option:hover {
    color     : var(--light-text-primary);
    background: rgba(255, 107, 53, 0.1);
}

.language-option.active {
    color      : var(--primary-orange);
    font-weight: 600;
    transform  : scale(1.05);
    background : rgba(255, 107, 53, 0.15);
}

body.light-theme .language-option.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.15);
}

.theme-toggle {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 35px;
    height         : 35px;
    border-radius  : 50%;
    background     : rgba(255, 255, 255, 0.05);
    border         : 1px solid var(--border-glass);
    color          : var(--text-primary);
    text-decoration: none;
    transition     : all 0.3s ease;
    font-size      : 0.9rem;
}

body.light-theme .theme-toggle {
    background: var(--light-element-bg);
    border: 1px solid var(--light-element-border);
    color: var(--light-text-primary);
    box-shadow: 0 2px 8px var(--light-shadow);
}

body.light-theme .theme-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 4px 12px var(--light-shadow-strong);
}

/* DataCorp Comparison Tables */
.comparison-table-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .advantage {
    color: var(--accent-yellow);
    font-weight: 600;
}

.feature-comparison,
.competitor-comparison {
    padding: 80px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .feature-comparison,
body.light-theme .competitor-comparison {
    background: #1a1a1a;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.comparison-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

body.light-theme .comparison-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #333333;
    color: #ffffff;
}

.comparison-note p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

body.light-theme .comparison-note p {
    color: #cccccc;
}

.comparison-note strong {
    color: var(--primary-orange);
}

/* Light Theme: adopt Dark surfaces on white canvas (no blue/slate tones) */
/* This block intentionally lives at the end to override earlier light rules */
body.light-theme .main-nav-container {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    color: var(--text-primary);
}

body.light-theme .index-hero {
    background: #ffffff; /* üst header alanı beyaz */
}

body.light-theme .index-btn-secondary {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    color: var(--custom-text-light);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
body.light-theme .index-btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--custom-text-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

body.light-theme .index-hero-stat {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
body.light-theme .index-hero-stat p { color: var(--text-secondary); }

body.light-theme .datacorp-hero-section {
    background: var(--light-container-1); //asdasdasd
}
body.light-theme .mockup-header { border-bottom: 1px solid var(--border-glass); }
body.light-theme .mockup-title { color: var(--text-primary); }

body.light-theme .stat-mini span { color: var(--text-secondary); }

/* Services & On-site cards */
body.light-theme .services .service-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* Pricing */
body.light-theme .pricing-transparency .pricing-card,
body.light-theme .pricing-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}
body.light-theme .pricing-note {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
body.light-theme .pricing-note p { color: var(--text-secondary); }

/* Stats / consultation section */
body.light-theme .stats-section {
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* Footer dark */
body.light-theme .footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-glass);
    color: var(--text-primary);
}
body.light-theme .footer-bottom {
    color: var(--text-secondary);
}

/* Light Theme Surface Consolidation */
body.light-theme {
    --surface-dark       : rgba(240, 240, 240, 0.86);
	--custom-text-light	 : #0a0a0a;
    --surface-border     : var(--border-glass);
    --surface-text       : var(--text-primary);
    --surface-shadow     : 0 12px 34px rgba(0, 0, 0, 0.3);
    --surface-radius     : 16px;
}

/* Unify rounding on key blocks */
body.light-theme .main-nav-container,
body.light-theme .index-hero-stat,
body.light-theme .services .service-card,
body.light-theme .pricing-card,
body.light-theme .pricing-note,
body.light-theme .stats-section,
body.light-theme .stat-mini,
body.light-theme .datacorp-mockup,
body.light-theme .footer,
body.light-theme .action-btn {
    border-radius: var(--surface-radius);
}

/* Action buttons on light: dark surface look */
body.light-theme .action-btn {
    background: var(--surface-dark);
    border: 1px solid var(--surface-border);
    color: var(--surface-text);
    box-shadow: var(--surface-shadow);
}
body.light-theme .action-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Buttons radius and hero refinements */
body.light-theme .index-btn-primary,
body.light-theme .index-btn-secondary { border-radius: var(--surface-radius); }

/* Subtle hero glow on light */
body.light-theme .index-hero::before { opacity: 0.03; }

/* Ensure hero copy is readable on white */
body.light-theme .index-hero .index-subtitle,
body.light-theme .index-hero .index-description { color: var(--light-text-secondary); }

/* Improve secondary text on dark surfaces */
body.light-theme .index-hero-stat p,
body.light-theme .services .service-card p,
body.light-theme .pricing-card .price-from,
body.light-theme .pricing-card .pricing-features li,
body.light-theme .stats-section p,
body.light-theme .pricing-note p,
body.light-theme .footer .footer-description {
    color: var(--text-secondary);
}

/* Index page - Light theme forced dark-look overrides (removed for global consistency) */

body.light-theme .comparison-table {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

body.light-theme .comparison-table th {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
}

body.light-theme .comparison-table td {
    color: #cccccc;
    border-bottom: 1px solid #333333;
}

body.light-theme .comparison-table .feature-name {
    color: #ffffff;
}

body.light-theme .comparison-table .advantage {
    color: var(--accent-yellow);
}

/* DataCorp Pricing Page Specific Styles */
.datacorp-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 60px;
    margin-bottom: 60px;
    justify-content: center;
    max-width: 100%;
}

body.light-theme .datacorp-pricing .pricing-grid {
    color: #ffffff;
}

.datacorp-pricing .pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 320px;
}

.datacorp-pricing .pricing-card.featured {
    border-color: var(--primary-orange);
    border-width: 2px;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.datacorp-pricing .pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

.datacorp-pricing .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.datacorp-pricing .pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.datacorp-pricing .pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.datacorp-pricing .pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.datacorp-pricing .pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.datacorp-pricing .pricing-range {
    margin-bottom: 30px;
}

.datacorp-pricing .price-from {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.datacorp-pricing .price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.datacorp-pricing .pricing-range {
    margin-bottom: 30px;
}

.datacorp-pricing .pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.datacorp-pricing .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 0.9rem;
}

.datacorp-pricing .pricing-features li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

.datacorp-pricing .pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--glass-bg);
    border: 2px solid var(--border-glass);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-size: 1rem;
    margin-top: auto;
    width: 100%;
}

.datacorp-pricing .pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color: white;
}

.datacorp-pricing .pricing-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.datacorp-pricing .pricing-btn.primary:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.datacorp-pricing .pricing-note {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(20px);
}

.datacorp-pricing .pricing-note p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.datacorp-pricing .pricing-note p:last-child {
    margin-bottom: 0;
}

.datacorp-pricing .pricing-note strong {
    color: var(--primary-orange);
}

/* Responsive Styles for DataCorp Pricing */
@media (max-width: 1400px) {
    .datacorp-pricing .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .datacorp-pricing .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .datacorp-pricing .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .datacorp-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.datacorp-pricing .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 0.9rem;
}

.datacorp-pricing .pricing-features li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

.datacorp-pricing .pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--glass-bg);
    border: 2px solid var(--border-glass);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-size: 1rem;
    margin-top: auto;
    width: 100%;
}

.datacorp-pricing .pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color: white;
}

.datacorp-pricing .pricing-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.datacorp-pricing .pricing-btn.primary:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.datacorp-pricing .pricing-note {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(20px);
}

.datacorp-pricing .pricing-note p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.datacorp-pricing .pricing-note p:last-child {
    margin-bottom: 0;
}

.datacorp-pricing .pricing-note strong {
    color: var(--primary-orange);
}



body.light-theme .theme-toggle {
    background: var(--light-element-bg);
    border: 1px solid var(--light-element-border);
    color: var(--light-text-primary);
    box-shadow: 0 2px 8px var(--light-shadow);
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border    : 1px solid var(--light-border);
    color     : var(--light-text-primary);
}

.theme-toggle:hover {
    background  : rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color       : var(--primary-orange);
}

body.light-theme .theme-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 4px 12px var(--light-shadow-strong);
}

/* Translatable Elements Transition */
[data-lang], [data-lang-placeholder], [data-lang-title] {
    transition: opacity 0.3s ease;
}

/* Notification Toasts */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.notification-error {
    background: linear-gradient(135deg, #f44336, #ff9800);
}

.notification-info {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
}

body.light-theme .notification-toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Spinner for loading states */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.light-theme .spinner {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #333;
}

/* Light Theme Global Styles */
body.light-theme {
    background: var(--light-bg);
    color: var(--light-text-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.01) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    background-blend-mode: overlay, overlay, normal;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

body.light-theme .main-navbar .main-nav-container {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .main-nav-link {
    color: var(--text-primary);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

body.light-theme .main-nav-link:hover,
body.light-theme .main-nav-link.active {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .main-cta-nav-button {
    color: var(--light-button-text);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .main-cta-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

body.light-theme .main-nav-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--light-element-border);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

body.light-theme .main-nav-action-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .main-search-modal {
    background: rgba(15, 23, 42, 0.4);
}

body.light-theme .main-search-container {
    background: var(--light-glass-bg);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
    box-shadow: 0 20px 60px var(--light-shadow);
}

body.light-theme .main-search-input {
    background: var(--light-element-bg);
    border: 1px solid var(--light-element-border);
    color: var(--light-text-primary);
}

body.light-theme .main-search-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

body.light-theme .main-search-input::placeholder {
    color: var(--light-text-secondary);
}

body.light-theme .main-search-close {
    color: var(--light-text-primary);
}

body.light-theme .main-auth-modal {
    background: rgba(15, 23, 42, 0.4);
}

body.light-theme .main-auth-container {
    background: var(--light-glass-bg);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
    box-shadow: 0 20px 60px var(--light-shadow);
}

body.light-theme .main-auth-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border-bottom: 1px solid var(--light-border);
}

body.light-theme .main-auth-header h2 {
    color: var(--light-text-primary);
}

body.light-theme .main-auth-header p {
    color: var(--light-text-secondary);
}

body.light-theme .main-auth-tabs {
    border-bottom: 1px solid var(--light-border);
}

body.light-theme .main-auth-tab {
    background: var(--light-element-bg);
    color: var(--light-text-secondary);
    border: 1px solid var(--light-element-border);
}

body.light-theme .main-auth-tab.active {
    background: var(--light-glass-bg);
    color: var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
}

body.light-theme .main-auth-form-group label {
    color: var(--light-text-primary);
}

body.light-theme .main-auth-form-group input {
    background: var(--light-element-bg);
    border: 1px solid var(--light-element-border);
    color: var(--light-text-primary);
}

body.light-theme .main-auth-form-group input:focus {
    border-color: var(--primary-orange);
    background: var(--light-glass-bg);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

body.light-theme .main-auth-form-group input::placeholder {
    color: var(--light-text-secondary);
}

body.light-theme .main-auth-footer {
    color: var(--light-text-secondary);
}

body.light-theme .main-auth-footer a {
    color: var(--primary-orange);
}

body.light-theme .main-auth-close {
    color: var(--light-text-primary);
}

body.light-theme .page-header p {
    color: var(--light-text-secondary);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

body.light-theme .page-header::before {
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0.05;
}

body.light-theme .section-title {
    color: var(--light-text-primary);
}

body.light-theme .section-subtitle {
}

body.light-theme .legal-content {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

body.light-theme .service-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 32px var(--light-shadow);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: var(--light-text-primary);
}

body.light-theme .service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 40px var(--light-shadow-strong);
    transform: translateY(-8px);
}

body.light-theme .service-card h3 {
    color: var(--primary-orange);
}

body.light-theme .service-card p {
    color: var(--light-text-secondary);
}

body.light-theme .service-tags .tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

body.light-theme .pricing-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 32px var(--light-shadow);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    color: var(--light-text-primary);
}

body.light-theme .pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px var(--light-shadow-strong);
}

body.light-theme .pricing-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px var(--light-shadow-strong);
    transform: scale(1.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .pricing-card h3 {
    color: var(--text-primary);
}

body.light-theme .price-amount {
    color: var(--primary-orange);
}

body.light-theme .pricing-features li {
    color: var(--light-text-secondary);
}

body.light-theme .pricing-btn {
    background: var(--light-glass-bg);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
    box-shadow: 0 4px 12px var(--light-shadow);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.light-theme .pricing-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--light-shadow-strong);
}

body.light-theme .pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color: var(--light-button-text);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

body.light-theme .pricing-btn.primary:hover {
    background: var(--light-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

body.light-theme .pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color: white;
}

body.light-theme .pricing-note p {
    color: var(--text-secondary);
}

body.light-theme .pricing-note strong {
    color: var(--primary-orange);
}

body.light-theme .cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

body.light-theme .cta-section h2 {
    color: white;
}

body.light-theme .cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

body.light-theme .cta-button {
    background: white;
    color: var(--primary-orange);
}

body.light-theme .footer {
    border-top: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-theme .footer-section h3 {
    color: var(--primary-orange);
}

body.light-theme .footer-section ul li a {
    color: var(--text-secondary);
}

body.light-theme .footer-section ul li a:hover {
    color: var(--primary-orange);
}

body.light-theme .footer-description {
    color: var(--text-secondary);
}

body.light-theme .footer-bottom {
	display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .about-text {
    color: var(--light-text-secondary);
}

body.light-theme .about-text h3 {
    color: var(--primary-orange);
}

body.light-theme .about-highlights {
    background: var(--surface-dark);
    border: 1px solid var(--border-glass);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .highlight-item {
    background: #fff;
    border-left: 4px solid var(--primary-orange);
}

body.light-theme .highlight-text h4 {
    color: var(--light-text-secondary);
}

body.light-theme .highlight-text p {
    color: var(--light-text-secondary);
}

body.light-theme .company-records {
    background: #1a1a1a;
    border-bottom: 1px solid #333333;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .record-card {
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .record-card h3 {
    color: var(--primary-orange);
}

body.light-theme .record-card h3:after {
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

body.light-theme .detail-item {
    background: var(--light-container-1);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    color: #ffffff;
    border-bottom: 1px solid #333333;
}

body.light-theme .detail-item strong {
    color: var(--light-text-secondary);
}

body.light-theme .detail-item span {
    color: var(--primary-orange);
}

body.light-theme .contact-form-container {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

body.light-theme .contact-form-container h2 {
    color: var(--primary-orange);
}

body.light-theme .form-group label {
    color: #ffffff;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus {
    border-color: var(--primary-orange);
    background: rgba(40, 40, 40, 0.95);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 107, 53, 0.3);
}

body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder {
    color: #aaaaaa;
}

body.light-theme .form-group select option {
    background: var(--light-bg);
    color: var(--light-text-primary);
}

body.light-theme .form-field select {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border-glass);
    color: #ffffff;
}

body.light-theme .form-field select:focus {
    border-color: var(--primary-orange);
    background: rgba(40, 40, 40, 0.9);
}

body.light-theme .form-field select option {
    background: var(--light-bg);
    color: var(--light-text-primary);
    padding: 10px;
}

body.light-theme .submit-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

body.light-theme .contact-info {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .contact-info h2 {
    color: var(--primary-orange);
}

body.light-theme .contact-item {
    background: rgba(30, 30, 30, 0.8);
    border-left: 4px solid var(--primary-orange);
}

body.light-theme .contact-details h3 {
    color: #ffffff;
}

body.light-theme .contact-details p {
    color: #cccccc;
}

body.light-theme .contact-details a {
    color: var(--primary-orange);
}

body.light-theme .office-hours {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

body.light-theme .hours-day {
    color: #ffffff;
}

body.light-theme .hours-time {
    color: #cccccc;
}

/* Page Header */
.page-header {
    padding   : 150px 0 80px;
    text-align: center;
    position  : relative;
}

.page-header::before {
    content      : '';
    position     : absolute;
    top          : -50px;
    left         : 50%;
    transform    : translateX(-50%);
    width        : 300px;
    height       : 300px;
    opacity      : 0.1;
    border-radius: 50%;
    filter       : blur(40px);
    background   : radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
}

.container {
    max-width: 1700px;
    margin   : 0 auto;
    padding  : 0 20px;
    position : relative;
    z-index  : 2;
}

body.light-theme .container {
    color: #ffffff;
}

.page-header h1 {
    font-size              : clamp(2.5rem, 6vw, 4rem);
    font-weight            : 800;
    margin-bottom          : 20px;
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.3rem;
    color    : var(--text-secondary);
    max-width: 700px;
    margin   : 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

body.light-theme .about-section {
    color: #ffffff;
}

.section-title {
    font-size    : 2.5rem;
    font-weight  : 700;
    text-align   : center;
    margin-bottom: 20px;
    color        : var(--text-primary);
}

.section-subtitle {
    text-align   : center;
    color        : var(--text-secondary);
    font-size    : 1.2rem;
    margin-bottom: 60px;
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
}

.about-content {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 60px;
    margin-bottom        : 80px;
    align-items          : center;
}

body.light-theme .about-content {
    color: #ffffff;
}

.about-text {
    font-size  : 1.2rem;
    line-height: 1.8;
    color      : var(--text-secondary);
}

.about-text h3 {
    color        : var(--primary-orange);
    font-size    : 1.8rem;
    margin-bottom: 25px;
    font-weight  : 700;
}

.about-text p {
    margin-bottom: 25px;
}

.about-highlights {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 50px;
    backdrop-filter: blur(20px);
}

.highlight-item {
    display      : flex;
    align-items  : center;
    gap          : 20px;
    margin-bottom: 30px;
    padding      : 20px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left  : 4px solid var(--primary-orange);
}

.highlight-icon {
    font-size: 2rem;
    color    : var(--accent-yellow);
}

body.light-theme .highlight-icon {
    color: var(--accent-yellow);
}

.highlight-text h4 {
    color        : var(--text-primary);
    font-size    : 1.2rem;
    margin-bottom: 8px;
    font-weight  : 600;
}

.highlight-text p {
    color      : var(--text-secondary);
    line-height: 1.6;
}


/* Timeline Section */
.timeline-section {
    padding      : 100px 0;
    background   : var(--card-bg);
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .timeline-section {
    color: #ffffff;
}

.timeline {
    position  : relative;
    max-width : 800px;
    margin    : 0 auto;
    margin-top: 60px;
    padding   : 40px 20px;
}

.timeline::before {
    content      : '';
    position     : absolute;
    top          : 0;
    left         : 20px;
    height       : 100%;
    width        : 4px;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.timeline-item {
    position     : relative;
    padding      : 20px 20px 20px 60px;
    margin-bottom: 40px;
}

body.light-theme .timeline-item {
    color: #ffffff;
}

.timeline-marker {
    position     : absolute;
    top          : 25px;
    left         : 10px;
    width        : 24px;
    height       : 24px;
    border-radius: 50%;
    background   : var(--primary-orange);
    border       : 4px solid var(--card-bg);
    z-index      : 2;
    box-shadow   : 0 0 0 4px rgba(255, 107, 53, 0.2);
}

body.light-theme .timeline-marker {
    color: #ffffff;
}

.timeline-date {
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    padding      : 8px 16px;
    border-radius: 20px;
    font-weight  : 700;
    font-size    : 0.9rem;
    display      : inline-block;
    margin-bottom: 12px;
    box-shadow   : 0 3px 10px rgba(255, 107, 53, 0.3);
}

body.light-theme .timeline-date {
    color: white;
}

.timeline-content {
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 25px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-orange);
    transform   : translateY(-3px);
    box-shadow  : 0 10px 30px rgba(255, 107, 53, 0.2);
}

body.light-theme .timeline-content {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.timeline-content h3 {
    color        : var(--primary-orange);
    font-size    : 1.3rem;
    margin-bottom: 12px;
    font-weight  : 700;
}

body.light-theme .timeline-content h3 {
    color: var(--primary-orange);
}

.timeline-content p {
    color        : var(--text-secondary);
    line-height  : 1.7;
    font-size    : 1rem;
    margin-bottom: 0;
}

body.light-theme .timeline-content p {
    color: #cccccc;
}

/* Company Records */
.company-records {
    padding: 100px 0;
}

.records-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 30px;
    margin-top           : 50px;
}

body.light-theme .records-grid {
    color: #ffffff;
}

.record-card {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
    box-shadow     : 0 10px 30px rgba(0, 0, 0, 0.2);
    display        : flex;
    flex-direction : column;
}

.record-card:hover {
    transform   : translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow  : 0 15px 35px rgba(255, 107, 53, 0.2);
}

.record-card h3 {
    color        : var(--primary-orange);
    font-size    : 1.4rem;
    margin-bottom: 25px;
    font-weight  : 600;
    text-align   : left;
    position     : relative;
    padding-bottom: 12px;
}

.record-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.record-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

body.light-theme .record-details {
    color: #ffffff;
}

.detail-item {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 10px 0;
    border-bottom  : 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom  : 12px;
}

.detail-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.detail-item strong {
    color      : var(--text-primary);
    font-weight: 500;
    font-size  : 1rem;
}

.detail-item span {
    color      : var(--accent-yellow);
    font-weight: 500;
    font-size  : 1rem;
}

.detail-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(3px);
}

/* Values Section */
.values-section {
    padding      : 100px 0;
    background   : var(--card-bg);
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .values-section {
    color: #ffffff;
}

.values-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

body.light-theme .values-grid {
    color: #ffffff;
}

.value-card {
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    text-align     : center;
    transition     : all 0.3s ease;
    backdrop-filter: blur(20px);
}

.value-card:hover {
    transform   : translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow  : 0 20px 50px rgba(255, 107, 53, 0.15);
}

body.light-theme .value-card {
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.value-icon {
    font-size    : 3.5rem;
    margin-bottom: 25px;
    display      : block;
}

body.light-theme .value-icon {
    color: var(--accent-yellow);
}

.value-card h3 {
    color        : var(--primary-orange);
    font-size    : 1.5rem;
    font-weight  : 700;
    margin-bottom: 20px;
}

body.light-theme .value-card h3 {
    color: var(--primary-orange);
}

.value-card p {
    color      : var(--text-secondary);
    line-height: 1.7;
    font-size  : 1rem;
}

body.light-theme .value-card p {
    color: var(--light-text-secondary);
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 100px 0;
}

body.light-theme .tech-stack-section {
    color: #ffffff;
}

.tech-categories {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

body.light-theme .tech-categories {
    color: #ffffff;
}

.tech-category {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    backdrop-filter: blur(20px);
    transition     : all 0.3s ease;
}

.tech-category:hover {
    transform   : translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow  : 0 15px 40px rgba(255, 107, 53, 0.15);
}

body.light-theme .tech-category {
    background: var(--card-bg);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.tech-category h3 {
    color        : var(--primary-orange);
    font-size    : 1.4rem;
    font-weight  : 600;
    margin-bottom: 25px;
}

body.light-theme .tech-category h3 {
    color: var(--primary-orange);
}

.about-tech-tags {
    display  : flex;
    flex-wrap: wrap;
    gap      : 12px;
}

body.light-theme .about-tech-tags {
    color: #ffffff;
}

.about-tech-tag {
    background   : rgba(255, 107, 53, 0.1);
    color        : var(--accent-yellow);
    padding      : 8px 16px;
    border-radius: 15px;
    font-size    : 0.9rem;
    font-weight  : 500;
    border       : 1px solid rgba(255, 107, 53, 0.2);
    transition   : all 0.3s ease;
}

body.light-theme .about-tech-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.about-tech-tag:hover {
    background: rgba(255, 107, 53, 0.2);
    transform : translateY(-2px);
}

body.light-theme .about-tech-tag:hover {
    background: rgba(255, 107, 53, 0.2);
}

.stats-section {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 80px 40px;
    margin         : 80px 0;
    backdrop-filter: blur(20px);
}

.stats-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap                  : 50px;
    text-align           : center;
}

body.light-theme .stats-grid {
    color: #ffffff;
}

.stat-item h4 {
    font-size    : 3.5rem;
    font-weight  : 800;
    color        : var(--primary-orange);
    margin-bottom: 15px;
}

.stat-item p {
    color        : var(--text-secondary);
    font-weight  : 500;
    font-size    : 1.2rem;
    margin-bottom: 10px;
}

/* References & Partners Section */
.references-section {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 80px 40px;
    margin         : 80px auto;
    backdrop-filter: blur(20px);
    max-width      : 1400px;
}

body.light-theme .references-section {
    color: #ffffff;
}

.references-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

body.light-theme .references-grid {
    color: #ffffff;
}

.reference-card {
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 15px;
    padding        : 30px;
    text-align     : center;
    transition     : all 0.3s ease;
    backdrop-filter: blur(20px);
}

body.light-theme .reference-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.reference-card:hover {
    transform   : translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow  : 0 20px 50px rgba(255, 107, 53, 0.15);
}

body.light-theme .reference-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.reference-logo {
    width          : 80px;
    height         : 80px;
    margin         : 0 auto 20px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    background     : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius  : 50%;
    font-size      : 2rem;
    color          : white;
    font-weight    : bold;
}

body.light-theme .reference-logo {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.reference-card h3 {
    color        : var(--primary-orange);
    font-size    : 1.3rem;
    margin-bottom: 15px;
    font-weight  : 700;
}

body.light-theme .reference-card h3 {
    color: var(--primary-orange);
}

.reference-card p {
    color      : var(--text-secondary);
    line-height: 1.7;
    font-size  : 0.95rem;
}

body.light-theme .reference-card p {
    color: #cccccc;
}

.partners-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap                  : 30px;
    margin-top           : 40px;
}

body.light-theme .partners-grid {
    color: #ffffff;
}

.partner-logo {
    background   : rgba(255, 255, 255, 0.05);
    border       : 1px solid var(--border-glass);
    border-radius: 10px;
    padding      : 25px 15px;
    text-align   : center;
    transition   : all 0.3s ease;
}

body.light-theme .partner-logo {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.partner-logo:hover {
    border-color: var(--primary-orange);
    transform   : translateY(-5px);
    box-shadow  : 0 10px 30px rgba(255, 107, 53, 0.1);
}

body.light-theme .partner-logo:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo span {
    font-size: 2.5rem;
    color    : var(--text-secondary);
}

body.light-theme .partner-logo span {
    color: #cccccc;
}

/* Services Navigation */
.service-nav {
    padding      : 40px 0;
    background   : var(--card-bg);
    border-bottom: 1px solid var(--border-glass);
}

.service-nav-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 20px;
}

body.light-theme .service-nav-grid {
    color: #ffffff;
}

.service-nav-category {
    background   : rgba(255, 255, 255, 0.02);
    border       : 1px solid var(--border-glass);
    border-radius: 15px;
    padding      : 25px;
    text-align   : center;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

body.light-theme .service-nav-category {
	background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--light-text-secondary);
}

.service-nav-category:hover,
.service-nav-category.active {
    border-color: var(--primary-orange);
    background  : rgba(255, 107, 53, 0.1);
    transform   : translateY(-5px);
}

body.light-theme .service-nav-category:hover,
body.light-theme .service-nav-category.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.service-nav-icon {
    font-size    : 2.5rem;
    display      : block;
    margin-bottom: 15px;
}

body.light-theme .service-nav-icon {
    color: var(--accent-yellow);
}

.service-nav-category h3 {
    color        : var(--primary-orange);
    font-size    : 1.2rem;
    margin-bottom: 8px;
}

body.light-theme .service-nav-category h3 {
    color: var(--primary-orange);
}

.service-nav-category p {
    color    : var(--text-secondary);
    font-size: 0.9rem;
}

body.light-theme .service-nav-category p {
    color: var(--light-text-secondary);
}

.service-category-section {
    padding: 80px 0;
}

body.light-theme .service-category-section {
    color: #ffffff;
}

.category-title {
    font-size    : 2.5rem;
    font-weight  : 700;
    text-align   : center;
    margin-bottom: 60px;
    color        : var(--primary-orange);
}

body.light-theme .category-title {
    color: var(--primary-orange);
}

/* Datacorp Specific Styles */
.datacorp-hero {
    background   : var(--card-bg);
    border       : 1px solid var(--border-glass);
    border-radius: 20px;
    padding      : 60px;
    margin-bottom: 60px;
}

body.light-theme .datacorp-hero {
    background: #fff;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.datacorp-features-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 30px;
    margin               : 40px 0;
}

body.light-theme .datacorp-features-grid {
    color: #ffffff;
}

.feature-category h4 {
    color        : var(--primary-orange);
    font-size    : 1.1rem;
    margin-bottom: 15px;
}

body.light-theme .feature-category h4 {
    color: var(--primary-orange);
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    color        : var(--text-secondary);
    margin-bottom: 8px;
    padding-left : 15px;
    position     : relative;
}

body.light-theme .feature-category li {
    color: var(--light-text-secondary);
}

.feature-category li::before {
    content : '✓';
    color   : var(--accent-yellow);
    position: absolute;
    left    : 0;
}

body.light-theme .feature-category li::before {
    color: var(--accent-yellow);
}

.datacorp-cta {
    display        : flex;
    gap            : 20px;
    justify-content: center;
    margin-top     : 40px;
}

body.light-theme .datacorp-cta {
    color: #ffffff;
}

.services-section {
    padding: 80px 0;
}

body.light-theme .services-section {
    color: #ffffff;
}

.section-title {
    font-size    : 2.5rem;
    font-weight  : 700;
    text-align   : center;
    margin-bottom: 20px;
    color        : var(--text-primary);
}

.section-subtitle {
    text-align   : center;
    color        : var(--text-secondary);
    font-size    : 1.2rem;
    margin-bottom: 60px;
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
}

.services-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap                  : 40px;
    margin-bottom        : 80px;
}

.service-card {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 50px;
    transition     : all 0.4s ease;
    backdrop-filter: blur(20px);
    position       : relative;
    overflow       : hidden;
    display        : flex;
    flex-direction : column;
}

.service-card:hover {
    transform   : translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow  : 0 25px 60px rgba(255, 107, 53, 0.2);
}

.service-header {
    display      : flex;
    align-items  : center;
    gap          : 20px;
    margin-bottom: 30px;
}

body.light-theme .service-header {
    color: #ffffff;
}

.service-icon {
    font-size: 3rem;
}

.service-card h3 {
    font-size  : 1.8rem;
    font-weight: 700;
    color      : var(--primary-orange);
}

.service-card .price {
    color      : var(--accent-yellow);
    font-weight: 600;
    font-size  : 1.1rem;
}

.service-description {
    color        : var(--text-secondary);
    line-height  : 1.7;
    margin-bottom: 30px;
    font-size    : 1.1rem;
    flex-grow    : 1;
    min-height   : 120px;
}

body.light-theme .service-description {
    color: #cccccc;
}

.service-features {
    list-style   : none;
    margin-bottom: 30px;
    flex-grow    : 1;
    min-height   : 200px;
}

body.light-theme .service-features {
    color: #ffffff;
}

.service-features li {
    display      : flex;
    align-items  : center;
    gap          : 12px;
    margin-bottom: 12px;
    color        : var(--text-secondary);
    padding      : 10px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.service-features li::before {
    content    : '✓';
    color      : var(--accent-yellow);
    font-weight: bold;
    font-size  : 1.2rem;
}

.service-technologies {
    margin-bottom: 30px;
}

body.light-theme .service-technologies {
    color: #ffffff;
}

.service-technologies h4 {
    color        : var(--primary-orange);
    font-size    : 1.1rem;
    margin-bottom: 15px;
    font-weight  : 600;
}

.tech-tags {
    display  : flex;
    flex-wrap: wrap;
    gap      : 10px;
}

body.light-theme .tech-tags {
    color: #ffffff;
}

.tech-tag {
    background   : var(--glass-bg);
    color        : var(--text-primary);
    padding      : 6px 12px;
    border-radius: 15px;
    font-size    : 0.9rem;
    border       : 1px solid var(--border-glass);
}

.service-cta {
    display  : flex;
    gap      : 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

body.light-theme .service-cta {
    color: #ffffff;
}

.btn-primary,
.btn-secondary {
    display        : inline-flex;
    align-items    : center;
    gap            : 8px;
    padding        : 12px 24px;
    border-radius  : var(--surface-radius);
    text-decoration: none;
    font-weight    : 600;
    transition     : all 0.3s ease;
    font-size      : 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color     : white;
}

.btn-primary:hover {
    transform : translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    border    : 1px solid var(--border-glass);
    color     : var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    background  : rgba(255, 107, 53, 0.1);
}

/* Process Section */
.process-section {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 80px 40px;
    margin         : 80px auto;
    backdrop-filter: blur(20px);
    max-width      : 1400px;
}

body.light-theme .process-section {
    color: #ffffff;
}

.process-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

body.light-theme .process-grid {
    color: #ffffff;
}

.process-step {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 25px;
    padding        : 50px 40px;
    transition     : all 0.4s ease;
    text-align     : center;
    box-shadow     : 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(25px);
    position       : relative;
    overflow       : hidden;
}

body.light-theme .process-step {
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: var(--light-text-secondary);
}

.process-step:hover {
    transform   : translateY(-15px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow  : 0 25px 50px rgba(255, 107, 53, 0.3);
}

body.light-theme .process-step:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.process-step::before {
    content         : '';
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 4px;
    background      : linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform       : scaleX(0);
    transform-origin: left;
    transition      : transform 0.4s ease;
}

body.light-theme .process-step::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.process-step:hover::before {
    transform: scaleX(1);
}

body.light-theme .process-step:hover::before {
    transform: scaleX(1);
}

.process-number {
    width          : 80px;
    height         : 80px;
    font-size      : 2rem;
    margin         : 0 auto 30px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    background     : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius  : 50%;
    color          : white;
    font-weight    : 800;
    box-shadow     : 0 8px 20px rgba(255, 107, 53, 0.4);
    position       : relative;
    z-index        : 1;
}

body.light-theme .process-number {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.process-step h3 {
    font-size    : 1.8rem;
    margin-bottom: 25px;
    color        : var(--primary-orange);
    font-weight  : 700;
}

body.light-theme .process-step h3 {
    color: var(--primary-orange);
}

.process-step p {
    font-size  : 1.2rem;
    color      : var(--text-secondary);
    line-height: 1.8;
}

body.light-theme .process-step p {
    color: #cccccc;
}

/* Enhanced Shop Styles */
.shop-header {
    text-align   : center;
    margin-bottom: 50px;
    position     : relative;
}

body.light-theme .shop-header {
    color: #ffffff;
}

.shop-header::after {
    content      : '';
    display      : block;
    width        : 100px;
    height       : 4px;
    background   : linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    margin       : 20px auto;
    border-radius: 2px;
}

.shop-layout {
    display: flex;
    gap    : 40px;
    margin : 40px 0;
}

body.light-theme .shop-layout {
    color: #ffffff;
}

.shop-filters {
    flex           : 0 0 280px;
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 30px;
    backdrop-filter: blur(20px);
    height         : fit-content;
    box-shadow     : 0 10px 30px rgba(0, 0, 0, 0.2);
    position       : sticky;
    top            : 150px;
}

body.light-theme .shop-filters {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.shop-filters h3 {
    color        : var(--primary-orange);
    margin-bottom: 25px;
    font-size    : 1.5rem;
    text-align   : center;
    position     : relative;
}

body.light-theme .shop-filters h3 {
    color: var(--primary-orange);
}

.shop-filters h3::after {
    content      : '';
    display      : block;
    width        : 50px;
    height       : 3px;
    background   : var(--primary-orange);
    margin       : 10px auto;
    border-radius: 2px;
}

body.light-theme .shop-filters h3::after {
    background: var(--primary-orange);
}

.filter-group {
    margin-bottom : 25px;
    padding-bottom: 15px;
    border-bottom : 1px solid var(--border-glass);
}

body.light-theme .filter-group {
    border-bottom: 1px solid #333333;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    color         : var(--text-primary);
    margin-bottom : 15px;
    font-size     : 1.1rem;
    padding-bottom: 8px;
    border-bottom : 1px solid var(--border-glass);
    font-weight   : 600;
    display       : flex;
    align-items   : center;
    gap           : 10px;
}

body.light-theme .filter-group h4 {
    color: var(--light-text-secondary);
    border-bottom: 1px solid #333333;
}

.filter-option {
    display      : flex;
    align-items  : center;
    margin-bottom: 12px;
    padding      : 8px;
    border-radius: 8px;
    transition   : all 0.2s ease;
    cursor       : pointer;
}

body.light-theme .filter-option {
    background: #fff;
}

.filter-option:hover {
    background: rgba(255, 107, 53, 0.1);
    transform : translateX(5px);
}

body.light-theme .filter-option:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
}

.filter-option input[type="checkbox"] {
    margin-right : 12px;
    width        : 18px;
    height       : 18px;
    accent-color : var(--primary-orange);
    cursor       : pointer;
    position     : relative;
    appearance   : none;
    border       : 2px solid var(--border-glass);
    border-radius: 4px;
    outline      : none;
    transition   : all 0.2s ease;
}

body.light-theme .filter-option input[type="checkbox"] {
    border: 2px solid #444444;
}

.filter-option input[type="checkbox"]:checked {
    background  : var(--primary-orange);
    border-color: var(--primary-orange);
}

body.light-theme .filter-option input[type="checkbox"]:checked {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.filter-option input[type="checkbox"]:checked::after {
    content    : '\2713';
    position   : absolute;
    top        : 50%;
    left       : 50%;
    transform  : translate(-50%, -50%);
    color      : white;
    font-size  : 14px;
    font-weight: bold;
}

.filter-option label {
    color    : var(--text-secondary);
    cursor   : pointer;
    flex     : 1;
    font-size: 0.95rem;
}

body.light-theme .filter-option label {
    color: #cccccc;
}

.filter-option input[type="checkbox"]:checked+label {
    color      : var(--text-primary);
    font-weight: 500;
}

body.light-theme .filter-option input[type="checkbox"]:checked+label {
    color: var(--light-text-secondary);
}

.shop-products {
    flex: 1;
}

body.light-theme .shop-products {
    color: #ffffff;
}

.products-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap                  : 30px;
}

body.light-theme .products-grid {
    color: #ffffff;
}

.product-card {
    background   : rgba(20, 20, 20, 0.6);
    border       : 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding      : 25px;
    transition   : all 0.3s ease;
    text-align   : center;
    box-shadow   : 0 5px 15px rgba(0, 0, 0, 0.1);
    position     : relative;
    overflow     : hidden;
}

body.light-theme .product-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.product-card::before {
    content         : '';
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 4px;
    background      : linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform       : scaleX(0);
    transform-origin: left;
    transition      : transform 0.3s ease;
}

body.light-theme .product-card::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.product-card:hover::before {
    transform: scaleX(1);
}

body.light-theme .product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform   : translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow  : 0 15px 30px rgba(255, 107, 53, 0.2);
}

body.light-theme .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width        : 100%;
    height       : 200px;
    object-fit   : cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display      : block;
    margin-left  : auto;
    margin-right : auto;
    transition   : all 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

body.light-theme .product-card img {
    border-radius: 10px;
}

.product-card h3 {
    font-size  : 1.3rem;
    margin     : 20px 0 10px;
    color      : var(--primary-orange);
    font-weight: 600;
}

body.light-theme .product-card h3 {
    color: var(--primary-orange);
}

.product-card .price {
    font-size              : 1.4rem;
    font-weight            : 700;
    color                  : var(--text-primary);
    margin-bottom          : 20px;
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
}

body.light-theme .product-card .price {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card p {
    color        : var(--text-secondary);
    margin-bottom: 20px;
    font-size    : 0.95rem;
    line-height  : 1.6;
}

body.light-theme .product-card p {
    color: #cccccc;
}

.btn-outline {
    display        : inline-block;
    padding        : 12px 25px;
    background     : transparent;
    border         : 2px solid var(--primary-orange);
    color          : var(--primary-orange);
    text-decoration: none;
    border-radius  : 12px;
    font-weight    : 600;
    transition     : all 0.3s ease;
    font-size      : 0.95rem;
}

body.light-theme .btn-outline {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background  : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color       : white;
    border-color: transparent;
    transform   : translateY(-3px);
    box-shadow  : 0 10px 20px rgba(255, 107, 53, 0.3);
}

body.light-theme .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.filter-apply-btn {
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    border       : none;
    padding      : 12px 20px;
    border-radius: 30px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : all 0.3s ease;
    width        : 100%;
    font-size    : 1rem;
    margin-top   : 10px;
}

body.light-theme .filter-apply-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.filter-apply-btn:hover {
    transform : translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

body.light-theme .filter-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-tag {
    position     : absolute;
    top          : 15px;
    right        : 15px;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    padding      : 5px 12px;
    border-radius: 20px;
    font-size    : 0.8rem;
    font-weight  : 600;
    z-index      : 2;
}

body.light-theme .product-tag {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

body.light-theme .contact-section {
    color: #ffffff;
}

.contact-grid {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 60px;
    margin-bottom        : 80px;
    align-items          : stretch;
}

body.light-theme .contact-grid {
    color: #ffffff;
}

.contact-form-container {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 50px;
    backdrop-filter: blur(20px);
    display        : flex;
    flex-direction : column;
    height         : 100%;
    justify-content: space-between;
}

.contact-form-container h2 {
    color        : var(--primary-orange);
    font-size    : 1.8rem;
    margin-bottom: 30px;
    font-weight  : 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display      : block;
    color        : var(--text-primary);
    margin-bottom: 8px;
    font-weight  : 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width        : 100%;
    padding      : 15px;
    background   : rgba(255, 255, 255, 0.05);
    border       : 1px solid var(--border-glass);
    border-radius: 10px;
    color        : var(--text-primary);
    font-size    : 1rem;
    transition   : all 0.3s ease;
    font-family  : inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline     : none;
    border-color: var(--primary-orange);
    background  : rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group textarea {
    resize    : vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color     : var(--text-primary);
}

.submit-btn {
    width        : 100%;
    padding      : 15px;
    background   : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color        : white;
    border       : none;
    border-radius: 10px;
    font-size    : 1.1rem;
    font-weight  : 600;
    cursor       : pointer;
    transition   : all 0.3s ease;
    margin-top   : 20px;
}

.submit-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Contact Info */
.contact-info {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 50px;
    backdrop-filter: blur(20px);
    display        : flex;
    flex-direction : column;
    height         : 100%;
    justify-content: space-between;
}

.contact-info h2 {
    color        : var(--primary-orange);
    font-size    : 1.8rem;
    margin-bottom: 30px;
    font-weight  : 700;
}

.contact-item {
    display      : flex;
    align-items  : center;
    gap          : 20px;
    margin-bottom: 30px;
    padding      : 25px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border-left  : 4px solid var(--primary-orange);
    text-align   : center;
    justify-content: center;
}

.contact-icon {
    font-size    : 2.5rem;
    color        : var(--accent-yellow);
    min-width    : 50px;
    text-align   : center;
    display      : flex;
    align-items  : center;
    justify-content: center;
}

body.light-theme .contact-icon {
    color: var(--accent-yellow);
}

.contact-details h3 {
    color        : var(--text-primary);
    font-size    : 1.2rem;
    margin-bottom: 8px;
    font-weight  : 600;
    text-align   : center;
}

.contact-details p {
    color      : var(--text-secondary);
    line-height: 1.6;
    text-align : center;
}

.contact-details a {
    color          : var(--primary-orange);
    text-decoration: none;
    transition     : color 0.3s ease;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Office Hours */
.office-hours {
    background   : rgba(255, 255, 255, 0.02);
    padding      : 30px;
    border-radius: 15px;
    margin-top   : 30px;
    flex-grow    : 1;
    display      : flex;
    flex-direction: column;
    align-items   : center;
}

.office-hours h3 {
    color        : var(--primary-orange);
    font-size    : 1.3rem;
    margin-bottom: 20px;
    font-weight  : 600;
}

.hours-grid {
    display: grid;
    gap    : 15px;
    flex-grow: 1;
    align-content: center;
    width: 100%;
    text-align: center;
}

.hours-item {
    display        : flex;
    justify-content: space-between;
    padding        : 12px 0;
    border-bottom  : 1px solid var(--border-glass);
    align-items    : center;
    text-align     : center;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color      : var(--text-primary);
    font-weight: 500;
}

.hours-time {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    background     : var(--card-bg);
    border         : 1px solid var(--border-glass);
    padding        : 60px;
    margin         : 0;
    backdrop-filter: blur(20px);
}

body.light-theme .faq-section {
    color: #ffffff;
}

.faq-section h2 {
    text-align   : center;
    color        : var(--primary-orange);
    font-size    : 2.5rem;
    margin-bottom: 50px;
    font-weight  : 700;
}

.faq-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap                  : 30px;
}

body.light-theme .faq-grid {
    color: #ffffff;
}

.faq-item {
    background   : rgba(255, 255, 255, 0.02);
    padding      : 30px;
    border-radius: 15px;
    border       : 1px solid var(--border-glass);
}

body.light-theme .faq-item {
    color: #ffffff;
    background: #fff;
}

.faq-item h3 {
    color        : var(--primary-orange);
    font-size    : 1.2rem;
    margin-bottom: 15px;
    font-weight  : 600;
}
.faq-item p {
    color      : var(--text-secondary);
    line-height: 1.6;
}
body.light-theme .faq-item p {
    color      : var(--light-text-secondary);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding      : 100px 0;
    background   : var(--card-bg);
    border-top   : 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

body.light-theme .map-section {
    color: #ffffff;
}

.location-grid {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 60px;
    margin-top           : 60px;
}

body.light-theme .location-grid {
    color: #ffffff;
}

.map-container {
    position     : relative;
    border-radius: 20px;
    overflow     : hidden;
    border       : 1px solid var(--border-glass);
    box-shadow   : 0 10px 40px rgba(0, 0, 0, 0.2);
    height       : 100%;
    min-height   : 500px;
}

.map-overlay {
    position: absolute;
    top     : 20px;
    right   : 20px;
}

body.light-theme .map-overlay {
    color: #ffffff;
}

.map-btn {
    display        : inline-flex;
    align-items    : center;
    gap            : 8px;
    padding        : 12px 20px;
    background     : var(--primary-orange);
    color          : white;
    text-decoration: none;
    border-radius  : 25px;
    font-weight    : 600;
    font-size      : 0.9rem;
    transition     : all 0.3s ease;
    box-shadow     : 0 5px 15px rgba(255, 107, 53, 0.3);
}

body.light-theme .map-btn {
    color: white;
}

.map-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.location-card {
    background     : rgba(255, 255, 255, 0.02);
    border         : 1px solid var(--border-glass);
    border-radius  : 20px;
    padding        : 40px;
    backdrop-filter: blur(20px);
}

body.light-theme .location-card {
    color: #ffffff;
}

.location-header {
    display       : flex;
    align-items   : flex-start;
    gap           : 20px;
    margin-bottom : 30px;
    padding-bottom: 20px;
    border-bottom : 1px solid var(--border-glass);
}

body.light-theme .location-header {
    color: #ffffff;
}

.location-icon {
    font-size    : 2.5rem;
    padding      : 15px;
    background   : rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border       : 1px solid rgba(255, 107, 53, 0.2);
}

body.light-theme .location-icon {
    color: #ffffff;
}

.location-header h3 {
    color        : var(--primary-orange);
    font-size    : 1.5rem;
    margin-bottom: 5px;
}

.location-header p {
    color : var(--text-secondary);
    margin: 0;
}

.location-details {
    margin-bottom: 30px;
}

body.light-theme .location-details {
    color: #ffffff;
}

.detail-item {
    display      : flex;
    align-items  : center;
    gap          : 20px;
    margin-bottom: 25px;
    padding      : 20px;
    background   : rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border       : 1px solid var(--border-glass);
    text-align   : left;
}

body.light-theme .detail-item {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    font-size : 2.5rem;
    min-width : 50px;
    text-align: center;
}

.detail-item strong {
    color        : var(--primary-orange);
    font-size    : 1rem;
    margin-bottom: 5px;
    display      : block;
}

.detail-item p {
    color      : var(--text-secondary);
    margin     : 0;
    line-height: 1.6;
}

.location-actions {
    display       : flex;
    flex-direction: column;
    gap           : 12px;
}

.contact-action-btn {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
    padding        : 15px 20px;
    background     : var(--glass-bg);
    border         : 1px solid var(--border-glass);
    color          : var(--text-primary);
    text-decoration: none;
    border-radius  : 12px;
    font-weight    : 600;
    transition     : all 0.3s ease;
    backdrop-filter: blur(20px);
}

body.light-theme .contact-action-btn {
    color: #ffffff;
}

.contact-action-btn:hover {
    border-color: var(--primary-orange);
    color       : var(--primary-orange);
    transform   : translateY(-2px);
    box-shadow  : 0 8px 25px rgba(255, 107, 53, 0.2);
}

.schedule-btn {
    background  : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: transparent;
    color       : white;
}

.schedule-btn:hover {
    color     : white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Contact Header */
.page-header {
    padding   : 150px 0 80px;
    text-align: center;
    position  : relative;
}

.page-header::before {
    content      : '';
    position     : absolute;
    top          : -50px;
    left         : 50%;
    transform    : translateX(-50%);
    width        : 300px;
    height       : 300px;
    background   : radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity      : 0.1;
    border-radius: 50%;
    filter       : blur(40px);
}

.container {
    max-width: 1400px;
    margin   : 0 auto;
    padding  : 0 20px;
    position : relative;
    z-index  : 2;
}

.page-header h1 {
    font-size              : clamp(2.5rem, 6vw, 4rem);
    font-weight            : 800;
    background             : linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    margin-bottom          : 20px;
}

.page-header p {
    font-size: 1.3rem;
    color    : var(--text-secondary);
    max-width: 700px;
    margin   : 0 auto;
}

/* Cookie Policy Design */
.legal-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 150px 20px 80px;
        }

body.light-theme .legal-container {
    color: #ffffff;
}

        .legal-content {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 60px;
            backdrop-filter: blur(20px);
        }

        body.light-theme .legal-content {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            color: #ffffff;
        }

        .legal-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.light-theme .legal-title {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .legal-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        body.light-theme .legal-subtitle {
            color: var(--light-text-secondary);
        }

        .section {
            margin-bottom: 40px;
        }

        body.light-theme .section {
            color: #ffffff;
        }

        .section h2 {
            color: var(--primary-orange);
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        body.light-theme .section h2 {
            color: var(--primary-orange);
        }

        .section h3 {
            color: var(--text-primary);
            font-size: 1.4rem;
            margin-bottom: 15px;
            margin-top: 25px;
            font-weight: 600;
        }

        body.light-theme .section h3 {
            color: var(--text-primary);
        }

        .section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        body.light-theme .section p {
            color: var(--light-text-secondary);
        }

        .section ul {
            color: var(--text-secondary);
            margin: 15px 0;
            padding-left: 25px;
        }

        body.light-theme .section ul {
            color: var(--light-text-secondary);
        }

        .section li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        body.light-theme .section li {
            color: var(--light-text-secondary);
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            overflow: hidden;
        }

        body.light-theme .cookie-table {
            background: #fff;
        }

        .cookie-table th,
        .cookie-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-glass);
        }

        body.light-theme .cookie-table th,
        body.light-theme .cookie-table td {
            border-bottom: 1px solid #333333;
        }

        .cookie-table th {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
            font-weight: 600;
        }

        body.light-theme .cookie-table th {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
        }

        .cookie-table td {
            color: var(--text-secondary);
        }

        body.light-theme .cookie-table td {
            color: var(--light-text-secondary);
        }

        .cookie-table tr:last-child td {
            border-bottom: none;
        }

        .contact-info {
            background: rgba(255, 107, 53, 0.05);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }

        body.light-theme .contact-info {
            background: #fff;
            border: 1px solid var(--border-glass);
            color: #ffffff;
        }

        .contact-info h3 {
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        body.light-theme .contact-info h3 {
            color: var(--primary-orange);
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        body.light-theme .contact-info p {
            color: var(--light-text-secondary);
        }

        .contact-info a {
            color: var(--primary-orange);
            text-decoration: none;
        }

        body.light-theme .contact-info a {
            color: var(--primary-orange);
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        body.light-theme .contact-info a:hover {
            text-decoration: underline;
        }

/* Product Page Design */

.product-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

body.light-theme .product-container {
    color: #ffffff;
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

body.light-theme .breadcrumb {
    color: #cccccc;
}

.breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
}

body.light-theme .breadcrumb a {
    color: var(--primary-orange);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

body.light-theme .breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

.product-header {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

body.light-theme .product-header {
    color: #ffffff;
}

/* Minimalist Gallery Section */
.product-gallery {
    flex: 1;
    min-width: 300px;
}

body.light-theme .product-gallery {
    color: #ffffff;
}

.gallery-main {
    width: 100%;
    height: 420px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

body.light-theme .gallery-main {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-main img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
}

body.light-theme .gallery-thumbnails {
    color: #ffffff;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .thumbnail {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333333;
}

.thumbnail:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange);
}

body.light-theme .thumbnail:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange);
}

.thumbnail.active {
    border: 2px solid var(--primary-orange);
}

body.light-theme .thumbnail.active {
    border: 2px solid var(--primary-orange);
}

.thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Product Info Section */
.product-info {
    flex: 1;
    min-width: 300px;
}

body.light-theme .product-info {
    color: #ffffff;
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

body.light-theme .product-info h1 {
    color: var(--light-text-primary);
}

/* Simple Top-Right Pricing Badge */
.pricing-section {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

body.light-theme .pricing-section {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    text-align: center;
}

body.light-theme .current-price {
    color: var(--primary-orange);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 4px;
}

body.light-theme .original-price {
    color: #cccccc;
}

.discount-badge {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.6rem;
    background: rgba(255, 204, 2, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 3px;
}

body.light-theme .discount-badge {
    color: var(--accent-yellow);
    background: rgba(255, 204, 2, 0.2);
}

/* Main Description (plain text without box) */
.product-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

body.light-theme .product-description {
    color: var(--light-text-secondary);
}

/* Simplified Feature Text (above buttons) */
.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

body.light-theme .feature-text {
    color: var(--light-text-secondary);
}

.feature-text p {
    margin: 0;
}

/* Action Buttons (below feature text) */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

body.light-theme .btn-group {
    color: #ffffff;
}

.btn {
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    flex: 1;
    min-width: 150px;
}

body.light-theme .btn {
    color: var(--light-text-primary);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

body.light-theme .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    background: #ff7b4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

body.light-theme .btn-primary:hover {
    background: var(--light-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

body.light-theme .btn-outline {
    background: transparent;
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

body.light-theme .btn-outline:hover {
    background: var(--light-element-bg);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--light-shadow-strong);
}

/* Feature List (for tabs section) */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

body.light-theme .feature-list {
    color: #ffffff;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

body.light-theme .feature-list li {
    color: #cccccc;
    background: rgba(30, 30, 30, 0.8);
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: bold;
}

body.light-theme .feature-list li::before {
    color: var(--primary-orange);
}

/* Tabs Section */
.product-details {
    margin: 80px 0;
}

body.light-theme .product-details {
    color: #ffffff;
}

.details-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

body.light-theme .details-tabs {
    border-bottom: 1px solid #333333;
}

.tab {
    padding: 15px 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.95rem;
}

body.light-theme .tab {
    color: var(--light-text-secondary);
}

.tab.active {
    color: var(--primary-orange);
}

body.light-theme .tab.active {
    color: var(--primary-orange);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
}

body.light-theme .tab.active::after {
    background: var(--primary-orange);
}

.tab-content {
    display: none;
}

body.light-theme .tab-content {
    color: #ffffff;
}

.tab-content.active {
    display: block;
}

/* Specifications and Description Content */
.specifications, .description-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

body.light-theme .specifications, body.light-theme .description-content {
    color: #cccccc;
}

.specifications h3, .description-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

body.light-theme .specifications h3, body.light-theme .description-content h3 {
    color: #ffffff;
}

.specifications p, .description-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

body.light-theme .specifications p, body.light-theme .description-content p {
    color: var(--light-text-secondary);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 8px;
    overflow: hidden;
}

body.light-theme .spec-table {
    background: rgba(30, 30, 30, 0.8);
}

.spec-table th {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    text-align: left;
    padding: 14px;
    font-weight: 500;
    font-size: 0.95rem;
}

body.light-theme .spec-table th {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
}

.spec-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

body.light-theme .spec-table td {
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.related-products {
    margin: 80px 0;
}

body.light-theme .related-products {
    color: #ffffff;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}

body.light-theme .section-title {
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

body.light-theme .products-grid {
    color: #ffffff;
}

.product-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

body.light-theme .product-card {
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

body.light-theme .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--primary-orange);
    font-weight: 500;
}

body.light-theme .product-card h3 {
    color: var(--primary-orange);
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

body.light-theme .product-card .price {
    color: #ffffff;
}

.product-card .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: auto;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.light-theme .product-card p {
    color: var(--light-text-secondary);
}

/* Pulse Animation for Pricing Badge */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Glow Animation for Pricing Emblem */
@keyframes glow {
    0% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 8px 35px rgba(255, 107, 53, 0.6);
    }
}

.comparison-note strong {
    color: var(--primary-orange);
}

/* New Contact Page Styles */

.new-contact-section {
    padding: 60px 0 100px;
}

body.light-theme .new-contact-section {
    color: #ffffff;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

body.light-theme .contact-content-grid {
    color: #ffffff;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

body.light-theme .contact-methods {
    color: #ffffff;
}

.contact-method-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(20px);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

body.light-theme .contact-method-card {
    background: var(--light-container-1);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

body.light-theme .contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.method-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .method-icon {
    color: var(--accent-yellow);
}

.method-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

body.light-theme .method-content h3 {
    color: var(--text-primary);
}

.method-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

body.light-theme .method-content p {
    color: var(--light-text-secondary);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.light-theme .contact-links {
    color: #ffffff;
}

.contact-links a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem; /* Increased font size */
    font-weight: 500; /* Added font weight for better readability */
}

body.light-theme .contact-links a {
    color: var(--primary-orange);
}

.contact-links a:hover {
    text-decoration: underline;
}

body.light-theme .contact-links a:hover {
    text-decoration: underline;
}

.contact-links p {
    color: var(--text-secondary);
    font-size: 1.1rem; /* Increased font size */
    line-height: 1.5;
    margin: 0;
    font-weight: 500; /* Added font weight for better readability */
}

body.light-theme .contact-links p {
    color: #cccccc;
}

.availability {
    color: var(--accent-yellow) !important;
    font-size: 0.9rem !important;
}

body.light-theme .availability {
    color: var(--accent-yellow) !important;
}

.schedule-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

body.light-theme .schedule-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

body.light-theme .schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

body.light-theme .contact-form-section {
    background: var(--light-container-1);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.form-header h2 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

body.light-theme .form-header h2 {
    color: var(--primary-orange);
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

body.light-theme .form-header p {
    color: var(--light-text-secondary);
}

.project-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

body.light-theme .project-form {
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

body.light-theme .form-row {
    color: #ffffff;
}

.form-field {
    margin-bottom: 20px;
}

body.light-theme .form-field {
    color: #ffffff;
}

.form-field label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

body.light-theme .form-field label {
    color: var(--text-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

body.light-theme .form-field input,
body.light-theme .form-field select,
body.light-theme .form-field textarea {
    background: #fff;
    border: 1px solid var(--border-glass);
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

body.light-theme .form-field input:focus,
body.light-theme .form-field select:focus,
body.light-theme .form-field textarea:focus {
    border-color: var(--primary-orange);
    background: rgba(0,0,0,0.02);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-secondary);
}

body.light-theme .form-field input::placeholder,
body.light-theme .form-field textarea::placeholder {
    color: #aaaaaa;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    color: var(--text-primary); /* Ensured text is readable in both themes */
    background-color: rgba(255, 255, 255, 0.05); /* Added background color for better visibility */
}

body.light-theme .form-field select {
    background: #fff;
    border: 1px solid var(--border-glass);
    color: #ccc;
}

.form-field select option {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding: 10px;
}

body.light-theme .form-field select option {
    background: #ffffff;
    color: #1a1a1a;
}

.form-checkbox {
    margin-bottom: 5px; /* Further reduced spacing */
}

body.light-theme .form-checkbox {
    color: #ffffff;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

body.light-theme .checkbox-container {
    color: var(--light-text-secondary);
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glass);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    margin-top: 2px;
    cursor: pointer;
}

body.light-theme .checkbox-container input[type="checkbox"] {
    border: 2px solid var(--border-glass);
    background: #fff;
}

.checkbox-container input[type="checkbox"]:checked {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

body.light-theme .checkbox-container input[type="checkbox"]:checked {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.light-theme .checkbox-container input[type="checkbox"]:checked::after {
    color: #ffffff;
}

.required {
    color: var(--primary-orange);
}

body.light-theme .required {
    color: var(--primary-orange);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.light-theme .submit-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

body.light-theme .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.business-hours-section {
    margin: 80px 0 100px;
    text-align: center;
}

body.light-theme .business-hours-section {
    color: #ffffff;
}

.business-hours-section h2 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

body.light-theme .business-hours-section h2 {
    color: var(--primary-orange);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

body.light-theme .hours-grid {
    color: #ffffff;
}

.hours-item {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

body.light-theme .hours-item {
    background: var(--light-container-1);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.hours-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

body.light-theme .hours-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.day {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

body.light-theme .day {
    color: var(--text-primary);
}

.time {
    color: var(--text-secondary);
    font-size: 1rem;
}

body.light-theme .time {
    color: var(--light-text-secondary);
}

.location-section {
    margin-bottom: 80px;
}

body.light-theme .location-section {
    color: #ffffff;
}

.location-section h2 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

body.light-theme .location-section h2 {
    color: var(--primary-orange);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; /* Ensure equal height */
    min-height: 500px; /* Ensure minimum height for proper alignment */
}

body.light-theme .location-content {
    color: #ffffff;
}

.map-container {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-height: 400px; /* Ensure minimum height */
}

body.light-theme .map-container {
    color: #ffffff;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Further reduced gap for better spacing */
}

.contact-detail-item {
    display: flex;
    gap: 8px; /* Even further reduced gap */
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

body.light-theme .contact-detail-item {
    background: var(--light-container-1);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.detail-item {
    display: flex;
    gap: 8px; /* Even further reduced gap */
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

body.light-theme .detail-item {
    background: var(--light-container-1);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    color: #ffffff;
}

.detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

body.light-theme .detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.detail-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    margin-right: 5px; /* Reduced margin for better spacing */
}

body.light-theme .detail-icon {
    color: var(--accent-yellow);
}

.detail-text h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

body.light-theme .detail-text h3 {
    color: var(--text-primary);
}

.detail-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

body.light-theme .detail-text p {
    color: var(--light-text-secondary);
}

.location-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

body.light-theme .location-actions {
    color: #ffffff;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    flex: 1;
    text-align: center;
}

body.light-theme .action-btn {
    background: var(--light-element-bg);
    border: 1px solid var(--light-element-border);
    color: var(--light-text-primary);
    box-shadow: 0 4px 12px var(--light-shadow);
}

.action-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

body.light-theme .action-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--light-shadow-strong);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-content-grid {
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 35px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .contact-form-section,
    .contact-method-card {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .location-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .new-contact-section {
        padding: 40px 0 80px;
    }
    
    .contact-content-grid {
        margin-top: 30px;
    }
    
    .contact-method-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .method-icon {
        margin: 0 auto 15px;
    }
    
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-item {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .detail-icon {
        margin: 0 auto 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-method-card,
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .method-content h3 {
        font-size: 1.2rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 12px;
    }
    
    .submit-button {
        padding: 14px;
        font-size: 1rem;
    }
    
    .business-hours-section h2,
    .location-section h2 {
        font-size: 1.8rem;
    }
    
    .detail-text h3 {
        font-size: 1.2rem;
    }
}

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-category {
        padding: 30px 20px;
    }

    .tech-category h3 {
        font-size: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

@media (max-width: 992px) {
    .shop-layout {
        flex-direction: column;
    }

    .shop-filters {
        flex    : 0 0 auto;
        position: relative;
        top     : 0;
    }
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap                  : 40px;
    }

    .contact-form-container,
    .contact-info {
        padding: 40px 30px;
    }

    .contact-item {
        padding: 20px;
        gap: 15px;
        justify-content: center;
    }

    .contact-icon {
        font-size: 2rem;
        min-width: 40px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .office-hours {
        padding: 25px;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        align-items: center;
    }

    .hours-day,
    .hours-time {
        font-size: 0.9rem;
    }

    .detail-icon {
        font-size: 2rem;
        min-width: 40px;
    }
}

@media (max-width: 576px) {
    .location-actions {
        flex-direction: column;
    }

    .contact-action-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .map-container {
        min-height: 300px;
    }

    .map-overlay {
        top: 10px;
        right: 10px;
    }

    .map-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* DataCorp Comparison Tables */
.comparison-table-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .advantage {
    color: var(--accent-yellow);
    font-weight: 600;
}

.feature-comparison,
.competitor-comparison {
    padding: 80px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.comparison-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.comparison-note p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.comparison-note strong {
    color: var(--primary-orange);
}

body.light-theme .service-nav-category.active p{
    color: var(--light-text-secondary);
}

body.light-theme .service-nav-category:hover p{
    color: var(--light-text-secondary);
}

body.light-theme .service-features li{
    color: var(--light-text-secondary);
}

body.light-theme .breadcrumb{
    color: var(--light-text-secondary);
}

body.light-theme .product-card .btn-outline{
    color: var(--text-primary);
}

.footer-bottom a{
    color: var(--primary-orange);
    text-decoration: none;
}

body.light-theme .feature-comparison .section-subtitle,
body.light-theme .competitor-comparison .section-subtitle{
    color: var(--text-secondary)
}

body.light-theme .feature-comparison .section-title,
body.light-theme .competitor-comparison .section-title{
    background: none !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: inherit !important;
    background-clip: border-box !important;
    color: var(--text-color, #fff) !important;
    font-weight: 600;
}

/* INDEX COMBINED  */
        /* Light theme overrides: net ve tutarlı aydınlık tema paleti */
        body.light-theme {
            background: var(--dark-bg);
            color: var(--text-primary);
        }

        .light-theme {
            /* Marka renkleri değişmeden kalır */
            --primary-orange  : #ff6b35;
            --secondary-orange: #f7931e;
            --accent-yellow   : #ffcc02;

            /* Aydınlık tema yüzeyleri ve metinler */
            --dark-bg         : #ffffff;      /* sayfa arka planı */
            --darker-bg       : #f7f7f9;      /* ikincil yüzeyler */
            --card-bg         : rgba(0, 0, 0, 0.02);
            --glass-bg        : rgba(0, 0, 0, 0.06);
            --text-primary    : #0a0a0a;      /* ana metin */
            --text-secondary  : #b0b0b0;      /* ikincil metin */
            --border-glass    : rgba(0, 0, 0, 0.12);
        }

        /* Light Theme: Navbar net beyaz yüzey ve kontrastlı linkler */
        body.light-theme .main-navbar .main-nav-container,
        body.light-theme .main-nav-container {
            background: #ffffff;
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
        }

        body.light-theme .main-nav-actions,
        body.light-theme .main-nav-action-btn,
        body.light-theme .main-mobile-nav-toggle {
            color: var(--text-primary);
        }

        body.light-theme .main-nav-link {
            color: var(--text-primary);
        }
        body.light-theme .main-nav-link:hover,
        body.light-theme .main-nav-link.active {
            color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.12);
        }

/*CUSTOMIZATION FOR LIGHT THEME*/
body.light-theme .stat-mini
{
	color: var(--primary-orange);
}
body.light-theme .pricing-transparency {
    padding: 100px 0;
	background: var(--light-container-2);

    border-bottom: 1px solid var(--border-glass);
	
}
body.light-theme .services-1 {
    padding: 100px 0;
	background: var(--light-container-1);

    border-bottom: 1px solid var(--border-glass);
}
body.light-theme .services-2 {
    padding: 100px 0;
	background: var(--light-container-2);

    border-bottom: 1px solid var(--border-glass);
}
body.light-theme .cta-container{
	margin:0;
	padding: 100px 0;
	background: var(--light-container-1);

    border-bottom: 1px solid var(--border-glass);
}
body.light-theme .company-records{
    padding: 100px 0;
	background: var(--light-container-1);
	border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}
.datacorp-content>h3{
	color: var(--light-text-secondary);
}

.datacorp-content>p{
	color: var(--light-text-secondary);
}
.process-step>p{
	color: var(--light-text-secondary) !important;
}

.footer
{
	border-radius:0 !important;
}