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

:root {
    --teal-bright: #00FFC8;
    --teal-light: #00D4A3;
    --teal-dark: #00B894;
    --bg-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    min-width: 320px; /* Minimum width for smallest screens */
    padding-top: 80px; /* Space for navbar */
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 200, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Center the menu items */
.nav-logo {
    grid-column: 1;
    justify-self: start;
}

.nav-menu {
    grid-column: 2;
    justify-self: center;
    margin: 0 auto;
}

.nav-right {
    grid-column: 3;
    justify-self: end;
}

/* Tablet responsive - Show hamburger menu */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 30px;
    }
    
    .nav-logo .logo-text {
        font-size: 20px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Show hamburger menu on tablet and mobile */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 16px !important;
        height: 14px !important;
        min-width: 16px !important;
        min-height: 14px !important;
        position: relative !important;
        z-index: 10006 !important; /* Higher than everything */
        pointer-events: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide desktop menu on tablet and mobile */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Ensure nav-right is visible */
    .nav-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 10px !important;
        position: relative !important;
        z-index: 10003 !important;
        width: auto !important;
        min-width: auto !important;
        margin-left: auto !important; /* Push to right side */
        flex-shrink: 0 !important;
    }
    
    /* Hide desktop language selector on tablet/mobile (it's in mobile menu) - FORCE HIDE */
    .nav-right > .language-selector {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Ensure hamburger menu is NOT hidden by language selector */
    .nav-right > .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show language selector inside mobile menu on tablet/mobile */
    .mobile-menu-language-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-language-item .mobile-language-selector {
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-menu-language-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure hamburger lines are visible */
    .hamburger-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--text-white) !important;
        width: 100% !important;
        height: 2px !important;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8; /* Slight fade on hover */
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make logo white */
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 255, 200, 0.6));
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-white);
    background: linear-gradient(90deg, var(--text-white) 0%, var(--teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10005;
    margin-left: auto; /* Push to right side */
}

.language-selector {
    position: relative;
    margin-left: 0;
}

/* Hamburger Menu Button (Hidden on Desktop, Visible on Tablet and Mobile) */
.hamburger-menu {
    /* Always visible by default, hidden on desktop via media query */
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 16px;
    height: 14px;
    min-width: 16px;
    min-height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10006 !important; /* Higher than everything */
    transition: all 0.3s ease;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    margin-left: 15px; /* Space from language selector */
    pointer-events: auto !important;
    align-self: center; /* Center vertically */
}

/* Show hamburger menu on tablet/mobile (1024px and below) */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Desktop: Hide hamburger menu (1025px and above) */
@media (min-width: 1025px) {
    .hamburger-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Show desktop menu on desktop */
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show desktop language selector on desktop - FORCE SHOW */
    .nav-right > .language-selector {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    /* Ensure nav-right is properly displayed on desktop */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        position: relative !important;
        z-index: 10005 !important;
        margin-left: auto !important;
    }
    
    /* Ensure nav-menu is properly displayed on desktop */
    .nav-menu {
        display: flex !important;
        list-style: none !important;
        gap: 40px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-self: center !important;
    }
    
    /* Ensure nav-container uses grid layout on desktop */
    .nav-container {
        display: grid !important;
        grid-template-columns: auto 1fr auto auto !important;
        align-items: center !important;
        gap: 40px !important;
    }
    
    .nav-logo {
        grid-column: 1 !important;
        justify-self: start !important;
    }
    
    .nav-menu {
        grid-column: 2 !important;
        justify-self: center !important;
    }
    
    .nav-right {
        grid-column: 3 !important;
        justify-self: end !important;
    }
    
    .hamburger-menu {
        grid-column: 4 !important;
        justify-self: end !important;
    }
}

/* Tablet and Mobile: Show hamburger menu (1024px and below) */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 16px !important;
        height: 14px !important;
        min-width: 16px !important;
        min-height: 14px !important;
        position: relative !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .hamburger-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--text-white) !important;
        width: 100% !important;
        height: 2px !important;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Perfect X icon when menu is open */
.hamburger-menu.active {
    justify-content: center;
    align-items: center;
}

