/**
 * Lockstry Website Styles
 * Main stylesheet for the Lockstry website
 */

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #000000 0%, #1e1e1e 50%, #000000 100%);
    color: #f5f5f5;
    min-height: 200vh;
    overflow-x: hidden;
    position: relative;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Ensure the whole page content stays within bounds */
#particles-js {
    width: 100vw;
    overflow: hidden;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titlePulse {
    0% {
        filter: drop-shadow(0 0 0px rgba(255, 62, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(255, 62, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 62, 0, 0.7));
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -20%) scale(0.95);
        background: radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.18) 10%,
            rgba(255, 255, 255, 0.12) 20%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0) 70%
        );
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -20%) scale(1);
        background: radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.22) 10%,
            rgba(255, 255, 255, 0.15) 20%,
            rgba(255, 255, 255, 0.07) 40%,
            rgba(255, 255, 255, 0) 70%
        );
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -20%) scale(1.05);
        background: radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.2) 10%,
            rgba(255, 255, 255, 0.14) 20%,
            rgba(255, 255, 255, 0.06) 40%,
            rgba(255, 255, 255, 0) 70%
        );
    }
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ===== HEADER STYLES ===== */
/* Centered Header */
.centered-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}

.centered-header .header-content {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.centered-header .logo-image {
    height: 45px;
    width: auto;
}

.centered-header .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.centered-header .nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.centered-header .nav-link:hover {
    color: #FF3E00;
}

.centered-header.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Scroll Header */
.scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(30, 30, 30, 0.85) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.scroll-header.visible {
    transform: translateY(0);
}

.scroll-header .logo-container {
    display: flex;
    align-items: center;
}

.scroll-header .logo-link {
    display: block;
    cursor: pointer;
}

.scroll-header .logo-image {
    height: 60px;
    width: auto;
}

.scroll-header .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-header .nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.scroll-header .nav-link:hover {
    color: #FF3E00;
}

/* ===== HERO SECTION STYLES ===== */
.header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding-top: 450px;
    padding-bottom: 50px;
}

.section-transition {
    position: relative;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    margin-top: -100px;
    z-index: 2;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 5%;
    max-width: 800px;
}

.title-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.introducing {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
}

.pad {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FF7E40, #FF3E00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 15px;
    opacity: 0;
}

.pad.fadeIn {
    animation: fadeIn 1s ease-out forwards, titlePulse 4s infinite alternate ease-in-out 1s;
}

/* Byline styles */
.byline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
}

.by-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.0rem;
    color: white;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.0rem;
    font-weight: 700;
    color: #FF3E00;
    display: inline-block;
}

p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 2s forwards;
}

/* Logo image styles */
.logo-image-container {
    margin-top: -120px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 2s forwards;
    position: relative;
}

.logo-image-container::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.18) 10%,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 2;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -20%);
    pointer-events: none;
    animation: glowPulse 5s infinite alternate ease-in-out;
}

.small-logo {
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transform: translateY(-10px);
    position: relative;
    z-index: 3;
    transform-origin: center center;
}

/* CTA Buttons */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.8s forwards;
    position: relative;
    z-index: 10;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    width: fit-content;
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 62, 0, 0.2);
}

.book-demo, .see-features {
    background: #FF3E00;
}

/* ===== FEATURES SECTION STYLES ===== */
.tenant-solutions-section, .features-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0;
}

.features-section {
    margin-top: -50px;
}

.features-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* Image container animations */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.image-container.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-right {
    transform: translateX(100px);
}

/* Media content */
.lock-video {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 20px 25px rgba(255, 255, 255, 0.2));
    border-radius: 8px;
}

.side-phone-image {
    max-width: 200%;
    height: auto;
    background-color: transparent;
    border: none;
}

/* Features content */
.features-content {
    flex: 1;
    padding: 30px;
}

.features-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #FF3E00;
}

.feature-item p {
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: none;
    opacity: 1;
}

/* ===== COMMON SECTION STYLES ===== */
.integration-section, .faq-section, .contact-section {
    min-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.integration-container, .faq-container, .contact-container {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 40px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 62, 0, 0.2);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.5s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.integration-container::before, .faq-container::before, .contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 30%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.integration-container:hover::before, .faq-container:hover::before, .contact-container:hover::before {
    opacity: 1;
}

.integration-container:hover, .faq-container:hover, .contact-container:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.integration-header, .faq-header, .contact-header {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.integration-header::after, .faq-header::after, .contact-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 62, 0, 0.7), rgba(255, 62, 0, 0.2));
    border-radius: 3px;
}

