


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

    /* CSS VARIABLES FOR THEME */
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --accent-color: #dcb597;
        --overlay-color: rgba(0, 0, 0, 0.4);
        --border-color: rgba(255, 255, 255, 0.1);
    }

    [data-theme="light"] {
        --bg-primary: #ffffff;
        --bg-secondary: #f8f9fa;
        --text-primary: #1a1a1a;
        --text-secondary: #666666;
        --accent-color: #dcb597;
        --overlay-color: rgba(255, 255, 255, 0.8);
        --border-color: rgba(0, 0, 0, 0.1);
    }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
}

/* Join Team Modal */
.join-team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.join-team-modal.active {
    opacity: 1;
    visibility: visible;
}

.join-team-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.join-team-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.join-team-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.join-team-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: scale(1.1);
}

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

.join-team-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-team-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

/* Join Team Modal Specific Labels */
.join-team-modal .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    margin-bottom: 8px;
}

/* Join Team Modal Specific Form Elements */
.join-team-modal .form-input,
.join-team-modal .form-select,
.join-team-modal .form-textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.join-team-modal .form-input:focus,
.join-team-modal .form-select:focus,
.join-team-modal .form-textarea:focus {
    outline: none;
    border-color: #ff6b35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.join-team-modal .form-input::placeholder,
.join-team-modal .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.join-team-modal .file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7) !important;
}

.join-team-modal .file-upload-label:hover {
    border-color: #ff6b35 !important;
    background: rgba(255, 107, 53, 0.1) !important;
    color: #ff6b35 !important;
}

.join-team-modal .file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ff6b35 !important;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.file-upload-label:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 500;
}

.join-team-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.join-team-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--accent-color-rgb), 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.join-team-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* VR Modal */
.vr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vr-modal.active {
    opacity: 1;
    visibility: visible;
}

.vr-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.vr-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vr-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    height: 80vh;
    max-height: 80vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.vr-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.vr-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: pulse-attention 2s infinite;
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.video-play-button {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 16px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: none; /* Stop pulsing on hover */
}

.play-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
}

.play-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.video-play-button:hover .play-icon {
    transform: scale(1.1);
}

.play-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Pulse Animation */
@keyframes pulse-attention {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    }
}

/* AI SERVICE SECTION STYLES */
.home-two-service-item-details.five {
    /* Styles for fifth service - AI - inherits from parent */
    position: relative;
}

.home-two-service-item-details.six {
    /* Styles for sixth service - Creative Design & Film Videos */
    position: relative;
}

.service-cta-link {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 181, 151, 0.2);
    display: flex;
    justify-content: flex-start;
}

/* Iris Pill Button Styles */
.iris-pill-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(220, 181, 151, 0.1);
    border: 1px solid rgba(220, 181, 151, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.iris-pill-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 181, 151, 0.1), transparent);
    transition: left 0.6s ease;
}

.iris-pill-button:hover {
    background: rgba(220, 181, 151, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 181, 151, 0.2);
}

.iris-pill-button:hover:before {
    left: 100%;
}

.iris-avatar-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.iris-ai-icon {
    width: 18px;
    height: 18px;
    color: white;
}

.iris-pill-button:hover .iris-avatar-wrapper {
    transform: rotate(180deg);
    background: var(--accent-hover);
}

.iris-text {
    color: inherit;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.iris-arrow-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(220, 181, 151, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.iris-arrow {
    width: 14px;
    height: 14px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.iris-pill-button:hover .iris-arrow-wrapper {
    background: var(--accent-color);
    transform: translateX(4px);
}

.iris-pill-button:hover .iris-arrow {
    color: white;
}

/* Theme specific styles */
[data-theme="light"] .iris-pill-button {
    background: rgba(220, 181, 151, 0.08);
    border-color: rgba(220, 181, 151, 0.2);
}

[data-theme="light"] .iris-pill-button:hover {
    background: rgba(220, 181, 151, 0.12);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .iris-pill-button {
        padding: 10px 16px;
        font-size: 13px;
        gap: 10px;
    }

    .iris-avatar-wrapper {
        width: 28px;
        height: 28px;
    }

    .iris-ai-icon {
        width: 16px;
        height: 16px;
    }

    .iris-arrow-wrapper {
        width: 24px;
        height: 24px;
    }

    .iris-arrow {
        width: 12px;
        height: 12px;
    }
}

/* VR Button Icon */
.video-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
}

.video-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vr-icon {
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.video-cta-btn:hover .vr-icon {
    transform: scale(1.1);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 11;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
}

.home-two-hero-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent var(--circle-size, 50px), rgba(0, 0, 0, 1) var(--circle-size, 50px));
    -webkit-mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent var(--circle-size, 50px), rgba(0, 0, 0, 1) var(--circle-size, 50px));
    transition: --circle-size 0.3s ease;
}

/* Team Section Cursor Effect */
.team-cursor-effect {
    position: relative;
    pointer-events: auto;
    cursor: none;
}

.team-cursor-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent var(--circle-size, 50px), rgba(0, 0, 0, 1) var(--circle-size, 50px));
    -webkit-mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent var(--circle-size, 50px), rgba(0, 0, 0, 1) var(--circle-size, 50px));
    transition: --circle-size 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.team-cursor-effect > * {
    position: relative;
    z-index: 2;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: opacity 0.3s;
}

