/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #737373;
    direction: rtl;
    text-align: right;
    background-color: #fafafa;
    padding-top: 80px; /* space for fixed navbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c2c2c;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-cta {
    margin-left: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.nav-logo .logo-img:hover {
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #f9b457;
    background: rgba(249, 180, 87, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f9b457;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: calc(100% - 32px);
}

/* CTA Button in Navigation */
.nav-cta {
    background: #f9b457 !important;
    color: white !important;
    font-weight: 600;
    margin-right: 16px;
    border-radius: 25px;
    padding: 10px 20px !important;
    box-shadow: 0 4px 15px rgba(249, 180, 87, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e8a347 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 180, 87, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    /* subtract navbar height so hero doesn't go under fixed navbar */
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(249, 180, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    min-height: calc(100vh - 140px);
}

.hero-content {
    z-index: 2;
    max-width: 650px;
    padding-right: 60px;
    order: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #737373;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 450px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* Buttons */
.btn-primary {
    background: #f9b457;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 180, 87, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e8a347;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 180, 87, 0.4);
}

.btn-secondary {
    color: #737373;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #f9b457;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f9b457;
    transition: width 0.3s ease;
}

.btn-secondary:hover::after {
    width: 100%;
}

/* Hero Image/Screenshots */
.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    padding: 40px 0;
    order: 2;
}

.app-screenshots {
    display: flex;
    gap: 35px;
    align-items: center;
    perspective: 1000px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.screenshot-container {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.screenshot-container:nth-child(1) {
    transform: rotateY(-8deg) rotateX(2deg) scale(0.9);
    z-index: 1;
}

.screenshot-container:nth-child(2) {
    transform: scale(1);
    z-index: 3;
}

.screenshot-container:nth-child(3) {
    transform: rotateY(8deg) rotateX(-2deg) scale(0.9);
    z-index: 2;
}

.screenshot-container:hover {
    transform: scale(1.02) rotateY(0deg) rotateX(0deg);
    z-index: 10;
}

.app-screenshot {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid #2c2c2c;
    transition: all 0.3s ease;
    display: block;
    object-fit: cover;
}

.app-screenshot:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.screenshot-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(249, 180, 87, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.screenshot-container:hover .screenshot-label {
    opacity: 1;
    bottom: -30px;
}

.main-screenshot .screenshot-label {
    background: rgba(44, 44, 44, 0.9);
}

/* Fallback styling if images don't load */
.app-screenshot {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: block;
}

/* Old mockup styles - keeping for reference but can be removed */
.mockup-container {
    display: flex;
    gap: 30px;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #2c2c2c;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.search-screen {
    transform: rotateY(-20deg) rotateX(5deg) scale(0.9);
    z-index: 1;
}

.results-screen {
    transform: rotateY(0deg) rotateX(0deg) scale(1);
    z-index: 3;
}

.booking-screen {
    transform: rotateY(20deg) rotateX(-5deg) scale(0.9);
    z-index: 2;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.screen-placeholder {
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.placeholder-header {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #f9b457;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.placeholder-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.placeholder-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px 12px;
    text-align: center;
    color: #737373;
    font-size: 12px;
    font-weight: 500;
    border: 2px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.placeholder-box:hover {
    border-color: #f9b457;
    background: #fff9f0;
}

.search-box {
    background: linear-gradient(135deg, #f9b457, #e8a347);
    color: white;
    border: none;
}

.button-box {
    background: #f9b457;
    color: white;
    border: none;
    font-weight: 600;
}

.result-item {
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.booking-info {
    background: #4CAF50;
    color: white;
    border: none;
}

.image-placeholder {
    margin-top: 15px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    border: 2px dashed #ccc;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '📱';
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.5;
}

.image-placeholder span {
    text-align: center;
    line-height: 1.3;
}

/* Old styles - keeping for compatibility */
.app-preview {
    padding: 30px 20px;
    height: 100%;
}

.preview-header {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #f9b457;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.trip-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-route {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

.trip-price {
    color: #f9b457;
    font-weight: 700;
    font-size: 16px;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #737373;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 180, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f9b457;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.feature-description {
    color: #737373;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Logos Section */
.logos {
    padding: 80px 0;
    background: #f9f9f9;
}

.logos-caption {
    text-align: center;
    font-size: 1.3rem;
    color: #737373;
    margin-bottom: 50px;
    font-weight: 400;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo {
    background: white;
    padding: 12px 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    /* DEBUG: temporary background to reveal logo area (remove when confirmed) */
    background: #f6f6f6;
}

.company-logo:hover {
    border-color: #f9b457;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.logo-image {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

/* Force logo images to be visible and remove any accidental hiding */
.company-logo img.logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 60px;
    height: auto;
    filter: none !important;
    background: transparent !important;
    /* DEBUG: if an image is transparent/white on white, show faint outline */
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03) inset;
}

/* Subtle border to make the logo area visible during testing */
.company-logo {
    box-shadow: none;
}

.company-logo:hover .logo-image {
    filter: none;
    transform: scale(1.05);
}

/* Removed fallback pseudo-element for logo images so real images display correctly */

.logo-placeholder {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    color: #737373;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: #f9b457;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons - Different Styles Throughout Page */
.floating-cta {
    text-align: center;
    margin: 60px 0;
    position: relative;
    z-index: 10;
}

.floating-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f9b457, #e8a347);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(249, 180, 87, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 180, 87, 0.5);
    background: linear-gradient(135deg, #e8a347, #d99538);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(249, 180, 87, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(249, 180, 87, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(249, 180, 87, 0.4); }
}

/* Banner CTA */
.banner-cta {
    background: linear-gradient(135deg, rgba(249, 180, 87, 0.1), rgba(249, 180, 87, 0.05));
    border: 2px solid #f9b457;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 600px;
    text-align: center;
}

.banner-content {
    padding: 40px 30px;
}

.banner-content h3 {
    color: #2c2c2c;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    color: #737373;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-btn {
    background: #2c2c2c;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.banner-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideInUp 0.5s ease;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-content {
    background: white;
    border: 2px solid #f9b457;
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-text {
    color: #f9b457;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.sticky-btn {
    background: #f9b457;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-btn:hover {
    background: #e8a347;
    transform: scale(1.05);
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer CTA */
.footer-cta-item {
    margin-top: 20px;
}

.footer-cta-btn {
    display: inline-block;
    background: transparent;
    color: #f9b457;
    border: 2px solid #f9b457;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #f9b457;
    color: white;
    transform: translateY(-2px);
}

/* Early Access Registration Form */
.early-access-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.early-access-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9b457, #e8a347);
}

.early-access-form h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-description {
    text-align: center;
    color: #737373;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.registration-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.registration-form .form-group {
    margin-bottom: 25px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.95rem;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Cairo', sans-serif;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #f9b457;
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 180, 87, 0.1);
}

/* Custom Checkbox */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #f9b457;
    border-color: #f9b457;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.registration-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient(135deg, #f9b457, #e8a347);
    border: none;
    box-shadow: 0 8px 25px rgba(249, 180, 87, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 20px;
}

.registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 180, 87, 0.4);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-radius: 20px;
    border: 2px solid #4CAF50;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-message h4 {
    color: #2c2c2c;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-stats {
    background: rgba(249, 180, 87, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(249, 180, 87, 0.3);
}

.success-stats span {
    color: #f9b457;
    font-weight: 600;
}

/* Early Access Section */
.early-access {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(249, 180, 87, 0.05) 0%, rgba(249, 180, 87, 0.1) 100%);
    position: relative;
}

.early-access-content {
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.form-container .iframe-wrapper {
    position: relative;
    width: 100%;
    /* default aspect ratio for forms; iframe will fill */
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.form-container .iframe-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 180, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #f9b457;
}

.team-card:hover::before {
    left: 100%;
}

.team-member-photo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f9b457;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.member-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 180, 87, 0.3);
}

/* Placeholder styling for missing images */
.member-photo[src$=".jpg"] {
    background: linear-gradient(135deg, #f9b457, #e8a347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.member-photo::before {
    content: '👤';
    font-size: 40px;
    color: white;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.member-role {
    color: #f9b457;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-description {
    color: #737373;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section - keeping old styles for reference */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: #f9b457;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f9b457;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    color: #2c2c2c;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #737373;
    font-size: 0.95rem;
    display: block;
    margin-top: 4px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b457;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.2rem;
    color: #f9b457;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #f9b457;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f9b457;
}

.contact-item span:not(.contact-icon) {
    color: #b0b0b0;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f9b457;
}

/* Footer social link icon styling */
.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bdbdbd;
}

.footer-social .social-link svg {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-social .social-link span {
    color: #bdbdbd;
}

.footer-social .social-link:hover svg,
.footer-social .social-link:hover span {
    color: #f9b457;
    fill: #f9b457;
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #737373;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Styles */
.page-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f9b457, #e8a347);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(249, 180, 87, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
}

.page-title {
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #737373;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Enhanced Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 180, 87, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-title {
    text-align: center;
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.stat-card.highlight {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9b457, #e8a347);
}

.stat-card.highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #f9b457;
}

.stat-card.highlight .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f9b457, #e8a347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card.highlight .stat-label {
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    color: #737373;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Thank You Section */\n.thank-you-section {\n    text-align: center;\n    background: white;\n    padding: 60px 40px;\n    border-radius: 20px;\n    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);\n    border: 1px solid #f0f0f0;\n    margin-top: 40px;\n    max-width: 500px;\n    margin-left: auto;\n    margin-right: auto;\n}\n\n.thank-you-icon {\n    font-size: 4rem;\n    margin-bottom: 20px;\n    display: block;\n}\n\n.thank-you-content h3 {\n    color: #2c2c2c;\n    font-size: 1.8rem;\n    margin-bottom: 15px;\n    font-weight: 600;\n}\n\n.thank-you-content p {\n    color: #737373;\n    font-size: 1.1rem;\n    line-height: 1.6;\n    margin-bottom: 30px;\n}\n\n/* Enhanced Contact Tabs */
.contact-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 25px 45px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #737373;
    min-width: 220px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 180, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: #f9b457;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 180, 87, 0.2);
    color: #f9b457;
}

.tab-btn.active {
    background: linear-gradient(135deg, #f9b457, #e8a347);
    border-color: #f9b457;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 180, 87, 0.4);
}

.tab-btn.active::before {
    display: none;
}

.tab-icon {
    font-size: 1.3rem;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tab-info h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tab-info p {
    font-size: 1.1rem;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #f9b457;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: #737373;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.tab-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.tab-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9b457, #e8a347);
}

.tab-form .form-group {
    margin-bottom: 25px;
}

.tab-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.95rem;
}

.tab-form input,
.tab-form select,
.tab-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.tab-form input:focus,
.tab-form select:focus,
.tab-form textarea:focus {
    outline: none;
    border-color: #f9b457;
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 180, 87, 0.1);
}

.tab-form .btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 18px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9b457, #e8a347);
    border: none;
    box-shadow: 0 8px 25px rgba(249, 180, 87, 0.3);
    transition: all 0.3s ease;
}

.tab-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 180, 87, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #f9b457;
    transform: translateY(-2px);
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #2c2c2c;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 5px;
}

.contact-card a {
    color: #f9b457;
    text-decoration: none;
}

.contact-card span {
    color: #737373;
    font-size: 0.9rem;
}

.contact-form {
    background: #fafafa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f9b457;
}

/* FAQ Page Styles */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.faq-category.active,
.faq-category:hover {
    border-color: #f9b457;
    background: #f9b457;
    color: white;
}

.faq-item {
    background: #fafafa;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    color: #2c2c2c;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #f9b457;
    font-weight: bold;
    transition: transform 0.3s ease;
    user-select: none;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #737373;
    line-height: 1.6;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-answer.active {
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for new pages */
@media (max-width: 768px) {
    /* match body padding to mobile navbar height */
    body {
        padding-top: 70px;
    }
    .page-title {
        font-size: 2.2rem;
    }
    
    /* Contact Tabs Mobile */
    .tab-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: auto;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-info h3 {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .stats-section {
        padding: 25px 20px;
    }
    
    .stats-title {
        font-size: 1.2rem;
    }
    
    .stat-card.highlight {
        padding: 20px 15px;
    }
    
    .stat-card.highlight .stat-number {
        font-size: 2rem;
    }
    
    .tab-info {
        padding: 25px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .tab-form {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 70px);
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
        padding: 40px 25px;
        max-width: 100%;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        order: 1;
    }
    
    .hero-image {
        order: 2;
        padding: 30px 15px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 25px;
        line-height: 1.15;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 90%;
        margin: 0 auto 40px;
        line-height: 1.5;
    }
    
    .hero-cta {
        align-items: center;
        gap: 20px;
    }
    
    /* CTA Buttons Mobile Styles */
    .floating-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .banner-cta {
        margin: 30px 15px;
    }
    
    .banner-content {
        padding: 25px 20px;
    }
    
    .banner-content h3 {
        font-size: 1.4rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .sticky-content {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .sticky-text {
        font-size: 0.8rem;
    }
    
    .sticky-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .footer-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* CTA Buttons Mobile Styles */
    .floating-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .banner-cta {
        margin: 30px 15px;
    }
    
    .banner-content {
        padding: 25px 20px;
    }
    
    .banner-content h3 {
        font-size: 1.4rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .sticky-content {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .sticky-text {
        font-size: 0.8rem;
    }
    
    .sticky-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .footer-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
        position: relative;
    }
    
    .nav-logo h1 {
        font-size: 28px;
    }

    /* center logo when menu hidden on mobile */
    .nav-logo {
        margin: 0 auto;
        text-align: center;
    }

    .nav-logo h1 {
        font-size: 22px;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #2c2c2c;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    /* place hamburger on the visual left for RTL layout (so it's easy to reach) */
    .mobile-menu-btn {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }

    /* hide desktop CTA on mobile to avoid overflow */
    .nav-cta {
        display: none !important;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(249, 180, 87, 0.1);
        color: #f9b457;
    }
    
    .app-screenshots {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 25px;
        padding: 0 10px;
        width: 100%;
        perspective: 1000px;
    }
    
    .screenshot-container {
        flex-shrink: 0;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .screenshot-container:nth-child(1) {
        transform: rotateY(-10deg) rotateX(3deg) scale(0.9);
        z-index: 1;
    }
    
    .screenshot-container:nth-child(2) {
        transform: rotateY(10deg) rotateX(-3deg) scale(0.9);
        z-index: 2;
    }
    
    .screenshot-container:nth-child(3) {
        display: none;
    }
    
    .screenshot-container:hover {
        transform: scale(1) rotateY(0deg) rotateX(0deg);
        z-index: 10;
    }
    
    .app-screenshot {
        width: 220px;
        max-height: 380px;
        border: 3px solid #2c2c2c;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }
    
    .app-screenshot:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    }
    
    .screenshot-label {
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(249, 180, 87, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .screenshot-container:hover .screenshot-label {
        opacity: 1;
        bottom: -30px;
    }
    
    .screenshot-label {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 10px;
        opacity: 1;
        display: block;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 800px;
    }
    
    .company-logo {
        padding: 15px 10px;
        min-height: 60px;
    }
    
    .logo-image {
        max-height: 35px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .early-access-form {
        padding: 30px 25px;
    }
    
    .early-access-form h3 {
        font-size: 1.6rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .registration-form input,
    .registration-form select {
        padding: 12px 15px;
    }
    
    .registration-btn {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    .form-container {
        margin: 0 20px;
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* CTA Buttons Small Mobile */
    .floating-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .banner-content h3 {
        font-size: 1.2rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .sticky-text,
    .sticky-btn {
        font-size: 0.75rem;
    }
    
    .hero {
        min-height: calc(100vh - 65px);
        padding: 35px 0;
    }
    
    .hero-container {
        gap: 35px;
        padding: 25px 20px;
        min-height: auto;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .nav-logo .logo-img {
        height: 38px;
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .app-screenshots {
        gap: 20px;
        padding: 0 5px;
        justify-content: center;
        perspective: 800px;
    }
    
    .screenshot-container:nth-child(1) {
        transform: rotateY(-8deg) rotateX(2deg) scale(0.8);
        z-index: 1;
    }
    
    .screenshot-container:nth-child(2) {
        transform: rotateY(8deg) rotateX(-2deg) scale(0.8);
        z-index: 2;
    }
    
    .screenshot-container:nth-child(3) {
        display: none;
    }
    
    .screenshot-container:hover {
        transform: scale(0.9) rotateY(0deg) rotateX(0deg);
        z-index: 10;
    }
    
    .app-screenshot {
        width: 140px;
        max-height: 280px;
        border: 2px solid #2c2c2c;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .app-screenshot:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .screenshot-label {
        font-size: 9px;
        padding: 4px 8px;
        border-radius: 10px;
        bottom: -25px;
    }
    
    .screenshot-container:hover .screenshot-label {
        bottom: -20px;
    }
    
    .screenshot-label {
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 12px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .team-card {
        padding: 20px 15px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
    
    .member-description {
        font-size: 0.8rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
    }
    
    .company-logo {
        padding: 10px 8px;
        min-height: 50px;
    }
    
    .logo-image {
        max-height: 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .contact-info {
        align-items: center;
    }
}

/* ========================================
   MODAL POPUP STYLES
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: white;
    margin: 20px auto;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.4s ease-out;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: white;
    color: #2c2c2c;
    padding: 30px 30px 20px;
    position: relative;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #2c2c2c;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
}

.close:hover {
    background: #f9b457;
    color: white;
    transform: scale(1.1);
}

.modal-body {
    background: white;
    padding: 40px;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.2em;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
}

.popup-registration-form {
    position: relative;
}

.popup-registration-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.popup-registration-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1em;
    font-family: 'Cairo', sans-serif;
}

.popup-registration-form input,
.popup-registration-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 1em;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
}

.popup-registration-form input:focus,
.popup-registration-form select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.popup-registration-form .form-row {
    display: flex;
    gap: 20px;
}

.popup-registration-form .form-row .form-group {
    flex: 1;
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f9b457 0%, #e8a347 100%);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(249, 180, 87, 0.4);
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 180, 87, 0.6);
    background: linear-gradient(135deg, #e8a347 0%, #d89237 100%);
}

.popup-submit-btn:active {
    transform: translateY(-1px);
}

#popup-success {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #f9b457;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(249, 180, 87, 0.2);
}

#popup-success .success-icon {
    font-size: 4em;
    margin-bottom: 15px;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

#popup-success h4 {
    color: #2c2c2c;
    margin: 15px 0 10px 0;
    font-size: 1.4em;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

#popup-success p {
    color: #666;
    margin: 8px 0;
    font-family: 'Cairo', sans-serif;
    font-size: 1em;
    line-height: 1.5;
}

#popup-success .success-note {
    color: #f9b457;
    font-weight: 600;
    font-size: 0.95em;
    margin-top: 12px;
}

/* Floating particles effect */
.modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobile Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 10px auto;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        overflow: hidden;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
        flex-shrink: 0;
    }
    
    .modal-header h2 {
        font-size: 1.4em;
        line-height: 1.3;
    }
    
    .modal-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .popup-registration-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .popup-registration-form .form-group {
        margin-bottom: 18px;
    }
    
    .popup-registration-form input,
    .popup-registration-form select {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .popup-registration-form label {
        font-size: 0.9em;
        margin-bottom: 6px;
    }
    
    .popup-submit-btn {
        font-size: 1em;
        padding: 14px 20px;
        margin-top: 15px;
    }
    
    .close {
        top: 12px;
        right: 15px;
        font-size: 24px;
        width: 32px;
        height: 32px;
        z-index: 10;
    }
    
    #popup-success {
        padding: 25px 20px;
        margin-top: 15px;
    }
    
    #popup-success .success-icon {
        font-size: 3em;
    }
    
    #popup-success h4 {
        font-size: 1.2em;
        margin: 12px 0 8px 0;
    }
    
    #popup-success p {
        font-size: 0.9em;
        margin: 6px 0;
    }
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        margin: 5px auto;
        width: calc(100% - 10px);
        max-height: calc(100vh - 10px);
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 15px 15px 10px;
        flex-shrink: 0;
    }
    
    .modal-header h2 {
        font-size: 1.2em;
        padding-right: 40px; /* Give space for close button */
    }
    
    .modal-subtitle {
        font-size: 0.9em;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .popup-registration-form .form-group {
        margin-bottom: 15px;
    }
    
    .popup-registration-form input,
    .popup-registration-form select {
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .popup-submit-btn {
        font-size: 0.95em;
        padding: 12px 18px;
        border-radius: 10px;
    }
    
    .close {
        top: 10px;
        right: 12px;
        font-size: 22px;
        width: 30px;
        height: 30px;
        z-index: 10;
    }
    
    #popup-success {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    #popup-success .success-icon {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    #popup-success h4 {
        font-size: 1.1em;
        margin: 10px 0 6px 0;
    }
    
    #popup-success p {
        font-size: 0.85em;
        line-height: 1.4;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        margin: 5px auto;
        max-height: calc(100vh - 10px);
    }
    
    .modal-header {
        padding: 10px 20px 8px;
    }
    
    .modal-body {
        padding: 10px 20px 15px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .popup-registration-form .form-row {
        flex-direction: row;
        gap: 15px;
    }
    
    .popup-registration-form .form-group {
        margin-bottom: 12px;
    }
}