/* ===== INTEGRATION & FAQ COMMON STYLES ===== */
.integration-points, .faq-grid {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.integration-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

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

.integration-point, .faq-point {
    width: 100%;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid #FF3E00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-point:hover, .faq-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dropdown styles for both integration and FAQ */
.point-header {
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.point-header:hover {
    background-color: rgba(50, 50, 50, 0.5);
}

.point-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.point-header.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.point-header h3 {
    font-size: 1.4rem;
    color: #FFFFFF;
    padding-right: 25px;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

.integration-point .point-header h3 {
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-right: 20px;
}

.integration-point .point-header:hover h3 {
    transform: translateX(5px);
}

.dropdown-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dropdown-content.active {
    max-height: 400px;
    padding: 0 20px 20px;
}

.dropdown-content .description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    color: #d0d0d0;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* ===== CONTACT FORM STYLES ===== */
.contact-section {
    height: auto !important;
    padding: 80px 0;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    width: 100%;
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
}

.required {
    color: #FF3E00;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF3E00;
    box-shadow: 0 0 8px rgba(255, 62, 0, 0.3);
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background: #FF3E00;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: fit-content;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.submit-button:disabled {
    background: #7a7a7a;
    transform: none;
    cursor: not-allowed;
    box-shadow: none;
}

/* Form message styles */
.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out forwards;
}

.form-message.success {
    background: rgba(46, 125, 50, 0.2);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.form-message.error {
    background: rgba(198, 40, 40, 0.2);
    color: #e57373;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 20px;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 62, 0, 0.3);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
    gap: 40px;
}

/* Logo section */
.footer-logo-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 0;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #a0a0a0;
    opacity: 1;
    animation: none;
}

/* Navigation section */
.footer-nav-section, .footer-contact-section {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link, .footer-email {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-link {
    font-size: 0.95rem;
}

.footer-link:hover, .footer-email:hover {
    color: #FF3E00;
}

.footer-email {
    font-size: 1rem;
}

/* Social links */
.social-links {
    margin-top: -25px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.linkedin-icon {
    fill: #a0a0a0;
    transition: fill 0.3s;
}

.social-link:hover .linkedin-icon {
    fill: #FF3E00;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
}

.copyright {
    color: #707070;
    font-size: 0.85rem;
    margin-bottom: 0;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    opacity: 1;
    animation: none;
}

.heart {
    color: #FF3E00;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* ===== HEADER & NAVIGATION FIXES ===== */
    /* Fix title container layout */
    .title-container {
        flex-direction: column;
        align-items: center;
    }
    
    /* Fix main header layout */
    .header {
        padding-top: 160px;
        height: auto;
        min-height: 100vh;
    }
    
    /* Fix navigation in centered header */
    .centered-header .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 95%;
        border-radius: 20px;
    }
    
    .centered-header .nav-links,
    .scroll-header .nav-links {
            display: none;
    }
    
    .scroll-header .logo-image {
        height: 45px;
    }
    
    .scroll-header .nav-links {
        gap: 10px;
    }
    
    .scroll-header .nav-link {
        font-size: 0.9rem;
    }
    
    /* ===== TYPOGRAPHY ADJUSTMENTS ===== */
    .introducing, .pad {
        font-size: 2.2rem;
        margin-bottom: 15px;
        margin-top: -5vh;
    }
    
    .byline {
        margin-bottom: -2vh;
        margin-top: -1vh;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .by-text {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .integration-header, .faq-header, .contact-header, .solutions-header {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .features-content h2 {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    /* ===== LAYOUT ADJUSTMENTS ===== */
    .features-container {
        flex-direction: column;
    }
    
    #app-features .features-container {
        flex-direction: column-reverse;
    }
    
    .integration-container, .faq-container, .contact-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* ===== COMPONENT SPECIFIC ADJUSTMENTS ===== */
    /* Dropdown elements */
    .point-header h3 {
        font-size: 1.2rem;
        min-height: 0;
    }
    
    .dropdown-content .description {
        font-size: 0.85rem;
    }
    
    /* Form elements */
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    /* Submit button fix for mobile */
    .submit-button {
        padding: 12px 25px;
        display: block !important;
        width: 100% !important;
        margin: 20px 0 10px !important;
        position: relative;
        z-index: 10;
        font-size: 1.1rem;
    }
    
    /* Fix contact section height for mobile */
    .contact-section {
        padding-bottom: 50px !important;
    }
    
    /* Add padding to form to ensure submit button visibility */
    .contact-form {
        padding-bottom: 40px !important;
    }
    
    /* Limit textarea height on mobile */
    .form-group textarea {
        max-height: 150px;
    }
    
    /* Button adjustments */
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .cta-button {
        padding: 12px 0;
        font-size: 0.9rem;
        width: 160px;
        text-align: center;
    }
    
    /* Logo positioning for mobile */
    .logo-image-container {
        margin-top: -15vh;
    }
    
    .small-logo {
        max-width: 80%;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
        transform: translateY(-8px);
    }
    
    .image-container.image-right {
        margin-right: 7vh;
        margin-top: 4vh;
        margin-bottom: -2vh;
        max-height: 100%;
        max-width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* Fixed sizing and spacing for smallest screens */
    .introducing {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .pad {
        font-size: 3.4rem;
        margin-top: 5px;
        display: block;
    }
    
    /* Adjust header spacing for smallest screens */
    .header {
        padding-top: 180px;
    }
    
    /* Simplify header for very small screens */
    .centered-header .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .centered-header .nav-link {
        padding: 5px 10px;
    }
    
    /* Hide navigation in scroll header on very small screens */
    .scroll-header .nav-links {
        display: none;
    }
    
    /* Center logo in scroll header */
    .scroll-header .logo-container {
        width: 100%;
        justify-content: center;
    }
    
    /* Additional submit button styling for very small screens */
    .submit-button {
        padding: 15px !important;
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Ensure contact form fits properly on smallest screens */
    .contact-container {
        padding-bottom: 40px;
    }
    
    /* Integration section adjustments */
    .integration-point .dropdown-content.active {
        max-height: 1000px;
    }
    
    .integration-point .point-header h3 {
        padding-right: 40px;
        min-height: auto;
        justify-content: flex-start;
        text-align: left;
    }
    
    /* Adjust section heights */
    .integration-section, .faq-section {
        height: auto;
        min-height: 90vh;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