.hamburger-menu.active .hamburger-line {
    position: absolute;
    margin: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 70px; /* Below navbar */
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000; /* Between navbar and menu */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu (Slides from top) */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 200, 0.2);
    z-index: 10001; /* Higher than navbar (1000) */
    transition: top 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    margin-top: 70px; /* Navbar height */
    pointer-events: none;
}

.mobile-menu.active {
    top: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Mobile menu header removed - no longer needed */
.mobile-menu-header {
    display: none !important;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-link {
    display: block;
    padding: 18px 20px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: rgba(0, 255, 200, 0.05);
    border-left-color: var(--teal-bright);
    color: var(--teal-bright);
    padding-left: 25px;
}

/* Language selector inside menu list */
.mobile-menu-language-item {
    padding: 0;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 255, 200, 0.1);
}

.mobile-menu-language-item .mobile-language-selector {
    width: 100%;
    padding: 0;
}

.mobile-menu-language-toggle {
    width: 100%;
    padding: 18px 20px;
    justify-content: flex-start;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-menu-language-toggle:hover {
    background: rgba(0, 255, 200, 0.05);
    border-left-color: var(--teal-bright);
    color: var(--teal-bright);
}

.mobile-menu-language-dropdown {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: none;
}

.mobile-menu-language-dropdown .language-option {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 255, 200, 0.05);
}

.mobile-menu-language-dropdown .language-option:last-child {
    border-bottom: none;
}

.mobile-menu-language-dropdown .language-option:hover {
    background: rgba(0, 255, 200, 0.1);
}

/* Old mobile-menu-language class (kept for backward compatibility, but not used) */
.mobile-menu-language {
    display: none;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 200, 0.4);
}

.language-toggle.active {
    background: rgba(0, 255, 200, 0.1);
    border-color: var(--teal-bright);
}

.flag-icon {
    font-size: 18px;
    line-height: 1;
}

.language-code {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.language-arrow {
    width: 12px;
    height: 12px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.language-toggle.active .language-arrow {
    transform: rotate(180deg);
    color: var(--teal-bright);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.language-option:hover {
    background: rgba(0, 255, 200, 0.1);
    color: var(--teal-bright);
}

.language-option.active {
    background: rgba(0, 255, 200, 0.15);
    color: var(--teal-bright);
}

.language-option .flag-icon {
    font-size: 20px;
}

.language-name {
    flex: 1;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-bright);
    transition: width 0.3s ease;
    z-index: 1;
}

.nav-link:hover {
    color: var(--teal-bright);
}

.nav-link:hover::after {
    width: 100%;
}

/* Active nav link - underline always visible */
.nav-link.active {
    color: var(--teal-bright) !important;
}

.nav-link.active::after {
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
}

#sphereCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 120px 0 80px 0; /* Remove horizontal padding, use section-container padding instead */
    position: relative;
    z-index: 2;
}

.home-section {
    padding-top: 80px;
}

.section-container {
    max-width: 1600px; /* Same max-width as home container */
    margin: 0 auto; /* Center container */
    padding-left: clamp(20px, 4vw, 60px); /* Same left padding as home container */
    padding-right: clamp(20px, 4vw, 60px);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 40px;
    text-align: left; /* Left aligned */
    letter-spacing: 1px;
}

.section-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: 0; /* Left aligned */
    margin-right: auto;
    text-align: left; /* Left aligned */
}