/* Disable custom cursor on touch/mobile devices */
@media (hover: none), (pointer: coarse) {
    body {
        cursor: auto;
    }
    .cursor,
    .cursor-dot {
        display: none !important;
    }
}

    /* CUSTOM SCROLLBAR */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-secondary);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(220, 181, 151, 0.6) 100%);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color) 100%);
        box-shadow: 0 0 10px rgba(220, 181, 151, 0.5);
    }

    /* Firefox scrollbar */
    html {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) var(--bg-secondary);
    }

    /* NAVBAR STYLES */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: var(--overlay-color);
        backdrop-filter: blur(10px);
        padding: 15px 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    /* NAVBAR THEME ADAPTATIONS */
    [data-theme="light"] .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    [data-theme="light"] .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }

    /* HAMBURGER THEME ADAPTATION */
    [data-theme="light"] .hamburger span {
        background: var(--text-primary);
    }

    /* MEGA MENU THEME ADAPTATION */
    [data-theme="light"] .mega-menu-overlay {
        background: rgba(255, 255, 255, 0.98);
    }

    [data-theme="light"] .mega-menu-nav li a {
        color: var(--text-primary);
    }

    [data-theme="light"] .mega-menu-nav li a:hover {
        color: var(--accent-color);
    }

    [data-theme="light"] .mega-contact-info h3 {
        color: var(--accent-color);
    }

    [data-theme="light"] .contact-item h4 {
        color: var(--text-primary);
    }

    [data-theme="light"] .contact-item p {
        color: var(--text-secondary);
    }

    [data-theme="light"] .contact-item a {
        color: var(--text-primary);
    }

    [data-theme="light"] .mega-social h3 {
        color: var(--accent-color);
    }

    [data-theme="light"] .social-links a {
        color: var(--text-primary);
        border-color: var(--border-color);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-logo img {
        height: 40px;
        width: auto;
    }

    .nav-logo-text {
        font-size: 24px;
        font-weight: 700;
        color: #857452;
        text-decoration: none;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-logo-text:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    .nav-logo-text::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .nav-logo-text:hover::after {
        opacity: 0.6;
    }

    .nav-links {
        display: none;
        list-style: none;
        gap: 40px;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        position: relative;
        transition: all 0.3s ease;
        padding: 10px 0;
    }

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

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
        width: 100%;
    }

    .nav-contact {
        display: none;
        align-items: center;
        gap: 20px;
    }

    .nav-contact.active {
        display: flex;
    }

    .nav-contact a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

    .nav-contact .email-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(220, 181, 151, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-contact .email-btn:hover {
        background: rgba(220, 181, 151, 0.2);
        transform: scale(1.1);
    }

    /* LANGUAGE SWITCH */
    .language-switch-wrapper {
        margin-left: 20px;
    }

    .language-switch-input {
        display: none;
    }

    .language-switch-label {
        display: block;
        width: 60px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .language-switch-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .language-switch-circle {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 22px;
        height: 22px;
        background: #fff;
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .lang-text {
        position: absolute;
        font-size: 10px;
        font-weight: 700;
        color: black;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .es-text {
        opacity: 0;
        transform: scale(0.8);
    }

    .en-text {
        opacity: 1;
        transform: scale(1);
    }

    /* CHECKED STATE - Spanish */
    .language-switch-input:checked + .language-switch-label .language-switch-circle {
        transform: translateX(30px);
    }

    .language-switch-input:checked + .language-switch-label .es-text {
        opacity: 1;
        transform: scale(1);
    }

    .language-switch-input:checked + .language-switch-label .en-text {
        opacity: 0;
        transform: scale(0.8);
    }

    .language-switch-input:checked + .language-switch-label {
        background: rgba(220, 181, 151, 0.2);
        border-color: rgba(220, 181, 151, 0.4);
    }

    /* HOVER EFFECTS */
    .language-switch-label:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .language-switch-input:checked + .language-switch-label:hover {
        background: rgba(220, 181, 151, 0.3);
        border-color: rgba(220, 181, 151, 0.6);
    }

    /* AUDIO CONTROL */
    .audio-control-wrapper {
        position: relative;
        margin-left: 15px;
    }

    .audio-control-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        position: relative;
    }

    .audio-control-button:hover {
        background: var(--bg-secondary);
        transform: scale(1.05);
    }

    .audio-icon {
        transition: all 0.3s ease;
        opacity: 1;
    }

    .audio-icon.audio-off {
        opacity: 0;
        position: absolute;
    }

    .audio-control-button.muted .audio-icon.audio-on {
        opacity: 0;
    }

    .audio-control-button.muted .audio-icon.audio-off {
        opacity: 1;
    }

    /* THEME SWITCH */
    .theme-switch-wrapper {
        margin-left: 15px;
    }

    .theme-switch-input {
        display: none;
    }

    .theme-switch-label {
        display: block;
        width: 60px;
        height: 30px;
        cursor: pointer;
        position: relative;
    }

    .theme-switch-slider {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .theme-switch-circle {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, var(--accent-color) 0%, rgba(220, 181, 151, 0.8) 100%);
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(220, 181, 151, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
        overflow: hidden;
    }

    .theme-icon {
        position: absolute;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        color: #ffffff;
    }

    .theme-icon.sun {
        opacity: 0;
        transform: rotate(180deg) scale(0.3);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
    }

    .theme-icon.moon {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    }

    /* SVG SPECIFIC STYLES */
    .theme-icon svg {
        width: 14px;
        height: 14px;
    }

    .theme-icon.sun svg {
        animation: sunRotate 8s linear infinite;
    }

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

    .theme-icon.moon svg {
        animation: moonGlow 3s ease-in-out infinite alternate;
    }

    @keyframes moonGlow {
        from { filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4)); }
        to { filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)); }
    }

    /* CHECKED STATE */
    .theme-switch-input:checked + .theme-switch-label .theme-switch-slider {
        background: rgba(220, 181, 151, 0.2);
        border-color: var(--accent-color);
    }

    .theme-switch-input:checked + .theme-switch-label .theme-switch-circle {
        transform: translateX(28px);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 4px 16px rgba(220, 181, 151, 0.5), inset 0 1px 3px rgba(220, 181, 151, 0.3);
    }

    .theme-switch-input:checked + .theme-switch-label .theme-icon.sun {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        color: var(--accent-color);
        filter: drop-shadow(0 0 6px rgba(220, 181, 151, 0.8));
    }

    .theme-switch-input:checked + .theme-switch-label .theme-icon.moon {
        opacity: 0;
        transform: rotate(-180deg) scale(0.3);
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
    }

    /* HOVER EFFECTS */
    .theme-switch-label:hover .theme-switch-slider {
        background: rgba(220, 181, 151, 0.15);
        transform: scale(1.02);
    }

    .theme-switch-label:hover .theme-switch-circle {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(220, 181, 151, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }

    .theme-switch-input:checked + .theme-switch-label:hover .theme-switch-circle {
        transform: translateX(28px) scale(1.1);
        box-shadow: 0 6px 24px rgba(220, 181, 151, 0.6), inset 0 1px 4px rgba(220, 181, 151, 0.4);
    }

    /* ENHANCED HOVER ANIMATIONS */
    .theme-switch-label:hover .theme-icon.sun {
        animation-duration: 2s;
    }

    .theme-switch-label:hover .theme-icon.moon {
        animation-duration: 1.5s;
    }

    /* ACTIVE STATE GLOW */
    .theme-switch-input:checked + .theme-switch-label .theme-switch-slider {
        box-shadow: 0 0 20px rgba(220, 181, 151, 0.3);
    }

    /* MOBILE THEME SWITCH */
    @media (max-width: 768px) {
        .theme-switch-wrapper {
            margin-left: 15px;
            margin-right: 15px;
        }

        .theme-switch-label {
            width: 50px;
            height: 25px;
        }

        .theme-switch-circle {
            width: 19px;
            height: 19px;
        }

        .theme-switch-input:checked + .theme-switch-label .theme-switch-circle {
            transform: translateX(23px);
        }

        .theme-switch-input:checked + .theme-switch-label:hover .theme-switch-circle {
            transform: translateX(23px) scale(1.1);
        }
    }

    /* HAMBURGER MENU */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* MEGA MENU OVERLAY */
    .mega-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .mega-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 30px 50px;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) transparent;
    }

    /* Custom scrollbar for mega menu */
    .mega-menu-content::-webkit-scrollbar {
        width: 6px;
    }

    .mega-menu-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .mega-menu-content::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 3px;
        opacity: 0.7;
    }

    .mega-menu-content::-webkit-scrollbar-thumb:hover {
        background: #dcb597;
        opacity: 1;
    }

    .mega-menu-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        text-align: center;
    }

    .mega-menu-nav {
        list-style: none;
    }

    .mega-menu-nav li {
        margin-bottom: 20px;
        overflow: hidden;
    }

    .mega-menu-nav li a {
        color: #ffffff !important;
        text-decoration: none;
        font-size: 48px;
        font-weight: 700;
        display: block !important;
        transition: all 0.3s ease;
        transform: translateY(100%);
        line-height: 1.2;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-nav li a:hover {
        color: #dcb597;
        transform: translateY(0) translateX(20px);
    }

    .mega-menu-nav.animate li a {
        animation: slideUp 0.6s ease forwards;
    }

    /* Force visibility when mega menu is active */
    .mega-menu-overlay.active .mega-menu-nav li a {
        opacity: 1 !important;
        color: #ffffff !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        display: block !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    }

    /* Additional override for GSAP inline styles */
    .mega-menu-overlay.active .mega-menu-nav li a[style] {
        opacity: 1 !important;
        color: #ffffff !important;
        transform: translateY(0) !important;
    }

    .mega-menu-nav li:nth-child(1) a { animation-delay: 0.1s; }
    .mega-menu-nav li:nth-child(2) a { animation-delay: 0.2s; }
    .mega-menu-nav li:nth-child(3) a { animation-delay: 0.3s; }
    .mega-menu-nav li:nth-child(4) a { animation-delay: 0.4s; }
    .mega-menu-nav li:nth-child(5) a { animation-delay: 0.5s; }

    @keyframes slideUp {
        to {
            transform: translateY(0);
        }
    }

    .mega-menu-bottom {
        display: flex;
        justify-content: space-between;
        gap: 80px;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .contact-items-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 20px;
    }

    .mega-contact-info {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease 0.3s;
    }

    .mega-menu-overlay.active .mega-contact-info {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .mega-contact-info h3 {
        font-size: 24px;
        margin-bottom: 30px;
        color: #dcb597;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-item h4 {
        font-size: 16px;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .contact-item p {
        font-size: 14px;
        color: #cccccc;
    }

    .contact-item a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-item a:hover {
        color: #dcb597;
    }

    .mega-social {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease 0.5s;
    }

    .mega-menu-overlay.active .mega-social {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .mega-social h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #dcb597;
    }

    .social-links {
        display: flex;
        gap: 20px;
    }

    .social-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        padding: 10px 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        border-color: #dcb597;
        color: #dcb597;
        transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media (min-width: 768px) {
        .nav-links {
            display: flex;
        }
        
        .nav-contact {
            display: flex;
        }
        
        .hamburger {
            display: none;
        }
        
        .mega-menu-overlay {
            display: none;
        }
    }

    /* MEGA MENU LEFT/RIGHT STYLES */
    .mega-menu-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .mega-menu-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .mega-contact-info h3,
    .mega-social h3 {
        color: var(--accent-color);
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .contact-item h4 {
        color: var(--text-primary);
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .contact-item p,
    .contact-item a {
        color: var(--text-secondary);
        font-size: 16px;
        text-decoration: none;
    }

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

    .social-links {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .social-links a {
        color: var(--text-secondary);
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* RESPONSIVE MEGA MENU */
    @media (max-width: 768px) {
        .mega-menu-content {
            padding: 80px 20px 40px;
            justify-content: flex-start;
            flex-direction: column;
            overflow-y: auto;
        }

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

        .mega-menu-left {
            order: 1;
            margin-bottom: 20px;
        }

        .mega-menu-right {
            order: 2;
            gap: 30px;
            align-items: center;
        }

        .mega-menu-main {
            gap: 50px;
            min-height: auto;
        }

        .mega-menu-bottom {
            flex-direction: column;
            gap: 40px;
        }

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

        .mega-menu-nav {
            margin-bottom: 20px;
        }

        .mega-menu-nav li a {
            font-size: clamp(32px, 8vw, 48px) !important;
            margin-bottom: 15px;
        }

        .mega-contact-info h3,
        .mega-social h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .contact-item h4 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .contact-item p,
        .contact-item a {
            font-size: 14px;
        }

        .social-links {
            gap: 15px;
        }

        .social-links a {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .mega-menu-content {
            padding: 70px 15px 30px;
            gap: 30px;
        }

        .mega-menu-main {
            gap: 30px;
        }

        .mega-menu-nav li a {
            font-size: clamp(28px, 10vw, 36px) !important;
            margin-bottom: 10px;
        }

        .mega-menu-bottom {
            gap: 30px;
        }

        .mega-menu-right {
            gap: 25px;
        }

        .mega-contact-info h3,
        .mega-social h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .contact-item h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .contact-item p,
        .contact-item a {
            font-size: 12px;
        }

        .social-links {
            gap: 12px;
        }

        .social-links a {
            font-size: 12px;
        }

        .contact-items-grid {
            gap: 15px;
        }
    }

    .carousel-container {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Navigation dots */
    .carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dot.active {
        background: rgba(255, 255, 255, 1);
    }

    /* HOME TWO HERO STYLES */
    .home-two-hero-wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .home-two-hero {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-two-hero-main {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
        background: rgba(0, 0, 0, 0.4);
        pointer-events: none;
    }

    .home-two-hero-main * {
        pointer-events: auto;
    }

    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        text-align: center;
    }

    .change-sizing {
        width: 100%;
    }

    .home-two-hero-main-text {
        margin-bottom: 60px;
    }

    .home-one-hero-sub-heading {
        margin-bottom: 20px;
    }

    .subheading-text {
        font-size: 16px;
        font-weight: 400;
        color: #dcb597 !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }

    .home-two-hero-heading {
        margin-bottom: 30px;
    }

    .change-padding {
        font-size: clamp(48px, 8vw, 120px) !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.1 !important;
        margin: 0 !important;
        letter-spacing: -2px !important;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }

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

    .home-two-hero-paragraph {
        max-width: 600px;
        margin: 0 auto;
    }

    .home-two-hero-paragraph p {
        font-size: 18px !important;
        font-weight: 400 !important;
        color: #cccccc !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }

    /* BIG TEXT MARQUEE */
    .home-two-big-text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        z-index: 5;
    }

    .home-two-big-text-wrapper {
        position: relative;
        width: 100%;
    }

    .home-two-text-wrapper {
        width: 200%;
        animation: marqueeMove 20s linear infinite;
    }

    .home-two-hero-text {
        font-size: clamp(100px, 15vw, 300px);
        font-weight: 900;
        color: rgba(255, 255, 255, 0.4) !important;
        text-transform: uppercase;
        letter-spacing: -5px;
        line-height: 1;
        white-space: nowrap;
        opacity: 0.4 !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    @keyframes marqueeMove {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* DECORATIVE LINE */
    .home-two-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #dcb597 50%, transparent 100%);
        z-index: 15;
    }

    /* OVERFLOW HIDDEN FOR ANIMATIONS */
    .overflow-hidden {
        overflow: hidden;
    }

    /* FORCE TEXT VISIBILITY */
    .home-two-hero-main-text {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        z-index: 20;
        position: relative;
    }

    .home-one-hero-sub-heading,
    .home-two-hero-heading,
    .home-two-hero-paragraph {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    /* TEXT SHADOWS FOR BETTER READABILITY */
    .change-padding {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    }

    .subheading-text {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    }

    .home-two-hero-paragraph p {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    }

    /* LIGHT THEME ADAPTATIONS FOR HERO */
    [data-theme="light"] .home-two-hero-main {
        background: rgba(255, 255, 255, 0.9);
    }

    [data-theme="light"] .change-padding {
        color: var(--text-primary) !important;
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8) !important;
    }

    [data-theme="light"] .subheading-text {
        color: var(--accent-color) !important;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8) !important;
    }

    [data-theme="light"] .home-two-hero-paragraph p {
        color: var(--text-secondary) !important;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8) !important;
    }

    [data-theme="light"] .home-two-hero-text {
        color: rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] .carousel-slide img {
        filter: brightness(1.1) contrast(1.1) !important;
    }

    [data-theme="light"] .dot {
        background: rgba(0, 0, 0, 0.3);
    }

    [data-theme="light"] .dot.active {
        background: var(--accent-color);
        border-color: rgba(0, 0, 0, 0.2);
    }

    /* SPLIT VIDEO SECTION */
    .split-video-section {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

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

    .split-panel {
        position: relative;
        width: 50%;
        height: 100%;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .split-panel:hover {
        transform: scale(1.02);
    }

    .split-image {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .panel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s ease;
        filter: brightness(0.7) contrast(1.1);
    }

    .split-panel:hover .panel-image {
        filter: brightness(0.9) contrast(1.2);
        transform: scale(1.05);
    }

    .panel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .split-panel:hover .panel-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    }

    .panel-content {
        text-align: center;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .split-panel:hover .panel-content {
        transform: translateY(0);
    }

    .panel-title {
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 900;
        color: #ffffff;
        margin-bottom: 15px;
        letter-spacing: 3px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .panel-subtitle {
        font-size: 18px;
        font-weight: 400;
        color: #dcb597;
        letter-spacing: 1px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }

    /* VIDEO BACKGROUND */
    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .video-background.revealed {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.8s ease 0.5s;
    }

    .video-background.revealed .video-content-overlay {
        opacity: 1;
    }

    .video-text-content {
        text-align: center;
        transform: translateY(30px);
        transition: transform 0.8s ease 0.7s;
    }

    .video-background.revealed .video-text-content {
        transform: translateY(0);
    }

    .video-title {
        font-size: clamp(48px, 8vw, 96px);
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 20px;
        letter-spacing: -1px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .video-subtitle {
        font-size: 20px;
        font-weight: 400;
        color: #dcb597;
        margin-bottom: 30px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }

    .video-cta-btn {
        padding: 15px 40px;
        background: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .video-cta-btn:hover {
        background: #dcb597;
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(220, 181, 151, 0.3);
    }

    .video-controls {
        position: absolute;
        bottom: 30px;
        right: 30px;
        z-index: 10;
    }

    .video-play-pause {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(220, 181, 151, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .video-play-pause:hover {
        background: rgba(220, 181, 151, 0.4);
        transform: scale(1.1);
    }

    .pause-icon {
        display: none;
    }

    .video-background.revealed .play-icon {
        display: none;
    }

    .video-background.revealed .pause-icon {
        display: block;
    }

    /* SPLIT ANIMATION STATES */
    .split-container.split-open .left-panel {
        transform: translateX(-50%);
    }

    .split-container.split-open .right-panel {
        transform: translateX(50%);
    }

    .split-container.split-open .video-background {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .split-container {
            flex-direction: column;
        }

        .split-panel {
            width: 100%;
            height: 50%;
        }

        .split-container.split-open .left-panel {
            transform: translateY(-50%);
        }

        .split-container.split-open .right-panel {
            transform: translateY(50%);
        }

        .panel-title {
            font-size: clamp(24px, 8vw, 48px);
        }

        .video-title {
            font-size: clamp(32px, 10vw, 64px);
        }
    }

    /* HOME TWO SERVICE SECTION */
    .home-two-service {
        position: relative;
        width: 100%;
        height: 85vh;
        overflow: hidden;
        display: flex;
    }

    .home-two-service-image-wrapper {
        position: relative;
        width: 60%;
        height: 100%;
        overflow: hidden;
    }

    .home-two-service-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        filter: brightness(0.95) contrast(1.05);
    }

    .home-two-service-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
        z-index: 2;
    }

    .home-two-service-text-wrapper {
        width: 40%;
        height: 100%;
        background: var(--bg-primary);
        padding: 40px 60px 30px 60px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        transition: background 0.4s ease;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) transparent;
    }

    /* Custom scrollbar for webkit browsers */
    .home-two-service-text-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .home-two-service-text-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    .home-two-service-text-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 3px;
        opacity: 0.7;
    }

    .home-two-service-text-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--accent-hover);
        opacity: 1;
    }

    .home-two-service-text-item {
        border-bottom: 1px solid var(--border-color);
        padding: 25px 0;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .home-two-service-text-item:last-child {
        border-bottom: none;
    }

    .home-two-service-text-item.change-border {
        border-bottom: none;
    }

    .home-two-service-text-item:hover {
        background: rgba(220, 181, 151, 0.05);
        transform: translateX(10px);
    }

    .home-two-service-text-item.active {
        background: rgba(220, 181, 151, 0.1);
        border-left: 3px solid #dcb597;
        padding-left: 27px;
    }

    .home-two-service-item-text-main {
        position: relative;
    }

    .heading-three-new {
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .home-two-service-text-item:hover .heading-three-new {
        color: #dcb597;
    }

    .home-two-service-text-item.active .heading-three-new {
        color: #dcb597;
    }

    .home-two-service-item-details {
        overflow: hidden;
        transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .home-two-service-item-details p {
        font-size: 16px;
        font-weight: 400;
        color: #cccccc;
        line-height: 1.6;
        margin: 0;
        padding: 15px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease 0.2s;
    }

    .home-two-service-text-item.active .home-two-service-item-details p {
        opacity: 1;
        transform: translateY(0);
    }

    /* RESPONSIVE SERVICE SECTION */
    @media (max-width: 1024px) {
        .home-two-service {
            flex-direction: column;
            height: auto;
            min-height: 100vh;
        }

        .home-two-service-image-wrapper {
            width: 100%;
            height: 50vh;
        }

        .home-two-service-text-wrapper {
            width: 100%;
            height: auto;
            min-height: 60vh;
            padding: 40px 30px;
            overflow-y: auto;
        }
    }

    @media (max-width: 768px) {
        .home-two-service-text-wrapper {
            padding: 30px 20px;
            min-height: 50vh;
        }

        .home-two-service-text-item {
            padding: 20px 0;
        }

        .heading-three-new {
            font-size: clamp(20px, 6vw, 28px);
        }

        .home-two-service-item-details p {
            font-size: 14px;
        }
    }

    /* CLIENTS SECTION */
    .clients-section {
        padding: 120px 0;
        background: var(--bg-primary);
        overflow: hidden;
    }

    .clients-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .clients-title-wrapper {
        text-align: center;
        margin-bottom: 80px;
    }

    .clients-pre-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .star-icon {
        animation: starRotate 10s linear infinite;
    }

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

    .pre-title-text {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .clients-heading {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

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

    /* CLIENTS GRID */
    .clients-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        height: 400px;
    }

    .client-item {
        backdrop-filter: blur(6px);
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
    }

    .client-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
    }

    [data-theme="light"] .client-item {
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    [data-theme="light"] .client-item:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    /* VERTICAL CAROUSEL */
    .client-carousel {
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .carousel-track {
        display: flex;
        flex-direction: column;
        gap: 10px;
        animation-duration: 20s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .vertical-carousel[data-direction="up"] .carousel-track {
        animation-name: scrollUp;
    }

    .vertical-carousel[data-direction="down"] .carousel-track {
        animation-name: scrollDown;
    }

    @keyframes scrollUp {
        from {
            transform: translateY(0);
        }
        to {
            transform: translateY(-50%);
        }
    }

    @keyframes scrollDown {
        from {
            transform: translateY(-50%);
        }
        to {
            transform: translateY(0);
        }
    }

    .client-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        padding: 20px;
        transition: all 0.3s ease;
    }

    .client-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(1) opacity(0.7);
        transition: all 0.3s ease;
    }

    .client-logo:hover img {
        filter: grayscale(0) opacity(1);
        transform: scale(1.1);
    }

    /* COUNTER ITEM */
    .counter-item {
        backdrop-filter: blur(6px);
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
        transition: all 0.3s ease;
    }

    .counter-item:hover {
        transform: translateY(-5px);
        background: rgba(220, 181, 151, 0.1);
    }

    [data-theme="light"] .counter-item {
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    [data-theme="light"] .counter-item:hover {
        background: rgba(220, 181, 151, 0.1);
    }

    .counter-number {
        font-family: 'Great Vibes', cursive;
        font-size: clamp(60px, 8vw, 84px);
        font-weight: 400;
        color: var(--text-primary);
        line-height: 0.7;
        margin-bottom: 15px;
    }

    .counter-text {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-secondary);
        text-align: center;
        margin: 0;
    }

    /* CTA BUTTON */
    .clients-cta {
        backdrop-filter: blur(6px);
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .clients-cta:hover {
        transform: translateY(-5px);
        background: rgba(220, 181, 151, 0.1);
    }

    [data-theme="light"] .clients-cta {
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    [data-theme="light"] .clients-cta:hover {
        background: rgba(220, 181, 151, 0.1);
    }

    .clients-cta-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-decoration: none;
        padding: 40px 20px;
        gap: 15px;
        transition: all 0.3s ease;
    }

    .cta-text {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
        margin: 0;
        text-align: center;
    }

    .cta-icon {
        width: 32px;
        height: 32px;
        background: var(--text-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .cta-icon svg {
        color: var(--bg-primary);
        transition: all 0.3s ease;
    }

    .clients-cta-button:hover .cta-icon {
        background: var(--accent-color);
        transform: scale(1.1);
    }

    .clients-cta-button:hover .cta-icon svg {
        color: #ffffff;
        transform: translateX(2px);
    }

    /* RESPONSIVE CLIENTS GRID */
    @media (max-width: 1200px) {
        .clients-grid {
            grid-template-columns: repeat(4, 1fr);
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .clients-grid {
            grid-template-columns: repeat(2, 1fr);
            height: 300px;
            gap: 15px;
        }

        .clients-section {
            padding: 80px 0;
        }

        .clients-title-wrapper {
            margin-bottom: 60px;
        }

        .counter-number {
            font-size: clamp(48px, 12vw, 64px);
        }
    }

    @media (max-width: 480px) {
        .clients-grid {
            grid-template-columns: 1fr;
            height: auto;
            gap: 20px;
        }

        .client-item,
        .counter-item,
        .clients-cta {
            height: 120px;
        }
    }

    /* STEP SECTION */
    .step-section {
        padding: 120px 0;
        background: var(--bg-primary);
        overflow: hidden;
        position: relative;
    }

    .step-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .step-pre-title-wrap {
        text-align: center;
        margin-bottom: 80px;
    }

    .step-pre-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .step-content {
        position: relative;
    }

    /* ANIMATED TITLES */
    .step-title-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 100px;
        position: relative;
        z-index: 1;
    }

    .step-title-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .step-title-item.right-align {
        text-align: right;
    }

    .step-title-text {
        font-size: clamp(48px, 8vw, 120px);
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1;
        margin: 0;
        letter-spacing: -2px;
        transition: all 0.3s ease;
    }

    .step-title-text.highlight {
        color: var(--accent-color);
        position: relative;
    }

    .step-title-text.highlight::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-color);
        opacity: 0.3;
    }

    /* STEP LIST */
    .step-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        position: relative;
    }

    .step-item {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 30px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .step-item:hover {
        transform: translateY(-10px);
        background: rgba(220, 181, 151, 0.1);
        border-color: rgba(220, 181, 151, 0.3);
        box-shadow: 0 20px 40px rgba(220, 181, 151, 0.1);
    }

    [data-theme="light"] .step-item {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .step-item:hover {
        background: rgba(220, 181, 151, 0.1);
        border-color: rgba(220, 181, 151, 0.3);
    }

    .step-content-main {
        text-align: center;
    }

    .step-title {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 25px;
        transition: color 0.3s ease;
    }

    .step-item:hover .step-title {
        color: var(--accent-color);
    }

    /* STEP DOTS */
    .step-count {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 30px;
    }

    .step-dot {
        width: 8px;
        height: 8px;
        background: var(--accent-color);
        border-radius: 50%;
        animation: stepDotPulse 2s ease-in-out infinite;
    }

    .step-dot:nth-child(2) {
        animation-delay: 0.3s;
    }

    .step-dot:nth-child(3) {
        animation-delay: 0.6s;
    }

    @keyframes stepDotPulse {
        0%, 100% {
            opacity: 0.3;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    /* STEP IMAGES */
    .step-image-wrap {
        position: relative;
        height: 200px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-vector {
        position: absolute;
        top: -20px;
        right: 20px;
        z-index: 2;
        animation: vectorFloat 3s ease-in-out infinite;
    }

    @keyframes vectorFloat {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-10px) rotate(5deg);
        }
    }

    .step-image {
        width: 160px;
        height: 160px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
    }

    .step-image.overlay {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 120px;
        height: 120px;
        z-index: 2;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s ease;
    }

    .step-item:hover .step-image.overlay {
        opacity: 1;
        transform: scale(1);
    }

    .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .step-item:hover .step-image img {
        transform: scale(1.1);
        filter: brightness(1.1) contrast(1.1);
    }

    .step-description {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
        transition: color 0.3s ease;
    }

    .step-item:hover .step-description {
        color: var(--text-primary);
    }

    /* SCROLL ANIMATIONS FOR TITLES */
    .step-title-item:nth-child(1) {
        animation: slideInLeft 1s ease-out;
    }

    .step-title-item:nth-child(2) {
        animation: slideInCenter 1s ease-out 0.2s both;
    }

    .step-title-item:nth-child(3) {
        animation: slideInRight 1s ease-out 0.4s both;
    }

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

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

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* RESPONSIVE STEP SECTION */
    @media (max-width: 1024px) {
        .step-list {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .step-title-list {
            flex-direction: column;
            gap: 20px;
            text-align: center;
            margin-bottom: 60px;
        }

        .step-title-item.right-align {
            text-align: center;
        }
    }

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

        .step-item {
            padding: 30px 20px;
        }

        .step-image-wrap {
            height: 150px;
        }

        .step-image {
            width: 120px;
            height: 120px;
        }

        .step-image.overlay {
            width: 90px;
            height: 90px;
        }
    }

    /* COUNTER SECTION */
    .counter-section {
        padding: 120px 0;
        background: var(--bg-primary);
        position: relative;
        overflow: hidden;
    }

    .counter-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .counter-title-section {
        position: relative;
    }

    .counter-pre-title-wrap {
        margin-bottom: 40px;
    }

    .counter-pre-title {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .counter-main-title {
        margin-bottom: 60px;
    }

    .counter-title-text {
        font-size: clamp(48px, 8vw, 84px);
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.1;
        margin: 0;
        letter-spacing: -2px;
    }

    .counter-title-text.highlight {
        color: var(--accent-color);
        font-weight: 800;
        position: relative;
    }

    .counter-title-text.highlight::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-color);
        opacity: 0.3;
    }

    /* COUNTER BUTTON */
    .counter-button,
    .team-button {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: var(--text-primary);
        color: white;
        padding: 18px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .team-button {
        background: white;
        color: var(--text-primary);
    }

    .button-text-wrap {
        position: relative;
        overflow: hidden;
        height: 20px;
    }

    .button-text,
    .button-text-hover {
        position: absolute;
        left: 0;
        top: 0;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .button-text-hover {
        transform: translateY(100%);
    }

    .counter-button:hover .button-text,
    .team-button:hover .button-text {
        transform: translateY(-100%);
    }

    .counter-button:hover .button-text-hover,
    .team-button:hover .button-text-hover {
        transform: translateY(0);
    }

    .button-icon-wrapper {
        position: relative;
        width: 24px;
        height: 24px;
    }

    .button-icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .team-button .button-icon-bg {
        background: var(--text-primary);
    }

    .button-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    .team-button .button-icon {
        color: white;
    }

    .counter-button:hover .button-icon,
    .team-button:hover .button-icon {
        transform: translate(-50%, -50%) scale(1.2);
    }

    /* COUNTER LIST */
    .counter-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .counter-item {
        padding: 40px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    [data-theme="light"] .counter-item {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .counter-item:hover {
        padding-left: 20px;
    }

    .counter-number-wrapper {
        display: flex;
        align-items: baseline;
        margin-bottom: 15px;
    }

    .counter-number {
        font-family: 'Geist', sans-serif;
        font-size: clamp(60px, 8vw, 84px);
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .counter-suffix {
        font-family: 'Great Vibes', cursive;
        font-size: clamp(60px, 8vw, 84px);
        font-weight: 400;
        color: var(--text-primary);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .counter-description {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
        max-width: 300px;
    }

    /* COUNTER BACKGROUND VECTOR */
    .counter-bg-vector {
        position: absolute;
        top: 50%;
        right: -200px;
        transform: translateY(-50%);
        z-index: 0;
        pointer-events: none;
    }

    .counter-bg-vector svg {
        width: 600px;
        height: auto;
    }

    /* TEAM SECTION */
    .team-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .team-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

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

    .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(5, 8, 12, 0.7) 0%, rgba(5, 8, 12, 0.9) 100%);
        z-index: 1;
    }

    .team-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 30px;
        position: relative;
        z-index: 2;
    }

    .team-title-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .team-main-title {
        flex: 1;
    }

    .team-title-text {
        font-size: clamp(48px, 8vw, 84px);
        font-weight: 700;
        color: white;
        line-height: 1.1;
        margin: 0;
        letter-spacing: -2px;
    }

    .team-title-text.highlight {
        color: var(--accent-color);
        font-weight: 800;
    }

    .team-pre-title-wrap {
        flex-shrink: 0;
        margin-left: 40px;
    }

    .team-pre-title {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .team-pre-title .pre-title-text {
        color: white;
    }

    /* TEAM CONTENT GRID */
    .team-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .team-subtitle {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 400;
        color: white;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .team-cta-button {
        margin-bottom: 40px;
    }

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

    .team-link {
        color: white;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .team-link:hover {
        color: var(--accent-color);
    }

    /* TEAM MEMBERS */
    .team-members-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .team-member {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

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

    .team-member-image {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
        position: relative;
    }

    .team-member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-member:hover .team-member-image img {
        transform: scale(1.1);
    }

    .team-member-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .team-member-name {
        font-size: 22px;
        font-weight: 600;
        color: white;
        margin: 0 0 8px 0;
    }

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

    .team-social-list {
        display: flex;
        gap: 12px;
    }

    .team-social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .team-social-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* RESPONSIVE COUNTER & TEAM */
    @media (max-width: 1024px) {
        .counter-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .team-title-section {
            flex-direction: column;
            gap: 40px;
        }

        .team-pre-title-wrap {
            margin-left: 0;
        }

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

    @media (max-width: 768px) {
        .counter-section,
        .team-container {
            padding: 80px 20px;
        }

        .counter-item {
            padding: 30px 0;
        }

        .team-members-list {
            gap: 30px;
        }

        .team-member {
            padding: 20px;
        }
    }

    /* BLOG SECTION */
    .blog-section {
        padding: 120px 0;
        background: var(--bg-primary);
        overflow: hidden;
    }

    .blog-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .blog-title-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .blog-pre-title-wrap {
        flex-shrink: 0;
        margin-right: 40px;
    }

    .blog-pre-title {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .blog-main-title {
        flex: 1;
    }

    .blog-title-text {
        font-size: clamp(48px, 8vw, 84px);
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.1;
        margin: 0;
        letter-spacing: -2px;
    }

    .blog-title-text.highlight {
        color: var(--accent-color);
        font-weight: 800;
        position: relative;
    }

    .blog-title-text.highlight::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-color);
        opacity: 0.3;
    }

    .blog-cta-button {
        flex-shrink: 0;
        margin-left: 40px;
        align-self: flex-end;
    }

    .blog-button {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: var(--text-primary);
        color: white;
        padding: 18px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    /* BLOG GRID */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .blog-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }

    [data-theme="light"] .blog-item {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .blog-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .blog-item:hover {
        background: rgba(255, 255, 255, 0.5);
        border-color: rgba(0, 0, 0, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .blog-link {
        display: block;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }

    .blog-image-wrapper {
        position: relative;
        height: 240px;
        overflow: hidden;
        border-radius: 6px;
        margin: 20px 20px 0 20px;
    }

    .blog-image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 6px;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: scale(1.15);
    }

    .blog-item:hover .blog-image img {
        transform: scale(1.2);
    }

    .blog-content {
        padding: 24px 20px 30px 20px;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .blog-date,
    .blog-read-time {
        font-size: 14px;
        color: var(--text-secondary);
        font-weight: 400;
    }

    .blog-dot {
        width: 4px;
        height: 4px;
        background: var(--text-secondary);
        border-radius: 50%;
    }

    .blog-title {
        font-size: clamp(18px, 2.5vw, 24px);
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.4;
        margin: 0;
        transition: color 0.3s ease;
    }

    .blog-item:hover .blog-title {
        color: var(--accent-color);
    }

    /* BLOG ANIMATIONS */
    .blog-item {
        opacity: 0;
        transform: translateY(30px);
        animation: blogFadeUp 0.8s ease forwards;
    }

    .blog-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .blog-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .blog-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    @keyframes blogFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* BLOG HOVER EFFECTS */
    .blog-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-color) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 1;
    }

    .blog-item:hover::before {
        opacity: 0.05;
    }

    /* RESPONSIVE BLOG SECTION */
    @media (max-width: 1024px) {
        .blog-title-section {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .blog-pre-title-wrap,
        .blog-cta-button {
            margin: 0;
            align-self: center;
        }

        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

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

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .blog-image-wrapper {
            height: 200px;
        }

        .blog-content {
            padding: 20px 16px 24px 16px;
        }
    }

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

        .blog-image-wrapper {
            margin: 16px 16px 0 16px;
            height: 180px;
        }

        .blog-content {
            padding: 16px 16px 20px 16px;
        }
    }

    /* CTA SECTION */
    .cta-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: #0A0F19;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 120px 0;
    }

    .cta-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 3;
    }

    /* CTA TITLE SECTION */
    .cta-title-section {
        text-align: center;
        margin-bottom: 80px;
    }

    .cta-pre-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-pre-title .pre-title-text {
        color: white;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-main-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cta-title-text {
        font-size: clamp(48px, 8vw, 84px);
        font-weight: 700;
        color: white;
        line-height: 1.1;
        margin: 0;
        letter-spacing: -2px;
    }

    .cta-title-text.highlight {
        color: var(--accent-color);
        font-weight: 800;
    }

    /* CTA CONTENT GRID */
    .cta-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    /* CONTACT FORM */
    .contact-form-wrapper {
        background: rgba(245, 245, 245, 1);
        border-radius: 16px;
        padding: 40px;
    }

    .form-title {
        font-size: 28px;
        font-weight: 700;
        color: #0A0F19;
        margin-bottom: 30px;
        text-align: center;
    }

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

    .form-label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #0A0F19;
        margin-bottom: 8px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 16px;
        background: white;
        border: 1px solid rgba(218, 218, 219, 1);
        border-radius: 10px;
        color: #0A0F19;
        font-size: 16px;
        font-family: inherit;
        transition: all 0.3s ease;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(91, 91, 91, 1);
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(220, 181, 151, 0.2);
    }

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

    .form-submit-button {
        width: 100%;
        padding: 16px;
        background: #0A0F19;
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        position: relative;
        overflow: hidden;
    }

    .form-submit-button:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
    }

    /* EMAIL COPY SECTION */
    .contact-email-section {
        margin-top: 30px;
        text-align: center;
    }

    .email-preference {
        font-size: 14px;
        color: rgba(91, 91, 91, 1);
        margin-bottom: 12px;
    }

    .email-copy-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: white;
        border: 1px solid rgba(218, 218, 219, 1);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .email-copy-button:hover {
        border-color: var(--accent-color);
        transform: translateY(-1px);
    }

    .email-text {
        color: #0A0F19;
        font-size: 16px;
        font-weight: 500;
    }

    .copy-icon {
        color: rgba(91, 91, 91, 1);
        transition: all 0.3s ease;
    }

    .copied-state {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        gap: 8px;
        color: #22c55e;
        font-size: 14px;
        font-weight: 600;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .email-copy-button.copied .copy-icon {
        opacity: 0;
    }

    .email-copy-button.copied .copied-state {
        opacity: 1;
    }

    /* CTA FEATURES */
    .cta-features {
        color: white;
    }

    .features-title {
        font-size: 16px;
        color: rgba(245, 245, 245, 1);
        margin-bottom: 20px;
        font-weight: 500;
    }

    .features-list {
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feature-dot {
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .feature-text {
        color: white;
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

    /* CTA TEAM MEMBER */
    .team-member-card {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .member-avatar {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        overflow: hidden;
    }

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

    .member-name {
        font-size: 20px;
        font-weight: 700;
        color: white;
        margin: 0 0 4px 0;
    }

    .member-role {
        font-size: 14px;
        color: rgba(218, 218, 219, 1);
        margin: 0;
    }

    .discovery-call-button {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: white;
        color: #0A0F19;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .discovery-call-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    /* CTA BACKGROUND VIDEO */
    .cta-bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .cta-background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .cta-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0A0F19;
        opacity: 0.6;
        z-index: 2;
    }

    /* RESPONSIVE CTA SECTION */
    @media (max-width: 1024px) {
        .cta-content-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .cta-main-title {
            flex-direction: column;
            gap: 10px;
        }
    }

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

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

        .cta-title-section {
            margin-bottom: 60px;
        }
    }

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

        .contact-form-wrapper {
            padding: 24px 16px;
        }

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

    /* IRIS AI SECTION */
    .iris-section {
        padding: 120px 0;
        background: var(--bg-primary);
        position: relative;
        overflow: hidden;
    }

    .iris-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* IRIS TITLE */
    .iris-title-section {
        text-align: center;
        margin-bottom: 80px;
    }

    .iris-pre-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .iris-main-title {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .iris-title-text {
        font-size: clamp(48px, 8vw, 84px);
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.1;
        margin: 0;
        letter-spacing: -2px;
    }

    .iris-title-text.highlight {
        color: #857452;
        font-weight: 800;
        position: relative;
    }

    .iris-title-text.highlight::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: #857452;
        opacity: 0.3;
    }

    .iris-description {
        font-size: clamp(16px, 2vw, 20px);
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }

    /* IRIS VIDEO SECTION */
    .iris-video-section {
        margin-bottom: 40px;
        text-align: center;
    }

    .iris-video-button {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        color: white;
        padding: 20px 40px;
        border-radius: 60px;
        border: none;
        font-family: inherit;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(133, 116, 82, 0.3);
    }

    .iris-video-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 60px rgba(133, 116, 82, 0.4);
    }

    .iris-video-button::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 50%, #857452 100%);
        border-radius: 62px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .iris-video-button:hover::before {
        opacity: 1;
        animation: buttonGlow 2s ease-in-out infinite alternate;
    }

    @keyframes buttonGlow {
        0% {
            box-shadow: 0 0 20px rgba(133, 116, 82, 0.5);
        }
        100% {
            box-shadow: 0 0 40px rgba(133, 116, 82, 0.8);
        }
    }

    .video-button-content {
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 2;
        position: relative;
    }

    .video-play-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .iris-video-button:hover .video-play-icon {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        animation: playIconPulse 1.5s ease-in-out infinite;
    }

    @keyframes playIconPulse {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        }
        50% {
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        }
    }

    .video-button-text {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .video-main-text {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .video-sub-text {
        font-size: 14px;
        opacity: 0.8;
        font-weight: 400;
    }

    .video-button-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(133, 116, 82, 0.3) 0%, transparent 70%);
        border-radius: 60px;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.4s ease;
        z-index: -1;
    }

    .iris-video-button:hover .video-button-glow {
        transform: translate(-50%, -50%) scale(1.5);
    }

    /* HERO VIDEO BUTTON - ELEGANT & THIN */
    .hero-video-section {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-video-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        color: var(--text-primary);
        border: none;
        font-family: inherit;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        padding: 0;
        font-size: 16px;
        font-weight: 500;
    }

    .hero-video-content {
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 2;
    }

    .hero-play-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(133, 116, 82, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(133, 116, 82, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #857452;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .hero-play-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle, rgba(133, 116, 82, 0.2) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .hero-video-button:hover .hero-play-icon {
        background: rgba(133, 116, 82, 0.2);
        border-color: rgba(133, 116, 82, 0.6);
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(133, 116, 82, 0.3);
    }

    .hero-video-button:hover .hero-play-icon::before {
        opacity: 1;
    }

    .hero-video-button:hover .hero-play-icon svg {
        transform: scale(1.1);
        color: #857452;
    }

    .hero-video-text {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
    }

    .hero-video-button:hover .hero-video-text {
        color: #857452;
        transform: translateX(3px);
    }

    .hero-video-line {
        position: absolute;
        bottom: -2px;
        left: 52px;
        height: 1px;
        background: linear-gradient(90deg, #857452 0%, transparent 100%);
        width: 0;
        transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-video-button:hover .hero-video-line {
        width: calc(100% - 52px);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .hero-video-section {
            margin-top: 30px;
        }

        .hero-play-icon {
            width: 35px;
            height: 35px;
        }

        .hero-play-icon svg {
            width: 16px;
            height: 16px;
        }

        .hero-video-text {
            font-size: 14px;
        }

        .hero-video-line {
            left: 47px;
        }

        .hero-video-button:hover .hero-video-line {
            width: calc(100% - 47px);
        }
    }

    /* LIGHT THEME ADJUSTMENTS */
    [data-theme="light"] .hero-play-icon {
        background: rgba(133, 116, 82, 0.15);
        border-color: rgba(133, 116, 82, 0.4);
    }

    [data-theme="light"] .hero-video-button:hover .hero-play-icon {
        background: rgba(133, 116, 82, 0.25);
        border-color: rgba(133, 116, 82, 0.7);
    }

    /* CONTACT TAB VERTICAL */
    .contact-tab-vertical {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .contact-tab-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        color: white;
        text-decoration: none;
        padding: 20px 15px;
        border-radius: 25px 0 0 25px;
        box-shadow: -5px 0 20px rgba(133, 116, 82, 0.3);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        min-height: 120px;
        transform: translateX(0);
    }

    .contact-tab-link:hover {
        transform: translateX(-10px);
        box-shadow: -15px 0 40px rgba(133, 116, 82, 0.5);
        background: linear-gradient(135deg, #6d5f42 0%, #857452 100%);
    }

    .contact-tab-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 2;
        writing-mode: horizontal-tb;
        text-orientation: upright;
    }

    .contact-tab-icon {
        transition: all 0.3s ease;
    }

    .contact-tab-link:hover .contact-tab-icon {
        transform: scale(1.2) rotate(5deg);
        animation: iconBounce 0.6s ease;
    }

    @keyframes iconBounce {
        0%, 100% { transform: scale(1.2) rotate(5deg); }
        50% { transform: scale(1.3) rotate(-5deg); }
    }

    .contact-tab-text {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .contact-tab-link:hover .contact-tab-text {
        letter-spacing: 2px;
        transform: scale(1.05);
    }

    .contact-tab-arrow {
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .contact-tab-link:hover .contact-tab-arrow {
        opacity: 1;
        transform: translateY(-3px);
        animation: arrowPulse 1s ease-in-out infinite;
    }

    @keyframes arrowPulse {
        0%, 100% { transform: translateY(-3px); }
        50% { transform: translateY(-6px); }
    }

    .contact-tab-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle, rgba(133, 116, 82, 0.3) 0%, transparent 70%);
        border-radius: 25px 0 0 25px;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 1;
    }

    .contact-tab-link:hover .contact-tab-glow {
        opacity: 1;
        animation: glowPulse 2s ease-in-out infinite;
    }

    @keyframes glowPulse {
        0%, 100% { 
            opacity: 0.3;
            transform: scale(1);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.05);
        }
    }

    /* ENTRANCE ANIMATION */
    .contact-tab-vertical {
        animation: slideInFromRight 1s ease-out 2s both;
    }

    @keyframes slideInFromRight {
        0% {
            transform: translateY(-50%) translateX(100%);
            opacity: 0;
        }
        100% {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
        }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .contact-tab-vertical {
            right: -5px;
        }

        .contact-tab-link {
            padding: 15px 10px;
            min-height: 100px;
            border-radius: 20px 0 0 20px;
        }

        .contact-tab-text {
            font-size: 12px;
        }

        .contact-tab-icon svg {
            width: 16px;
            height: 16px;
        }

        .contact-tab-arrow svg {
            width: 12px;
            height: 12px;
        }
    }

    /* HIDE ON VERY SMALL SCREENS */
    @media (max-width: 480px) {
        .contact-tab-vertical {
            display: none;
        }
    }

    /* VIDEO MODAL */
    .video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .video-modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }

    .video-modal-container {
        position: relative;
        width: 90vw;
        max-width: 1200px;
        height: 90vh;
        max-height: 800px;
        background: rgba(20, 20, 20, 0.9);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        transform: scale(0.8);
        transition: transform 0.4s ease;
    }

    .video-modal.active .video-modal-container {
        transform: scale(1);
    }

    .video-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        background: rgba(133, 116, 82, 0.9);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10001;
    }

    .video-modal-close:hover {
        background: #857452;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(133, 116, 82, 0.5);
    }

    .video-modal-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-modal-content video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* IRIS CONTENT GRID */
    .iris-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        margin-bottom: 80px;
    }

    /* IRIS CHAT DEMO */
    .iris-chat-container {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .chat-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
        background: rgba(220, 181, 151, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .iris-avatar {
        position: relative;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #857452 0%, rgba(133, 116, 82, 0.8) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .iris-avatar-glow {
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(135deg, #857452 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0.5;
        animation: irisGlow 3s ease-in-out infinite alternate;
    }

    @keyframes irisGlow {
        0% { opacity: 0.3; transform: scale(1); }
        100% { opacity: 0.7; transform: scale(1.1); }
    }

    .iris-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
    }

    .iris-status {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
    }

    .typing-indicator {
        display: flex;
        gap: 4px;
        margin-left: auto;
    }

    .typing-indicator span {
        width: 8px;
        height: 8px;
        background: #857452;
        border-radius: 50%;
        animation: typingDot 1.5s ease-in-out infinite;
    }

    .typing-indicator span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-indicator span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes typingDot {
        0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
        30% { opacity: 1; transform: scale(1.2); }
    }

    .chat-messages {
        padding: 20px;
        max-height: 400px;
        overflow-y: auto;
    }

    .message {
        margin-bottom: 16px;
        display: flex;
        gap: 12px;
    }

    .user-message {
        justify-content: flex-end;
    }

    .user-message .message-content {
        background: #857452;
        color: white;
        margin-left: 60px;
    }

    .message-avatar {
        width: 32px;
        height: 32px;
        background: #857452;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    .message-content {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 12px 16px;
        max-width: 280px;
    }

    .message-content p {
        font-size: 14px;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.5;
    }

    .chat-suggestions {
        display: flex;
        gap: 8px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .suggestion-btn {
        padding: 8px 12px;
        background: rgba(133, 116, 82, 0.1);
        border: 1px solid rgba(133, 116, 82, 0.3);
        border-radius: 20px;
        color: #857452;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .suggestion-btn:hover {
        background: #857452;
        color: white;
        transform: translateY(-2px);
    }

    /* IRIS FEATURES */
    .features-header {
        margin-bottom: 40px;
    }

    .features-title {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .features-subtitle {
        font-size: 16px;
        color: var(--text-secondary);
    }

    .iris-features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .iris-feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .iris-feature-item:hover {
        background: rgba(133, 116, 82, 0.1);
        border-color: rgba(133, 116, 82, 0.3);
        transform: translateX(10px);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #857452 0%, rgba(133, 116, 82, 0.8) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    .feature-name {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 8px 0;
    }

    .feature-desc {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
    }

    /* IRIS STATS */
    .iris-stats {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-number {
        font-size: clamp(36px, 6vw, 48px);
        font-weight: 800;
        color: #857452;
        margin-bottom: 8px;
        display: block;
    }

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

    /* IRIS CTA */
    .iris-demo-button {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: #857452;
        color: white;
        padding: 18px 36px;
        border-radius: 50px;
        border: none;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        font-family: inherit;
    }

    .iris-demo-button:hover {
        background: #6d5f42;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(133, 116, 82, 0.3);
    }

    /* IRIS TECH STACK */
    .iris-tech-section {
        margin-bottom: 80px;
    }

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

    .tech-title {
        font-size: clamp(32px, 5vw, 42px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 16px;
    }

    .tech-subtitle {
        font-size: 18px;
        color: var(--text-secondary);
    }

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

    .tech-item {
        text-align: center;
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        cursor: pointer;
        overflow: visible;
        will-change: transform, background, border-color, box-shadow;
    }

    .tech-item::before {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        background: linear-gradient(135deg, rgba(133, 116, 82, 0.3) 0%, rgba(109, 95, 66, 0.15) 100%);
        border-radius: 26px;
        opacity: 0;
        filter: blur(15px);
        transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), filter 1.5s ease;
        z-index: -1;
        will-change: opacity, transform, filter;
    }

    .tech-item::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, rgba(133, 116, 82, 0.2) 0%, transparent 50%, rgba(109, 95, 66, 0.2) 100%);
        border-radius: 23px;
        opacity: 0;
        transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1), animation 1.5s ease;
        z-index: -1;
        will-change: opacity;
    }

    .tech-item:hover {
        border-color: rgba(133, 116, 82, 0.3);
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 30px rgba(133, 116, 82, 0.1);
    }

    .tech-item.active,
    .tech-item:focus {
        background: 
            linear-gradient(135deg, rgba(133, 116, 82, 0.08) 0%, rgba(109, 95, 66, 0.05) 100%),
            linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
        border-color: rgba(133, 116, 82, 0.6);
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.2) !important;
        box-shadow: 
            0 50px 100px rgba(133, 116, 82, 0.2),
            0 30px 60px rgba(133, 116, 82, 0.15),
            0 0 80px rgba(133, 116, 82, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        z-index: 1000 !important;
        transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1) !important;
        animation: holographicShift 4s ease-in-out infinite;
        outline: none;
    }

    .tech-item.active::before,
    .tech-item:focus::before {
        opacity: 1;
        filter: blur(25px);
        transform: scale(1.4);
    }

    .tech-item.active::after,
    .tech-item:focus::after {
        opacity: 0.8;
        animation: techGlow 2.5s ease-in-out infinite alternate;
    }

    @keyframes techGlow {
        0% {
            opacity: 0.4;
            transform: scale(1);
        }
        100% {
            opacity: 0.8;
            transform: scale(1.05);
        }
    }


    /* TECH PARTICLE EFFECTS */
    .tech-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #857452 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        transition: all 0.6s ease;
        z-index: -2;
        pointer-events: none;
    }

    .tech-item:hover::after {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.2;
        animation: energyWave 2s ease-in-out infinite;
    }

    @keyframes energyWave {
        0% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0.3;
        }
        50% {
            transform: translate(-50%, -50%) scale(2.2);
            opacity: 0.1;
        }
        100% {
            transform: translate(-50%, -50%) scale(3);
            opacity: 0;
        }
    }

    /* TECH GRID HOVER ISOLATION */
    .tech-stack-grid {
        perspective: 1000px;
        transform-style: preserve-3d;
    }

    .tech-stack-grid:has(.tech-item.active) .tech-item:not(.active),
    .tech-stack-grid:has(.tech-item:focus) .tech-item:not(:focus) {
        opacity: 0.3;
        transform: scale(0.95) translateZ(-20px);
        filter: blur(1px);
        transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* TECH ITEM MAGNETIC CENTER EFFECT - CONSOLIDATED */
    
    /* BACKGROUND OVERLAY FOR ACTIVE/FOCUS */
    .tech-stack-grid::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 20, 20, 0.8) 100%);
        backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1s ease;
        z-index: 999;
        pointer-events: none;
    }

    .tech-stack-grid:has(.tech-item.active)::before,
    .tech-stack-grid:has(.tech-item:focus)::before {
        opacity: 1;
        visibility: visible;
    }

    /* ENHANCED TECH ITEM ACTIVE/FOCUS EFFECTS */
    .tech-item.active .tech-name,
    .tech-item:focus .tech-name {
        color: #857452;
        text-shadow: 0 0 30px rgba(133, 116, 82, 0.6);
        transform: scale(1.05);
    }

    .tech-item.active .tech-desc,
    .tech-item:focus .tech-desc {
        color: var(--text-primary);
        transform: translateY(-2px);
    }

    @keyframes holographicShift {
        0%, 100% {
            background-position: 0% 0%, 0% 0%;
            opacity: 0.8;
        }
        25% {
            background-position: 25% 25%, 25% 25%;
            opacity: 0.9;
        }
        50% {
            background-position: 50% 50%, 50% 50%;
            opacity: 1;
        }
        75% {
            background-position: 75% 75%, 75% 75%;
            opacity: 0.9;
        }
    }

    /* TECH ICON ENHANCED EFFECTS */
    .tech-item.active .tech-icon svg,
    .tech-item:focus .tech-icon svg {
        animation: iconGlow 1.5s ease-in-out infinite alternate;
        filter: drop-shadow(0 0 10px #857452);
    }

    @keyframes iconGlow {
        0% {
            filter: drop-shadow(0 0 10px #857452);
        }
        100% {
            filter: drop-shadow(0 0 20px #857452) drop-shadow(0 0 40px rgba(133, 116, 82, 0.5));
        }
    }

    .tech-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #857452 0%, rgba(133, 116, 82, 0.8) 100%);
        border-radius: 16px;
        color: white;
        transition: all 0.3s ease;
    }

    .tech-item:hover .tech-icon {
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        box-shadow: 
            0 0 40px rgba(133, 116, 82, 0.8),
            0 0 80px rgba(133, 116, 82, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
        transform: scale(1.2) rotateY(10deg);
        animation: iconPulse 2s ease-in-out infinite alternate;
    }

    @keyframes iconPulse {
        0% {
            box-shadow: 
                0 0 40px rgba(133, 116, 82, 0.8),
                0 0 80px rgba(133, 116, 82, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
        }
        100% {
            box-shadow: 
                0 0 60px rgba(133, 116, 82, 1),
                0 0 120px rgba(133, 116, 82, 0.6),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
        }
    }

    /* TECH ANIMATION CONTAINER */
    .tech-animation-container {
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .tech-spheres-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ABSTRACT SPHERES */
    .tech-sphere {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, #857452 0%, rgba(133, 116, 82, 0.6) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(133, 116, 82, 0.3);
        animation: sphereFloat 8s ease-in-out infinite;
    }

    .sphere-1 {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 6s;
    }

    .sphere-2 {
        width: 60px;
        height: 60px;
        top: 15%;
        right: 15%;
        animation-delay: 1s;
        animation-duration: 8s;
    }

    .sphere-3 {
        width: 100px;
        height: 100px;
        bottom: 25%;
        left: 20%;
        animation-delay: 2s;
        animation-duration: 7s;
    }

    .sphere-4 {
        width: 70px;
        height: 70px;
        bottom: 20%;
        right: 10%;
        animation-delay: 3s;
        animation-duration: 9s;
    }

    .sphere-5 {
        width: 50px;
        height: 50px;
        top: 50%;
        left: 5%;
        animation-delay: 4s;
        animation-duration: 6s;
    }

    .sphere-6 {
        width: 90px;
        height: 90px;
        top: 60%;
        right: 5%;
        animation-delay: 5s;
        animation-duration: 10s;
    }

    @keyframes sphereFloat {
        0%, 100% { 
            transform: translateY(0) translateX(0) scale(1);
            opacity: 0.6;
        }
        25% { 
            transform: translateY(-20px) translateX(10px) scale(1.1);
            opacity: 0.8;
        }
        50% { 
            transform: translateY(-10px) translateX(-15px) scale(0.9);
            opacity: 1;
        }
        75% { 
            transform: translateY(15px) translateX(5px) scale(1.05);
            opacity: 0.7;
        }
    }

    /* CONNECTION LINES */
    .tech-connections {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .connection-line {
        stroke-dasharray: 10, 5;
        animation: connectionFlow 4s linear infinite;
    }

    .line-1 { animation-delay: 0s; }
    .line-2 { animation-delay: 1.3s; }
    .line-3 { animation-delay: 2.6s; }

    @keyframes connectionFlow {
        0% { 
            stroke-dashoffset: 100;
            opacity: 0.1;
        }
        50% { 
            opacity: 0.6;
        }
        100% { 
            stroke-dashoffset: 0;
            opacity: 0.1;
        }
    }

    /* AI CORE */
    .ai-core {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ai-core-inner {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #857452 0%, #6d5f42 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
        z-index: 2;
        animation: coreRotate 8s linear infinite;
    }

    .ai-core-glow {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: radial-gradient(circle, #857452 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0.4;
        animation: coreGlow 3s ease-in-out infinite alternate;
    }

    @keyframes coreRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes coreGlow {
        0% { 
            opacity: 0.2;
            transform: scale(1);
        }
        100% { 
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    /* LOADING TEXT */
    .tech-loading-text {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 4px;
        color: #857452;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .loading-dot {
        animation: loadingDot 1.5s ease-in-out infinite;
    }

    .loading-dot:nth-child(1) { animation-delay: 0s; }
    .loading-dot:nth-child(2) { animation-delay: 0.2s; }
    .loading-dot:nth-child(3) { animation-delay: 0.4s; }
    .loading-dot:nth-child(5) { animation-delay: 0.6s; }
    .loading-dot:nth-child(6) { animation-delay: 0.8s; }
    .loading-dot:nth-child(7) { animation-delay: 1s; }

    @keyframes loadingDot {
        0%, 60%, 100% { 
            opacity: 0.3;
            transform: translateY(0);
        }
        30% { 
            opacity: 1;
            transform: translateY(-8px);
        }
    }

    .loading-text {
        margin: 0 8px;
        animation: loadingTextPulse 2s ease-in-out infinite;
    }

    @keyframes loadingTextPulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }

    .tech-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .tech-desc {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* IRIS USE CASE */
    .usecase-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .usecase-title {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .usecase-subtitle {
        font-size: 16px;
        color: var(--text-secondary);
    }

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

    .usecase-item {
        text-align: center;
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        position: relative;
    }

    .usecase-item.featured {
        background: rgba(220, 181, 151, 0.1);
        border-color: rgba(220, 181, 151, 0.3);
        transform: scale(1.05);
    }

    .featured-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-color);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .usecase-item:hover {
        background: rgba(220, 181, 151, 0.1);
        border-color: rgba(220, 181, 151, 0.3);
        transform: translateY(-10px);
    }

    .usecase-item.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .usecase-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #857452 0%, rgba(133, 116, 82, 0.8) 100%);
        border-radius: 16px;
        color: white;
        transition: all 0.3s ease;
    }

    .usecase-item:hover .usecase-icon {
        background: linear-gradient(135deg, #6d5f42 0%, rgba(109, 95, 66, 0.9) 100%);
        box-shadow: 0 10px 30px rgba(133, 116, 82, 0.3);
    }

    .usecase-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .usecase-price {
        font-size: 28px;
        font-weight: 800;
        color: #857452;
        margin-bottom: 16px;
    }

    .usecase-desc {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
    }



    /* IRIS BACKGROUND ELEMENTS */
    .iris-bg-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .floating-element {
        position: absolute;
        background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

    .element-1 {
        width: 200px;
        height: 200px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .element-2 {
        width: 150px;
        height: 150px;
        top: 60%;
        right: 10%;
        animation-delay: 2s;
    }

    .element-3 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 15%;
        animation-delay: 4s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        33% { transform: translateY(-20px) rotate(120deg); }
        66% { transform: translateY(10px) rotate(240deg); }
    }

    /* RESPONSIVE IRIS SECTION */
    @media (max-width: 1024px) {
        .iris-content-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .iris-main-title {
            flex-direction: column;
            gap: 10px;
        }

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

        .usecase-item.featured {
            transform: none;
        }

        .usecase-item.featured:hover {
            transform: translateY(-10px);
        }

        .tech-stack-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

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

        .iris-stats {
            flex-direction: column;
            gap: 30px;
        }

    }

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

        .chat-messages {
            max-height: 300px;
        }

        .message-content {
            max-width: 220px;
        }

        .tech-item,
        .usecase-item {
            padding: 30px 20px;
        }
    }

    /* FOOTER */
    .main-footer {
        background: var(--bg-primary);
        padding: 80px 0 40px 0;
        position: relative;
        overflow: hidden;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .footer-content {
        position: relative;
        z-index: 5;
    }

    /* FOOTER CONTENT TOP */
    .footer-content-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        margin-bottom: 80px;
        position: relative;
        z-index: 3;
    }

    .footer-content-left {
        max-width: 500px;
    }

    /* NEWSLETTER SECTION */
    .newsletter-title {
        margin-bottom: 30px;
        position: relative;
        z-index: 10;
    }

    .footer-newsletter {
        position: relative;
        z-index: 10;
    }

    .newsletter-heading {
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 700;
        color: white;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .newsletter-description {
        font-size: 16px;
        color: rgba(170, 169, 173, 1);
        line-height: 1.6;
        margin: 0;
    }

    .newsletter-form {
        position: relative;
        z-index: 10;
    }

    .form-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .newsletter-input {
        width: 100%;
        padding: 18px 80px 18px 20px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .newsletter-input::placeholder {
        color: rgba(170, 169, 173, 1);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 2px rgba(220, 181, 151, 0.2);
    }

    .footer-content-left {
        position: relative;
        z-index: 10;
    }

    .newsletter-submit {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 36px;
        background: white;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        transition: all 0.3s ease;
        z-index: 2;
    }

    .newsletter-submit:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.05);
    }

    /* FOOTER LINKS */
    .footer-content-right {
        display: flex;
        gap: 60px;
    }

    .footer-links-section {
        flex: 1;
    }

    .footer-contact-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-section-title {
        font-size: 14px;
        font-weight: 500;
        color: rgba(170, 169, 173, 1);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        opacity: 0.6;
    }

    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .footer-link {
        color: rgba(170, 169, 173, 1);
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-link:hover {
        color: white;
        transform: translateX(4px);
    }

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

    .footer-contact-link {
        color: rgba(170, 169, 173, 1);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

    .footer-office-name {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px 0;
    }

    .footer-address {
        color: rgba(170, 169, 173, 1);
        text-decoration: none;
        font-size: 14px;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .footer-address:hover {
        color: white;
    }

    /* FOOTER SOCIAL MEDIA */
    .footer-content-center {
        margin-bottom: 60px;
    }

    .footer-social-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
    }

    .footer-social-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        text-decoration: none;
        color: rgba(170, 169, 173, 1);
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-social-link:hover {
        color: white;
    }

    .social-content {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .footer-social-link:hover .social-icon {
        transform: scale(1.1);
    }

    .social-text {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .social-arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .footer-social-link:hover .social-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .social-divider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: white;
        opacity: 0.1;
    }

    /* FOOTER BRAND */
    .footer-brand {
        text-align: center;
    }

    .footer-brand-link {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .footer-brand-link:hover {
        transform: scale(1.05);
    }

    .footer-logo {
        max-width: 200px;
        height: auto;
        filter: brightness(0) invert(1);
    }

    /* FOOTER BOTTOM */
    .footer-content-bottom {
        opacity: 0;
        transform: translateY(30px);
        animation: footerBottomFadeIn 1s ease forwards;
        animation-delay: 0.5s;
    }

    @keyframes footerBottomFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-divider {
        width: 100%;
        height: 1px;
        background: white;
        opacity: 0.1;
        margin-bottom: 30px;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .credits-text {
        color: rgba(170, 169, 173, 1);
        font-size: 14px;
        margin: 0;
    }

    .credits-link {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .credits-link:hover {
        color: var(--accent-color);
    }

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

    .copyright-text {
        color: rgba(170, 169, 173, 1);
        font-size: 14px;
        margin: 0;
    }

    .legal-dot {
        width: 4px;
        height: 4px;
        background: rgba(91, 91, 91, 1);
        border-radius: 50%;
    }

    .legal-link {
        color: rgba(170, 169, 173, 1);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .legal-link:hover {
        color: white;
    }

    /* RESPONSIVE FOOTER */
    @media (max-width: 1024px) {
        .footer-content-top {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .footer-content-right {
            flex-direction: column;
            gap: 40px;
        }

        .footer-links-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {
        .main-footer {
            padding: 60px 0 30px 0;
        }

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

        .footer-content-top {
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-content-center {
            margin-bottom: 40px;
        }

        .footer-links-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-bottom-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

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

    @media (max-width: 480px) {
        .footer-links-grid {
            grid-template-columns: 1fr;
        }

        .newsletter-input {
            padding: 16px 70px 16px 16px;
            font-size: 14px;
        }

        .newsletter-submit {
            width: 44px;
            height: 32px;
            right: 4px;
        }

        .footer-social-link {
            padding: 16px 0;
        }
    }

    /* AGENT WIDGET */
    .agent-widget {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 50;
    }

    .agent-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 12px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        font-family: inherit;
        outline: none;
        opacity: 0.7;
        transform: scale(0.9);
    }

    .agent-pill:hover {
        gap: 16px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.9);
        color: #0A0F19;
        box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(12px);
        opacity: 1;
        transform: scale(1.05);
    }

    .agent-avatar {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        object-fit: cover;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .agent-pill:hover .agent-avatar {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .agent-text {
        font-size: clamp(12px, 2vw, 14px);
        font-weight: 600;
        white-space: nowrap;
        color: inherit;
        opacity: 0.9;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .agent-pill:hover .agent-text {
        font-size: clamp(14px, 2vw, 18px);
        opacity: 1;
        color: inherit;
    }

    .agent-arrow-wrapper {
        margin-left: 4px;
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0.6;
    }

    .agent-pill:hover .agent-arrow-wrapper {
        margin-left: 8px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.8);
        color: #0A0F19;
        border: 1px solid rgba(255, 255, 255, 0.6);
        opacity: 1;
    }

    .agent-arrow {
        width: 14px;
        height: 14px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0.7;
    }

    .agent-pill:hover .agent-arrow {
        width: 18px;
        height: 18px;
        opacity: 1;
        transform: translateX(2px);
    }

    /* AGENT CARD */
    .agent-card {
        position: absolute;
        bottom: 84px;
        right: 0;
        width: 340px;
        max-width: 86vw;
        background: rgba(255, 255, 255, 0.95);
        color: #0A0F19;
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        padding: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .agent-card.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

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

    .agent-card-avatar {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        object-fit: cover;
    }

    .agent-info {
        flex: 1;
    }

    .agent-name {
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 4px 0;
        font-size: 16px;
    }

    .agent-role {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        margin: 0;
        line-height: 1.3;
    }

    .agent-linkedin {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .agent-linkedin:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }

    .linkedin-icon {
        color: #0A66C2;
    }

    .agent-description {
        margin: 12px 0 16px 0;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.8);
        line-height: 1.5;
    }

    .agent-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .agent-contact-button {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        border-radius: 12px;
        background: #0A0F19;
        color: white;
        font-size: 14px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .agent-contact-button:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .agent-iris-button {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.05);
        color: #0A0F19;
        font-size: 14px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .agent-iris-button:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    /* RESPONSIVE AGENT WIDGET */
    @media (max-width: 768px) {
        .agent-widget {
            bottom: 20px;
            right: 20px;
        }

        .agent-pill {
            padding: 6px 10px;
            gap: 10px;
        }

        .agent-pill:hover {
            padding: 10px 14px;
            gap: 12px;
        }

        .agent-avatar {
            width: 32px;
            height: 32px;
        }

        .agent-pill:hover .agent-avatar {
            width: 40px;
            height: 40px;
        }

        .agent-text {
            font-size: 12px;
        }

        .agent-pill:hover .agent-text {
            font-size: 14px;
        }

        .agent-arrow-wrapper {
            width: 28px;
            height: 36px;
        }

        .agent-card {
            width: 320px;
            bottom: 70px;
        }
    }

    @media (max-width: 480px) {
        .agent-widget {
            bottom: 16px;
            right: 16px;
        }

        .agent-card {
            width: 300px;
            max-width: 90vw;
            bottom: 65px;
        }

        .agent-pill {
            padding: 6px 8px;
            gap: 8px;
        }

        .agent-pill:hover {
            padding: 8px 12px;
            gap: 10px;
        }

        .agent-avatar {
            width: 28px;
            height: 28px;
        }

        .agent-pill:hover .agent-avatar {
            width: 36px;
            height: 36px;
        }

        .agent-text {
            font-size: 11px;
        }

        .agent-pill:hover .agent-text {
            font-size: 13px;
        }

        .agent-arrow-wrapper {
            width: 26px;
            height: 32px;
        }
    }

    /* RESPONSIVE ADJUSTMENTS */
    @media (max-width: 768px) {
        .home-two-hero-main {
            padding: 20px;
        }

        .home-two-hero-main-text {
            margin-bottom: 40px;
        }

        .change-padding {
            font-size: clamp(36px, 10vw, 80px);
        }

        .home-two-hero-paragraph p {
            font-size: 16px;
        }

        .home-two-hero-text {
            font-size: clamp(60px, 20vw, 150px);
        }
    }

    /* ENHANCED CAROUSEL STYLES FOR INTEGRATION */
    .carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.7);
    }

    /* ENHANCED DOTS */
    .carousel-dots {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 20;
    }

    .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
    }

    .dot:hover {
        background: rgba(220, 181, 151, 0.6);
        transform: scale(1.2);
    }

    .dot.active {
        background: rgba(220, 181, 151, 1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.3);
    }

    /* FAQ SECTION STYLES */
    .faq-section {
        padding: 120px 0;
        background: var(--bg-primary);
        position: relative;
        overflow: hidden;
    }

    .faq-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* FAQ TITLE SECTION */
    .faq-title-section {
        text-align: center;
        margin-bottom: 80px;
    }

    .faq-pre-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .faq-main-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .faq-title-text {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.1;
        margin: 0;
        transition: all 0.4s ease;
    }

    .faq-title-text.highlight {
        background: linear-gradient(135deg, var(--accent-color) 0%, #f4a261 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .faq-description {
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--text-secondary);
        font-weight: 400;
    }

    /* FAQ CONTENT */
    .faq-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-categories {
        display: grid;
        gap: 40px;
        margin-bottom: 60px;
    }

    /* FAQ CATEGORY */
    .faq-category {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .faq-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-color);
    }

    .faq-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color) 0%, #f4a261 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .faq-category:hover::before {
        opacity: 1;
    }

    .faq-category.active::before {
        opacity: 1;
    }

    /* Category Content Container */
    .faq-category-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        padding: 0 32px 0 32px;
    }

    .faq-category.active .faq-category-content {
        max-height: 2000px;
        padding: 0 32px 32px 32px;
    }

    /* CATEGORY HEADER */
    .category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 32px;
        transition: all 0.3s ease;
    }

    .category-header-left {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .category-expand-icon {
        width: 24px;
        height: 24px;
        color: var(--accent-color);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-category.active .category-expand-icon {
        transform: rotate(180deg);
    }

    .category-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--accent-color) 0%, #f4a261 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    .category-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
    }

    /* FAQ ITEMS */
    .faq-items {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-item {
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--accent-color);
    }

    .faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: left;
    }

    .faq-question:hover {
        background: rgba(220, 181, 151, 0.05);
    }

    .question-text {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.5;
        flex: 1;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        color: var(--accent-color);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: rgba(220, 181, 151, 0.02);
        padding: 0;
    }

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

    .faq-answer p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-secondary);
        margin: 0;
        padding-top: 16px;
    }

    /* FAQ CTA */
    .faq-cta {
        text-align: center;
        padding: 60px 40px;
        background: linear-gradient(135deg, rgba(220, 181, 151, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        position: relative;
        overflow: hidden;
    }

    .faq-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(220, 181, 151, 0.05) 0%, rgba(244, 162, 97, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .faq-cta:hover::before {
        opacity: 1;
    }

    .faq-cta-content {
        position: relative;
        z-index: 1;
    }

    .faq-cta-title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .faq-cta-text {
        font-size: 1.125rem;
        color: var(--text-secondary);
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .faq-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--accent-color) 0%, #f4a261 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .faq-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(220, 181, 151, 0.4);
    }

    .faq-cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .faq-cta-button:hover::before {
        left: 100%;
    }

    .cta-button-arrow {
        transition: transform 0.3s ease;
    }

    .faq-cta-button:hover .cta-button-arrow {
        transform: translateX(4px);
    }

    /* FAQ BACKGROUND ELEMENTS */
    .faq-bg-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .faq-bg-elements .floating-element {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(220, 181, 151, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
        animation: float 6s ease-in-out infinite;
    }

    .faq-bg-elements .element-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .faq-bg-elements .element-2 {
        width: 120px;
        height: 120px;
        top: 60%;
        right: 15%;
        animation-delay: 2s;
    }

    .faq-bg-elements .element-3 {
        width: 60px;
        height: 60px;
        bottom: 20%;
        left: 20%;
        animation-delay: 4s;
    }

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

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
        .faq-section {
            padding: 80px 0;
        }

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

        .faq-title-section {
            margin-bottom: 60px;
        }

        .faq-main-title {
            flex-direction: column;
            gap: 8px;
        }

        .faq-category.active .faq-category-content {
            padding: 0 24px 24px 24px;
        }

        .category-header {
            padding: 24px;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .category-header-left {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .category-icon {
            width: 40px;
            height: 40px;
        }

        .category-title {
            font-size: 1.25rem;
        }

        .faq-question {
            padding: 16px 20px;
        }

        .question-text {
            font-size: 1rem;
        }

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

        .faq-cta {
            padding: 40px 24px;
        }

        .faq-cta-button {
            padding: 14px 28px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .faq-category.active .faq-category-content {
            padding: 0 20px 20px 20px;
        }

        .category-header {
            padding: 20px;
        }

        .faq-question {
            padding: 14px 16px;
        }

        .question-text {
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 16px 14px;
        }

        .faq-answer p {
            font-size: 0.9rem;
        }

        .faq-cta {
            padding: 32px 20px;
        }

        .faq-cta-button {
            padding: 12px 24px;
            font-size: 0.95rem;
        }
    }

/* AI Service Header Layout */
.ai-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Inline Iris Button Styles */
.iris-pill-button.iris-inline {
    padding: 8px 16px;
    font-size: 12px;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
}

.iris-inline .iris-avatar-wrapper {
    width: 24px;
    height: 24px;
}

.iris-inline .iris-ai-icon {
    width: 14px;
    height: 14px;
}

.iris-inline .iris-text {
    font-size: 12px;
    font-weight: 600;
}

.iris-inline .iris-arrow-wrapper {
    width: 20px;
    height: 20px;
}

.iris-inline .iris-arrow {
    width: 10px;
    height: 10px;
}

/* Responsive adjustments for AI header */
@media (max-width: 768px) {
    .ai-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .iris-pill-button.iris-inline {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .ai-service-header {
        gap: 8px;
    }

    .iris-pill-button.iris-inline {
        padding: 6px 12px;
        font-size: 11px;
        gap: 6px;
    }
}

/* CAPTCHA STYLES */
.captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    padding: 16px;
    margin: 20px 0;
    min-height: 60px;
    position: relative;
}

[data-theme="dark"] .captcha-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.captcha-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #d3d3d3;
    border-radius: 3px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

[data-theme="dark"] .checkbox-custom {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.checkmark {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    color: #4285f4;
}

.captcha-checkbox:checked + .checkbox-custom {
    background: #4285f4;
    border-color: #4285f4;
}

.captcha-checkbox:checked + .checkbox-custom .checkmark {
    opacity: 1;
    transform: scale(1);
    color: white;
}

.captcha-checkbox:hover + .checkbox-custom {
    border-color: #4285f4;
}

.captcha-label {
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

.captcha-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 12px;
}

[data-theme="dark"] .captcha-icon {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.captcha-text {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    margin-bottom: 2px;
}

[data-theme="dark"] .captcha-text {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-links {
    display: flex;
    gap: 4px;
    font-size: 8px;
}

.captcha-link {
    color: #4285f4;
    text-decoration: none;
    font-size: 8px;
}

.captcha-link:hover {
    text-decoration: underline;
}

/* Submit button disabled state */
.form-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive captcha */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
    }

    .captcha-checkbox-wrapper {
        align-self: flex-start;
    }

    .captcha-icon {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .captcha-container {
        padding: 10px;
    }

    .captcha-brand {
        align-items: center;
    }
}

    /* THEME ADAPTATIONS */
    [data-theme="light"] .faq-category {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .faq-category:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    [data-theme="light"] .faq-cta {
        background: linear-gradient(135deg, rgba(220, 181, 151, 0.15) 0%, rgba(244, 162, 97, 0.15) 100%);
    }

    [data-theme="light"] .faq-cta::before {
        background: linear-gradient(135deg, rgba(220, 181, 151, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    }
