/* Global Styles */
:root {
    --primary-orange: #EB6C49;
    --light-orange: #F9A66C;
    --primary-text: #333333;
    --secondary-text: #666666;
    --background-color: #FFFFFF;
    --section-padding: 100px 0;
    --gray-light: #F5F5F5;
    --gray-medium: #EEEEEE;
    --gray-dark: #E0E0E0;
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 4px 20px rgba(235, 108, 73, 0.08);
    --shadow-medium: 0 8px 30px rgba(235, 108, 73, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    --gradient-subtle: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 56px;
    letter-spacing: -0.005em;
}

h2 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 40px 40px;
    transition: var(--transition-standard);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-subtle);
}

@media (max-width: 768px) {
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

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

.logo {
    height: 48px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: var(--transition-standard);
    border-radius: 1px;
}

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

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

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

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--primary-orange);
}

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

.nav-links a.nav-cta {
    color: var(--primary-orange);
    background: #ffffff;
    padding: 8px 20px;
    border: 2px solid var(--primary-orange);
    border-radius: 30px;
    margin-left: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-links a.nav-cta:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.nav-links a.nav-cta::after {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10000;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .nav-links {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 90%;
        max-width: 400px;
        background: #ffffff;
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 30px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 10001;
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        filter: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links a {
        color: #000000;
        margin: 12px 0;
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        pointer-events: auto;
        position: relative;
        z-index: 10000;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 12px 20px;
        border-radius: 10px;
        width: 100%;
        display: block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: 0.3px;
    }

    .nav-links a:hover {
        color: var(--primary-orange);
        background: rgba(235, 108, 73, 0.1);
        transform: translateY(-2px);
    }

    .nav-links a.nav-cta {
        margin: 20px 0 0 0;
        background: var(--gradient-primary);
        color: #ffffff !important;
        border: none;
        cursor: pointer;
        pointer-events: auto;
        position: relative;
        z-index: 10000;
        padding: 16px 32px;
        border-radius: 25px;
        text-align: center;
        display: inline-block;
        font-weight: 700;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(235, 108, 73, 0.3);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: 0.5px;
        text-shadow: none;
    }

    .nav-links a.nav-cta:hover {
        background: linear-gradient(135deg, #d45a3a 0%, #e89b5d 100%);
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(235, 108, 73, 0.4);
    }

    .nav-overlay {
        display: none;
    }

    .nav-overlay.active {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    /* Ensure navbar is visible on mobile */
    .navbar {
        padding: 15px 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9997;
    }

    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('img/background-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    /* Ensure enough space for scroll indicator */
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Data overlay canvas sits above darkening layer but below content */
.hero .data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* same layer as ::before, but canvas will render after; keep it under content */
    pointer-events: none;
    opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
    .hero .data-overlay {
        opacity: 0.6; /* keep subtle in reduced motion */
    }
}

/* Override hero centering for navbar */
.hero .navbar {
    align-self: stretch;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block !important;
}

.hero .navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    flex-direction: row !important;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    margin-top: auto;
    margin-bottom: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
}

.tagline {
    font-size: 24px;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 108, 73, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 108, 73, 0.3);
    background: linear-gradient(135deg, #e65f3c 0%, #f89b5d 100%);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
    color: #ffffff;
    /* Ensure visibility on desktop */
    visibility: visible;
    opacity: 0.7;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s ease infinite;
}

.arrow {
    margin-top: 10px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    animation: arrow 1.5s ease infinite;
    margin: -6px;
}

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

@keyframes arrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Ensure scroll indicator is visible on desktop */
@media (min-width: 769px) {
    .scroll-indicator {
        display: flex !important;
        visibility: visible !important;
        opacity: 0.7 !important;
        position: absolute !important;
        bottom: 120px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
    }
}

/* Debug: Force scroll indicator visibility */
.scroll-indicator {
    display: flex !important;
    visibility: visible !important;
    opacity: 0.7 !important;
    position: absolute !important;
    bottom: 120px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
}

/* Ensure the mouse and wheel are visible */
.scroll-indicator .mouse {
    border: 2px solid #ffffff !important;
    visibility: visible !important;
}

.scroll-indicator .wheel {
    background-color: #ffffff !important;
    visibility: visible !important;
    animation: scroll 1.5s ease infinite !important;
}

.scroll-indicator .arrow span {
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
    visibility: visible !important;
    animation: arrow 1.5s ease infinite !important;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--gray-light);
}

.features h2 {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features .subtext {
    font-size: 18px;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 40px;
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-dark);
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-text);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

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

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

.tab-button.active::after {
    width: 100%;
}

/* Feature Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.feature-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-medium) 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.image-placeholder svg {
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-placeholder svg path {
    stroke: var(--primary-orange);
}

.image-placeholder p {
    color: var(--secondary-text);
    font-size: 14px;
}

.feature-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-details p {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.5s forwards;
    border-left: 2px solid transparent;
    padding-left: 15px;
    transition: border-color 0.3s ease;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-list li svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-list li svg path {
    stroke: var(--primary-orange);
}

.feature-list li span {
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary-text);
}

/* Brands Section */
.brands {
    padding: var(--section-padding);
}

.brands .subtext {
    font-size: 18px;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 40px;
    margin-top: -30px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.brand-card.revealed {
    animation: fadeInUp 0.8s forwards;
}

.brand-card:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-card:nth-child(2) {
    animation-delay: 0.3s;
}

.brand-card:nth-child(3) {
    animation-delay: 0.5s;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.brand-card .image-placeholder {
    height: 260px;
    border-radius: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--background-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.brand-card .image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 108, 73, 0.05) 0%, rgba(249, 166, 108, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .image-placeholder::after {
    opacity: 1;
}

.brand-card .image-placeholder svg {
    width: 140px;
    height: 140px;
    margin-bottom: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-card:hover .image-placeholder svg {
    transform: scale(1.1);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card .content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.brand-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: var(--primary-text);
    font-weight: 600;
}

.brand-tagline {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    font-size: 16px;
}

.brand-card p {
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.5;
}

.brand-card svg path { 
    stroke: var(--primary-orange);
}

.brand-card .image-placeholder img.brand-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .image-placeholder img.brand-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--primary-text);
    padding: 60px 0 20px;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 500;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin: 0 0 30px;
    justify-content: flex-start;
}

.footer-section .social-links a {
    color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    color: var(--light-orange);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.footer-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 108, 73, 0.2);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 108, 73, 0.3);
}

/* Footer Enhancements */
.footer-logo {
    width: 80%;
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.microsoft-partner {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.microsoft-partner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.microsoft-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.microsoft-logo:hover {
    opacity: 1;
}

.team-photo {
    margin-bottom: 30px;
}

.team-photo .image-placeholder {
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.team-photo .image-placeholder:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.team-photo .image-placeholder svg {
    stroke: var(--light-orange);
    opacity: 0.9;
}

.team-photo .image-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.hero .tagline {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero .cta-button {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.feature-grid.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Gradient Effects */
.feature-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 166, 108, 0.1) 0%, rgba(249, 166, 108, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

/* Enhanced Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile Phone Number and Link Styling Fix */
/* Prevent automatic phone number detection and blue link styling on mobile */
@media (max-width: 768px) {
    /* Disable automatic phone number detection and styling */
    * {
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Allow text selection for input fields and text areas */
    input, textarea, select {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Override any automatic phone number styling */
    p, span, div {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    /* Specifically target phone number elements in footer */
    #contact-phone, #contact-landline {
        color: rgba(255, 255, 255, 0.7) !important;
        text-decoration: none !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        cursor: default !important;
    }
    
    /* Ensure footer links maintain their styling */
    .footer-section a {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    /* Override any automatic link detection styling */
    a[href^="tel:"], a[href^="mailto:"] {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    /* Prevent iOS Safari from making phone numbers clickable */
    .contact-info p {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }
    
    /* Additional protection for any phone numbers in the content */
    .company-info p, .footer-section p {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }
    
    /* Ensure all text elements maintain their intended color */
    body, p, span, div, h1, h2, h3, h4, h5, h6 {
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        order: 1;
    }
    
    .feature-details {
        order: 2;
    }
}

/* Medium screens - show burger menu (do not hide nav panel structure) */
@media (max-width: 900px) {
    .burger-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .hero .container {
        padding: 100px 20px 60px;
        margin-top: 0;
    }

    .hero .tagline {
        color: #ffffff !important;
    }
    
    .feature-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .image-placeholder {
        height: 300px;
    }

    .hero h1 {
        background-size: 150% auto;
    }
    
    .feature-grid::before {
        display: none;
    }
    
    .brands .subtext {
        margin-top: -20px;
        margin-bottom: 30px;
    }

    .footer-logo {
        max-width: 160px;
    }
    
    .microsoft-logo {
        max-width: 160px;
    }
    
    .team-photo .image-placeholder {
        height: 160px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-card .image-placeholder {
        height: 220px;
    }
    
    .brand-card .image-placeholder svg {
        width: 120px;
        height: 120px;
    }

    .scroll-indicator {
        display: none;
        visibility: hidden;
    }
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--gray-light);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 10px;
}

.team-section .subtext {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.team-photo-large {
    margin: 60px auto;
    max-width: 800px;
}

.team-photo-large .image-placeholder {
    height: 400px;
    background: var(--background-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-large .image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-photo-large svg {
    margin-bottom: 20px;
    stroke: var(--primary-orange);
}

.team-photo-large p {
    font-size: 18px;
    color: var(--secondary-text);
}

.social-links-container {
    text-align: center;
    margin-top: 40px;
}

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

.social-links-container .social-links a {
    color: var(--primary-text);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links-container .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-orange);
}

/* Updated Footer Styles */
.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin: 0 0 30px;
    justify-content: flex-start;
}

.company-info {
    margin-bottom: 20px;
}

.company-info h4 {
    color: var(--light-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-info {
    margin-bottom: 30px;
}

.footer-section p {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-photo-large .image-placeholder {
        height: 300px;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .social-links-container .social-links {
        gap: 20px;
    }
    
    .social-links-container .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Modal Overlay */
#form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

#form-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-cover-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

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

.form-content {
    padding: 32px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.form-title {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--primary-text);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--secondary-text);
    margin-bottom: 32px;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-text);
    font-size: 13px;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
    color: var(--primary-text);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-orange);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(235, 108, 73, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option:disabled {
    color: #999;
    font-style: italic;
}

.form-submit {
    margin-top: 32px;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(235, 108, 73, 0.2);
}

.close-form-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.close-form-btn:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 16px;
        border-radius: 10px;
    }

    .form-cover-image {
        height: 160px;
        border-radius: 10px 10px 0 0;
    }

    .form-content {
        padding: 24px;
        border-radius: 0 0 10px 10px;
    }
}

/* Feature Image Styles */
.feature-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6px;
    align-items: center;
}

.feature-details {
    padding-left: 0;
}

.feature-details h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .feature-details {
        padding-left: 0;
        text-align: center;
    }
}