/* About Us Section - Left aligned */
.about-content {
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.about-text {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Internal Links for SEO */
.internal-link {
    color: var(--teal-bright);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.internal-link:hover {
    color: var(--teal-light);
    border-bottom-color: var(--teal-light);
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(0, 255, 200, 0.2);
    padding: 60px 0 20px;
    backdrop-filter: blur(10px);
    margin-top: 0; /* Directly below wave */
    z-index: 10; /* Ensure footer is visible */
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make logo white */
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 255, 200, 0.6));
}

.footer-company-name {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-white);
    background: linear-gradient(90deg, var(--text-white) 0%, var(--teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    color: var(--teal-bright);
    background: rgba(0, 255, 200, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 255, 200, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.footer-link-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

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

.footer-link-list li {
    margin: 0;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--teal-bright);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--teal-bright);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.legal-note-content-section {
    margin-top: 40px;
}

.privacy-policy-content {
    margin-top: 40px;
}

.privacy-content-text {
    max-width: 900px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.privacy-content-text p {
    margin-bottom: 20px;
}

.privacy-content-text h3 {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.privacy-content-text h4 {
    color: var(--teal-bright);
    font-size: 18px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.privacy-content-text ul,
.privacy-content-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-content-text a {
    color: var(--teal-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-content-text a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

.placeholder-text {
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.6;
    text-align: center;
    padding: 40px 0;
}

.privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 200, 0.2);
}

.privacy-header h3 {
    color: var(--teal-bright);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.privacy-header p {
    margin-bottom: 8px;
    line-height: 1.8;
}

.privacy-header strong {
    color: var(--text-white);
    font-weight: 600;
}

.contact-info-box {
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-info-box p {
    margin-bottom: 8px;
    line-height: 1.8;
}

.contact-info-box strong {
    color: var(--teal-bright);
    font-weight: 600;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.legal-info-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    max-width: 600px;
}

.legal-info-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-3px);
}

.legal-info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-bright);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.legal-info-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
}

.legal-contact-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.legal-contact-link:hover {
    color: var(--teal-bright);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 200, 0.1);
    padding-top: 30px;
    margin-top: 0;
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-legal-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        padding: 0 30px;
    }
    
    .legal-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-info-vertical {
        max-width: 100%;
        gap: 15px;
    }
    
    .legal-info-item {
        padding: 18px 20px;
    }
}

@media (max-width: 1200px) {
    .legal-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0; /* Left aligned - same as home section */
    margin-left: 0;
}

.vision-mission-item {
    padding: 30px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
}

.vision-mission-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--teal-bright);
    margin-bottom: 20px;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns, 2 rows */
    gap: 20px; /* Reduced gap */
    max-width: 900px; /* Reduced max-width for narrower cards */
    margin: 0; /* Left aligned - same as home section */
    margin-left: 0;
}

.project-card {
    padding: 30px 20px; /* Reduced horizontal padding */
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit text color */
    display: block; /* Make it a block element */
    cursor: pointer;
    height: 100%; /* Ensure equal height */
}

.project-card:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
}

.project-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--teal-bright);
    margin-bottom: 15px;
}

.project-description {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Contact */
.contact-info {
    text-align: left; /* Left aligned */
    margin-top: 40px;
    margin-left: 0; /* Left aligned */
}

.contact-item {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-white);
    margin-bottom: 15px;
}

/* Active nav link - duplicate removed, using the one above */

.container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100vh - 80px);
    padding: clamp(30px, 5vw, 80px) clamp(20px, 4vw, 60px);
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    gap: clamp(20px, 4vw, 60px);
    overflow: visible; /* Kesme sorununu önle */
}

.content-left {
    flex: 1;
    max-width: min(600px, 100%);
    z-index: 3;
    text-align: left; /* Yazıları sola hizala */
    padding-top: 5px; /* İçerik yukarı taşındı (20px - 15px) */
    overflow: visible; /* Kesme sorununu önle */
    position: relative;
    margin-top: -230px; /* 90px yukarı taşı (40px + 50px) */
}

.hero-content {
    text-align: left; /* İçeriği sola hizala */
    position: relative;
    z-index: 4; /* Yazıların üstte olmasını sağla */
    overflow: visible; /* Kesme sorununu önle */
    margin-top: -25px; /* 25px yukarı kaydır (15px + 10px) */
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 0; /* Allow flex shrinking */
}

#sphereContainer {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.headline {
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.15; /* Dengeli satır aralığı */
    margin-bottom: 0; /* Tagline ile arasındaki boşluğu tagline'dan al */
    letter-spacing: -1px;
    margin-top: -20px; /* Yukarı taşı */
}

