/* Mobile CSS for AURUME */

@media (max-width: 899px) {
    /* Fix scroll behavior for mobile */
    html, body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    .main-header{
        position: absolute;
    }
    /* Remove scroll snap effect */
    .screen {
        scroll-snap-type: none;
        height: auto !important;
        overflow-y: visible;
        overflow-x: hidden;
        position: relative;
    }

    section.hero {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        height: 100vh;
    }

    /* General mobile adjustments */
    .section {
        height: auto !important;
        min-height: auto;
        scroll-snap-align: none;
        margin-top: -1px;
    }

    .is-fullheight {
        height: auto !important;
        min-height: auto;
    }

    /* Hero section adjustments */
    .main-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .highlight-wrapper {
        font-size: 2.5rem !important;
        margin-top: 30px;
    }

    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }

    .description {
        font-size: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .subtitle {
        font-size: 1rem !important;
    }

    .scroll-button {
        bottom: 50px;
    }

    /* Hide desktop sections on mobile */
    .services-section, .why-us-section {
        display: none !important;
    }

    /* Mobile Services Section - Improved for better mobile experience */
    .mobile-services-section {
        display: block;
        padding: 4rem 1rem;
        background: #101936;
        position: relative;
        overflow: hidden;
        min-height: auto !important;
        height: auto !important;
    }

    .mobile-services-title {
        color: var(--title-color);
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }

    .mobile-services-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gold-color);
    }

    .mobile-services-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .mobile-service-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 1.2rem;
        transition: all 0.3s ease;
        border-left: 3px solid var(--gold-color);
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-service-item:hover, .mobile-service-item:active {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-service-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.8rem;
    }

    .mobile-service-title {
        color: var(--title-color);
        font-size: 1.3rem;
        font-family: "Libre Baskerville", serif;
        margin: 0;
    }

    .mobile-service-title::first-letter {
        color: var(--gold-color);
        font-size: 1.5em;
        font-weight: bold;
    }

    .mobile-service-arrow {
        color: var(--gold-color);
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .mobile-service-item:hover .mobile-service-arrow {
        transform: translateX(5px);
    }

    .mobile-service-description {
        color: #cbcbcb;
        font-size: 0.95rem;
        line-height: 1.5;
        font-family: "Open Sans", serif;
        margin-bottom: 1rem;
    }

    .mobile-service-image-container {
        width: 100%;
        height: 180px;
        overflow: hidden;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .mobile-service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .mobile-service-item:hover .mobile-service-image {
        transform: scale(1.05);
    }

    /* Background elements */
    .mobile-services-bg {
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 250px;
        opacity: 0.15;
        z-index: 0;
    }

    /* Mobile Why Us Section */
    .mobile-why-us-section {
        display: block;
        padding: 3rem 1.5rem;
        background: #101936;
        position: relative;
        z-index: 1;
    }

    .mobile-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mobile-tab {
        padding: 0.8rem 1.2rem;
        color: var(--title-color);
        background: transparent;
        border: none;
        font-family: "Libre Baskerville", serif;
        font-size: 1rem;
        cursor: pointer;
        opacity: 0.6;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-tab.active {
        opacity: 1;
        color: var(--gold-color);
        border-bottom: 2px solid var(--gold-color);
    }

    .mobile-tab-content {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

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

    .mobile-why-us-title {
        color: var(--title-color);
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
    }

    .mobile-why-us-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gold-color);
    }

    .mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 1.5rem;
        transition: transform 0.3s ease;
    }

    .mobile-card:hover {
        transform: translateY(-5px);
    }

    .mobile-card h3 {
        color: var(--gold-color);
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        font-family: "Libre Baskerville", serif;
    }

    .mobile-card p {
        color: #cbcbcb;
        font-size: 0.95rem;
        line-height: 1.5;
        font-family: "Open Sans", serif;
    }

    /* Mobile Who We Are Section */
    .who-we-are {
        padding: 0;
    }

    .who-we-are-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .image-side {
        width: 100%;
        order: 1;
    }

    .team-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .content-side {
        width: 100%;
        order: 2;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-side .subtitle {
        font-size: 0.9rem !important;
        letter-spacing: 1.5px;
        margin-bottom: 0.8rem !important;
    }

    .content-side .title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1.2rem !important;
    }

    .content-side .description {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    /* Adjust fixed contact buttons for mobile */
    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
    }

    .fixed-contact-button {
        width: 40px;
        height: 40px;
    }
}
