/* Sahab Trips - Custom Brand Styles */
/* Brand Color: Sky Blue */

:root {
    --str-primary: #0ea5e9;
    --str-primary-dark: #0284c7;
    --str-primary-light: #38bdf8;
    --str-secondary: #0c4a6e;
    --str-accent: #082f49;
    --str-text: #f0f9ff;
    --str-text-light: #7dd3fc;
    --str-text-dark: #0c4a6e;
    --str-bg-dark: #0c1a2e;
    --str-bg-darker: #060e1a;
    --str-bg-card: #0f2133;
    --str-white: #ffffff;
    --str-gradient: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    --str-gradient-dark: linear-gradient(135deg, #0c1a2e 0%, #0f2133 100%);
    --str-gradient-hero: linear-gradient(135deg, #060e1a 0%, #0c1a2e 50%, #0f2133 100%);
}

/* Page Base */
.sahab-trips-page {
    background-color: var(--str-bg-darker);
}

/* Custom Navigation */
.str-nav {
    background: var(--str-bg-dark);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.str-nav .nav-link {
    color: var(--str-text-light);
}

.str-nav .nav-link:hover,
.str-nav .nav-link.active {
    color: var(--str-primary);
}

.str-nav .nav-cta {
    background: var(--str-gradient);
    color: var(--str-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.str-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.str-logo h2 {
    color: var(--str-text);
}

.str-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--str-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.str-logo-icon i {
    font-size: 1.25rem;
    color: var(--str-white);
}

/* Buttons */
.btn-str-primary {
    background: var(--str-gradient);
    color: var(--str-white);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-str-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-str-secondary {
    background: transparent;
    color: var(--str-primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid var(--str-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-str-secondary:hover {
    background: var(--str-primary);
    color: var(--str-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.str-hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: var(--str-gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.str-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.str-hero .container {
    position: relative;
    z-index: 1;
}

.str-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.str-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.15);
    color: var(--str-primary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.str-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--str-text);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.str-hero-subtitle {
    font-size: 1.15rem;
    color: var(--str-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.str-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.str-hero-meta {
    display: flex;
    gap: 2rem;
}

.str-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--str-text-light);
}

.str-hero-meta i {
    color: var(--str-primary);
}

/* App Preview Mockup */
.str-app-preview {
    background: var(--str-bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.str-preview-header {
    background: var(--str-bg-dark);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.str-preview-dots {
    display: flex;
    gap: 6px;
}

.str-preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.str-preview-dots span:first-child { background: #ef4444; }
.str-preview-dots span:nth-child(2) { background: #eab308; }
.str-preview-dots span:nth-child(3) { background: #22c55e; }

.str-preview-title {
    color: var(--str-text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.str-preview-content {
    padding: 1.25rem;
}

.str-preview-trip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--str-bg-dark);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.str-trip-color {
    width: 4px;
    height: 36px;
    border-radius: 2px;
    background: var(--str-primary);
    flex-shrink: 0;
}

.str-trip-color.upcoming { background: #f59e0b; }
.str-trip-color.completed { background: #10b981; }

.str-trip-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.str-trip-name {
    color: var(--str-text);
    font-size: 0.875rem;
    font-weight: 600;
}

.str-trip-meta {
    color: var(--str-text-light);
    font-size: 0.75rem;
}

.str-trip-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.str-trip-badge.active {
    background: rgba(14, 165, 233, 0.2);
    color: var(--str-primary-light);
}

.str-trip-badge.upcoming {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.str-trip-badge.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.str-preview-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.str-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--str-text-light);
}

.str-stat i {
    color: var(--str-primary);
    font-size: 0.8rem;
}

/* Section Headers */
.str-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.str-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--str-text);
    margin-bottom: 1rem;
}

.str-section-header p {
    font-size: 1.125rem;
    color: var(--str-text-light);
}

/* Benefits Section */
.str-benefits {
    padding: 6rem 0;
    background: var(--str-bg-dark);
}

.str-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.str-benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--str-bg-card);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.str-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

.str-benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--str-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.str-benefit-icon i {
    font-size: 2rem;
    color: var(--str-white);
}

.str-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--str-text);
    margin-bottom: 0.75rem;
}

.str-benefit-card p {
    color: var(--str-text-light);
    line-height: 1.6;
}

/* Features Section */
.str-features {
    padding: 6rem 0;
    background: var(--str-bg-darker);
}

.str-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.str-feature-card {
    background: var(--str-bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.str-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

.str-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--str-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.str-feature-icon i {
    font-size: 1.4rem;
    color: var(--str-white);
}

.str-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--str-text);
    margin-bottom: 0.6rem;
}

.str-feature-card p {
    color: var(--str-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* How It Works Section */
.str-how-it-works {
    padding: 6rem 0;
    background: var(--str-bg-dark);
}

.str-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.str-step {
    text-align: center;
    max-width: 200px;
}

.str-step-number {
    width: 60px;
    height: 60px;
    background: var(--str-gradient);
    color: var(--str-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.str-step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--str-text);
    margin-bottom: 0.5rem;
}

.str-step-content p {
    font-size: 0.875rem;
    color: var(--str-text-light);
    line-height: 1.5;
}

.str-step-connector {
    width: 50px;
    height: 2px;
    background: var(--str-primary);
    margin-top: 30px;
    opacity: 0.4;
    flex-shrink: 0;
}

/* Value Section */
.str-value {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0c2340 0%, #0c3a5c 50%, #0369a1 100%);
    position: relative;
    overflow: hidden;
}

.str-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.str-value-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--str-white);
    position: relative;
    z-index: 1;
}

.str-value-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.str-value-icon i {
    font-size: 3rem;
    color: var(--str-white);
}

.str-value h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.str-value p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.str-value-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.str-value-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.str-value-feature i {
    color: #86efac;
}

/* CTA Section */
.str-cta {
    padding: 6rem 0;
    background: var(--str-bg-darker);
}

.str-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.str-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--str-text);
    margin-bottom: 1rem;
}

.str-cta p {
    font-size: 1.125rem;
    color: var(--str-text-light);
    margin-bottom: 2rem;
}

.str-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--str-text-light);
    opacity: 0.7;
}

/* Footer */
.str-footer {
    background: var(--str-bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.str-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.str-footer-brand {
    color: var(--str-text-light);
}

.str-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.str-footer-logo h3 {
    color: var(--str-text);
    font-size: 1.25rem;
    font-weight: 700;
}

.str-footer-brand p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.str-footer-powered a {
    color: var(--str-primary-light);
    text-decoration: none;
}

.str-footer-powered a:hover {
    text-decoration: underline;
}

.str-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.str-footer-col h4 {
    color: var(--str-text);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.str-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.str-footer-col li {
    margin-bottom: 0.75rem;
}

.str-footer-col a {
    color: var(--str-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.str-footer-col a:hover {
    color: var(--str-primary-light);
}

.str-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
}

.str-footer-bottom p {
    color: var(--str-text-light);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .str-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .str-hero-actions {
        justify-content: center;
    }

    .str-hero-meta {
        justify-content: center;
    }

    .str-hero-visual {
        margin-top: 3rem;
    }

    .str-benefits-grid,
    .str-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .str-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .str-hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .str-hero h1 {
        font-size: 2.5rem;
    }

    .str-hero-subtitle {
        font-size: 1.05rem;
    }

    .str-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .str-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .str-section-header h2 {
        font-size: 2rem;
    }

    .str-benefits-grid,
    .str-features-grid {
        grid-template-columns: 1fr;
    }

    .str-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .str-step {
        max-width: 100%;
    }

    .str-step-connector {
        width: 2px;
        height: 32px;
        margin: 0 auto;
    }

    .str-value-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .str-value h2,
    .str-cta h2 {
        font-size: 2rem;
    }

    .str-preview-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .str-footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .str-hero h1 {
        font-size: 2rem;
    }

    .str-section-header h2 {
        font-size: 1.75rem;
    }

    .str-value h2,
    .str-cta h2 {
        font-size: 1.75rem;
    }

    .str-footer-links {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