.headline .line-1 {
    background: linear-gradient(90deg, var(--text-white) 0%, var(--text-white) 30%, var(--teal-bright) 60%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0;
    line-height: 1.2;
}

.headline .highlight {
    background: linear-gradient(90deg, var(--teal-bright) 0%, var(--teal-light) 50%, var(--teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 300;
    line-height: 1.5; /* Dengeli satır aralığı */
    margin-bottom: 30px; /* Dengeli boşluk */
    margin-top: 30px; /* Headline ile arasındaki boşluk (line-1 ve line-2 arası ile aynı) */
    letter-spacing: 0.3px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px; /* Renkli bölümler arası dengeli boşluk */
    align-items: baseline; /* Alt hizala */
}

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

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

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

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

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

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

.body-text {
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.8;
    background: linear-gradient(90deg, var(--text-gray) 0%, var(--text-white) 50%, var(--teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    margin-top: -10px; /* Yukarı taşı */
    max-width: 550px;
    letter-spacing: 0.3px;
}

.cta-button {
    background: rgba(0, 255, 200, 0.1);
    border: 2px solid var(--teal-bright);
    color: var(--text-white);
    padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 45px);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--teal-bright);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.3);
}

.wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.waves {
    width: 100%;
    height: 100%;
    animation: waveMove 8s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
    
    .content-left {
        max-width: 100%;
        margin-bottom: 40px;
        margin-top: 0 !important; /* Tablet'te negatif margin'i sıfırla */
        padding-top: 0 !important; /* Tablet'te padding'i sıfırla */
    }
    
    .hero-content {
        margin-top: 0 !important; /* Tablet'te negatif margin'i sıfırla */
    }
    
    .headline {
        margin-top: 0 !important; /* Tablet'te negatif margin'i sıfırla */
    }
    
    .content-right {
        width: 100%;
        min-height: 350px;
    }
    
    .headline {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .body-text {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* Hide 3D orb on mobile */
    #sphereCanvas {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    /* Hide desktop menu on mobile - MUST BE COMPLETELY HIDDEN */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Show hamburger menu button on mobile - MUST BE VISIBLE */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 16px !important;
        height: 14px !important;
        min-width: 16px !important;
        min-height: 14px !important;
        position: relative !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure nav-right is visible on mobile */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10003 !important;
        width: auto !important;
        min-width: auto !important;
        margin-left: auto !important; /* Push to right side */
        flex-shrink: 0 !important;
    }
    
    /* Ensure hamburger lines are visible */
    .hamburger-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--text-white) !important;
        width: 100% !important;
        height: 2px !important;
        min-height: 2px !important;
    }
    
    /* Mobile menu adjustments for top slide */
    .mobile-menu {
        margin-top: 70px !important;
        max-height: calc(100vh - 70px) !important;
        width: 100% !important;
        max-width: 100% !important;
        right: auto !important;
        left: 0 !important;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    /* Hide desktop language selector on mobile (it's in mobile menu) - FORCE HIDE */
    .nav-right > .language-selector {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Show language selector only in mobile menu */
    .mobile-menu-language {
        display: block !important;
    }
    
    /* Ensure mobile menu language selector is visible */
    .mobile-menu-language-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-language-item .mobile-language-selector {
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-menu-language-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .language-toggle {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-code {
        font-size: 11px;
    }
    
    .flag-icon {
        font-size: 16px;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 140px;
    }
    
    .section {
        padding: 100px 20px 60px;
    }
    
    .home-section {
        padding-top: 70px;
    }
    
    .container {
        padding: 30px 20px;
        min-height: calc(100vh - 70px);
    }
    
    .content-left {
        margin-bottom: 30px;
        margin-top: 0 !important; /* Mobilde negatif margin'i sıfırla */
        padding-top: 0 !important; /* Mobilde padding'i sıfırla */
    }
    
    .hero-content {
        margin-top: 0 !important; /* Mobilde negatif margin'i sıfırla */
    }
    
    .content-right {
        min-height: 300px;
    }
    
    .headline {
        font-size: 32px;
        margin-bottom: 20px;
        margin-top: 0 !important; /* Mobilde negatif margin'i sıfırla */
    }
    
    .tagline {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .body-text {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    /* Ensure orb is hidden on small mobile devices */
    #sphereCanvas {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Ensure hamburger menu is ALWAYS visible on small screens */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 16px !important;
        height: 14px !important;
        min-width: 16px !important;
        min-height: 14px !important;
        position: relative !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure nav-right is visible */
    .nav-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 10px !important;
        position: relative !important;
        z-index: 10003 !important;
        width: auto !important;
        min-width: auto !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide desktop menu completely */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .body-text {
        font-size: 13px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .content-right {
        min-height: 250px;
    }
    
    .nav-container {
        padding: 15px 15px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 200, 0.2);
    padding: 20px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--teal-bright);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--teal-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    color: var(--bg-black);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 200, 0.3);
}

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

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

.cookie-btn-policy {
    background: transparent;
    color: var(--teal-bright);
    border: 1px solid rgba(0, 255, 200, 0.3);
}

.cookie-btn-policy:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: var(--teal-bright);
    transform: translateY(-2px);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Support / Help Center Styles */
#support {
    z-index: 10;
    position: relative;
}

#support .section-container {
    margin: 0;
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
    max-width: 100%;
    position: relative;
    z-index: 11;
}

.support-intro {
    text-align: left;
    margin-bottom: 40px;
    color: var(--text-gray);
    font-size: 16px;
}

.support-search {
    position: relative;
    max-width: 600px;
    margin: 0 0 50px 0;
}

.support-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.support-search-input:focus {
    outline: none;
    border-color: var(--teal-bright);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}

.support-search-input::placeholder {
    color: var(--text-gray);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 200, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 200, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--teal-bright);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--teal-bright);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-link {
    color: var(--teal-bright);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: var(--teal-light);
}

.support-contact-box {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 12px;
    text-align: center;
}

.support-contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.support-contact-text {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.support-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-contact-info p {
    color: var(--text-white);
    font-size: 16px;
    margin: 0;
}

.support-contact-info a {
    color: var(--teal-bright);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-contact-info a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

/* Responsive Support Page */
@media (max-width: 768px) {
    .support-search {
        margin-bottom: 30px;
    }
    
    .faq-category-title {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
    
    .support-contact-box {
        padding: 30px 20px;
    }
    
    .support-contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* Data Deletion Form Styles */
.deletion-warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.deletion-warning-box p {
    margin: 0;
    color: var(--text-white);
    line-height: 1.6;
}

.deletion-warning-box strong {
    color: #FFC107;
}

.deletion-form {
    max-width: 800px;
    margin: 40px 0;
    padding: 0;
    background: transparent;
    border: none;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding: 35px;
    background: rgba(0, 255, 200, 0.03);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(0, 255, 200, 0.2);
    background: rgba(0, 255, 200, 0.05);
}

.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 200, 0.1);
}

.form-section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 200, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--teal-bright);
}

.form-section-icon svg {
    width: 24px;
    height: 24px;
}

.form-section-title-group {
    flex: 1;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.form-section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.form-section-content {
    padding-top: 10px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label svg {
    width: 16px;
    height: 16px;
    color: var(--teal-bright);
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Select dropdown styling */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300FFC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Option styling - Chrome, Edge, Safari */
select.form-input option {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    padding: 12px 18px;
    border: none;
}

select.form-input option:hover,
select.form-input option:focus,
select.form-input option:checked {
    background-color: rgba(0, 255, 200, 0.2) !important;
    color: #00FFC8 !important;
}

/* Firefox specific */
@-moz-document url-prefix() {
    select.form-input option {
        background-color: #000000 !important;
        color: #FFFFFF !important;
    }
    
    select.form-input option:checked {
        background-color: rgba(0, 255, 200, 0.3) !important;
        color: #00FFC8 !important;
    }
}

/* Webkit browsers (Chrome, Safari, Edge) */
select.form-input option {
    background: #000000 !important;
    color: #FFFFFF !important;
}

/* For better visibility in dropdown */
select.form-input {
    color-scheme: dark;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal-bright);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

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

.form-hint {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-white);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--teal-bright);
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
    font-size: 14px;
}

.deletion-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-light) 100%);
    border: none;
    border-radius: 8px;
    color: var(--bg-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.deletion-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.4);
}

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

.deletion-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.deletion-submit-btn svg {
    transition: transform 0.3s ease;
}

.deletion-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    line-height: 1.6;
}

.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81C784;
}

.form-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #EF5350;
}

.form-message a {
    color: var(--teal-bright);
    text-decoration: underline;
}

.alternative-contact {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
}

.alternative-contact h4 {
    color: var(--teal-bright);
    font-size: 18px;
    margin-bottom: 15px;
}

.alternative-contact p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.alternative-contact ul {
    margin: 15px 0;
    padding-left: 25px;
}

.alternative-contact li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.alternative-contact a {
    color: var(--teal-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.alternative-contact a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .form-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .form-section-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .form-section-icon {
        width: 40px;
        height: 40px;
    }
    
    .form-section-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .form-section-subtitle {
        font-size: 13px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .deletion-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .alternative-contact {
        padding: 20px;
    }
}

/* SMS Privacy Policy Section Styles */
.sms-privacy-policy-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 255, 200, 0.03);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
}

.sms-privacy-policy-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--teal-bright);
    font-weight: 600;
    line-height: 1.3;
}

.sms-privacy-policy-intro {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-white);
    font-size: 15px;
}

.sms-privacy-policy-item {
    margin-bottom: 25px;
}

.sms-privacy-policy-item:last-child {
    margin-bottom: 0;
}

.sms-privacy-policy-item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.4;
}

.sms-privacy-policy-item-text {
    line-height: 1.7;
    color: var(--text-gray);
    font-size: 14px;
}

/* Mobile Responsive Styles for SMS Privacy Policy */
@media (max-width: 768px) {
    .sms-privacy-policy-section {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .sms-privacy-policy-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .sms-privacy-policy-intro {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .sms-privacy-policy-item {
        margin-bottom: 20px;
    }
    
    .sms-privacy-policy-item-title {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .sms-privacy-policy-item-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .sms-privacy-policy-section {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 15px 12px;
    }
    
    .sms-privacy-policy-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .sms-privacy-policy-intro {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .sms-privacy-policy-item {
        margin-bottom: 18px;
    }
    
    .sms-privacy-policy-item-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .sms-privacy-policy-item-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Metrics Section */
.metrics-wrapper {
    max-width: 1600px;
    margin: 80px auto 0;
    padding: 0 clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 3;
}

.metrics-container {
    max-width: 800px;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.metric-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

.metric-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--teal-bright);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.metric-label {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Social Proof Section */
.social-proof-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 100px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 120px;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-3px);
}

.client-logo-placeholder {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    opacity: 0.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0;
}

.product-card {
    padding: 40px 30px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

.product-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.product-card-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--teal-bright);
    margin-bottom: 15px;
}

.product-card-description {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Project Enhancements */
.project-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.project-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: 0.9;
    display: block;
}

.project-icon-unitercih {
    width: 80px !important;
    height: 80px !important;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.project-stat {
    padding: 6px 12px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: var(--teal-bright);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0;
}

.testimonial-card {
    padding: 40px 30px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    background: rgba(0, 255, 200, 0.08);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.15);
}

.testimonial-quote {
    font-size: 64px;
    color: var(--teal-bright);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-gray);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0;
}

.contact-card {
    padding: 35px 25px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:nth-child(3) {
    grid-column: span 2;
    justify-self: stretch;
    width: 100%;
}

.contact-card:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-bright);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Team Page Styles */
.team-section {
    margin-bottom: 60px;
}

.team-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--teal-bright);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 200, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member-card {
    padding: 35px 25px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.team-member-card:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

.team-member-avatar {
    width: 125px;
    height: 125px;
    max-width: 125px;
    max-height: 125px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    font-weight: 700;
    font-size: 36px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 20px;
}

.team-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 14px;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.3px;
    border: 1px solid var(--bg-black);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.team-member-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 14px;
    color: var(--teal-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-member-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: left;
    white-space: pre-line;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social-link {
    color: var(--teal-bright);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 4px;
}

.team-social-link:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: var(--teal-bright);
    transform: translateY(-2px);
}

.team-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 12px;
    text-align: left;
}

.team-cta-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.team-cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

/* Responsive Metrics */
@media (max-width: 768px) {
    .metrics-wrapper {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-item {
        padding: 20px 15px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .contact-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-cta {
        padding: 40px 20px;
    }
}

/* Journey Section */
.journey-content {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.journey-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.journey-stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    color: var(--teal-bright);
    margin-bottom: 10px;
    line-height: 1;
}

.journey-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .journey-stats {
        gap: 40px;
    }
}

/* Careers Page Styles */
.careers-benefits {
    margin-bottom: 60px;
}

.careers-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--teal-bright);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 200, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 35px 25px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.position-card {
    padding: 35px 30px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.position-card:hover {
    background: rgba(0, 255, 200, 0.08);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.15);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.position-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.position-location,
.position-type {
    font-size: 13px;
    color: var(--text-gray);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.position-apply-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    color: var(--bg-black);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.position-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 200, 0.4);
}

.position-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.position-requirements {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.position-requirements strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 10px;
}

.position-requirements ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.position-requirements li {
    margin-bottom: 8px;
}

.careers-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 12px;
    text-align: left;
}

.careers-cta-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.careers-cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .position-header {
        flex-direction: column;
    }
    
    .position-apply-btn {
        width: 100%;
        text-align: center;
    }
    
    .careers-cta {
        padding: 40px 20px;
    }
}

/* Future Positions */
.future-growth-content {
    text-align: left;
}

.future-positions {
    max-width: 800px;
    margin: 0;
}

.future-position-card {
    padding: 40px 35px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    text-align: left;
}

.future-position-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.future-position-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.future-position-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.future-position-list li {
    padding: 10px 0 10px 30px;
    color: var(--text-gray);
    position: relative;
    font-size: 15px;
}

.future-position-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--teal-bright);
    font-weight: 600;
}

/* Blog Page Styles */
.blog-featured {
    margin-bottom: 60px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.featured-post:hover {
    background: rgba(0, 255, 200, 0.08);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.15);
}

.featured-post-image {
    width: 100%;
    height: 300px;
    background: rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image-placeholder {
    color: var(--text-gray);
    font-size: 18px;
    opacity: 0.5;
}

.featured-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    background: rgba(0, 255, 200, 0.08);
    border-color: rgba(0, 255, 200, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    background: rgba(0, 255, 200, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-category {
    padding: 4px 12px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: var(--teal-bright);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.blog-date {
    font-size: 12px;
    color: var(--text-gray);
    padding: 4px 0;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--teal-bright);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--teal-light);
    transform: translateX(5px);
}

.blog-newsletter {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 12px;
    text-align: left;
}

.blog-newsletter-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.blog-newsletter-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--teal-bright);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

.newsletter-button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
    border: none;
    border-radius: 6px;
    color: var(--bg-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 200, 0.4);
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .featured-post-image {
        height: 200px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .blog-newsletter {
        padding: 40px 20px;
    }
}

/* Extra Small Mobile Devices (375px and below) */
@media (max-width: 375px) {
    /* Ensure hamburger menu is ALWAYS visible */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 26px !important;
        height: 20px !important;
        min-width: 26px !important;
        min-height: 20px !important;
        position: relative !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure nav-right is visible */
    .nav-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 8px !important;
        position: relative !important;
        z-index: 10003 !important;
        width: auto !important;
        min-width: auto !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide desktop menu completely */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .nav-container {
        padding: 12px 12px;
    }
    
    .nav-logo .logo-text {
        font-size: 16px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .headline {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 13px;
    }
    
    .body-text {
        font-size: 12px;
    }
    
    .content-left {
        padding: 0 15px;
    }
    
    .content-right {
        min-height: 200px;
    }
}

/* Smallest Mobile Devices (320px and below) */
@media (max-width: 320px) {
    /* Ensure hamburger menu is ALWAYS visible */
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 24px !important;
        height: 18px !important;
        min-width: 24px !important;
        min-height: 18px !important;
        position: relative !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure nav-right is visible */
    .nav-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 6px !important;
        position: relative !important;
        z-index: 10003 !important;
        width: auto !important;
        min-width: auto !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide desktop menu completely */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .nav-container {
        padding: 10px 10px;
    }
    
    .nav-logo .logo-text {
        font-size: 14px;
    }
    
    .logo-image {
        height: 24px;
    }
    
    .headline {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .body-text {
        font-size: 11px;
    }
    
    .content-left {
        padding: 0 10px;
    }
    
    .content-right {
        min-height: 180px;
    }
    
    .hamburger-line {
        height: 1.5px !important;
    }
}