/*
 * ═══════════════════════════════════════════════════════════════
 * ARAM THEME - ORDER TRACKING PAGE
 * Premium Order Tracking Experience
 * @version 1.0.0
 * @author Brivox
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
    --ot-gold: #C9A962;
    --ot-gold-light: #E5D4A1;
    --ot-gold-dark: #8B7355;
    --ot-black: #0A0A0A;
    --ot-white: #FEFEFE;
    --ot-cream: #FAF7F2;
    --ot-accent: #8E7B6B;
    --ot-accent-light: #D4C4B5;
    --ot-success: #4CAF50;
    --ot-warning: #ff9800;
    --ot-info: #2196f3;
    --ot-error: #f44336;
    --ot-gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --ot-gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    --ot-shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --ot-shadow-medium: 0 15px 50px rgba(0,0,0,0.12);
    --ot-shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.25);
    --ot-radius-sm: 12px;
    --ot-radius-md: 20px;
    --ot-radius-lg: 28px;
    --ot-radius-xl: 36px;
    --ot-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.aram-order-tracking {
    min-height: 100vh;
    background: var(--ot-cream);
    padding-bottom: 80px;
}

.ot-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Mobile */
@media (max-width: 1023px) {
    .aram-order-tracking {
        padding-bottom: 100px;
    }
    
    .ot-container {
        padding: 0 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--ot-gradient-dark);
    overflow: hidden;
}

.ot-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ot-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 40% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 30%);
}

.ot-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.ot-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ot-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--ot-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--ot-black);
    box-shadow: var(--ot-shadow-gold);
    animation: heroIcon 3s ease-in-out infinite;
}

@keyframes heroIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ot-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--ot-white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ot-hero-desc {
    font-size: 18px;
    color: var(--ot-accent-light);
    max-width: 500px;
    margin: 0 auto;
}

.ot-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
}

.ot-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Mobile Hero */
@media (max-width: 1023px) {
    .ot-hero {
        padding: 140px 0 80px;
    }
    
    .ot-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .ot-hero-title {
        font-size: 32px;
    }
    
    .ot-hero-desc {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .ot-hero-wave {
        height: 50px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-search-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.ot-search-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 40px;
    box-shadow: var(--ot-shadow-medium);
}

.ot-search-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ot-search-icon {
    width: 60px;
    height: 60px;
    background: var(--ot-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--ot-black);
}

.ot-search-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ot-black);
    margin-bottom: 5px;
}

.ot-search-subtitle {
    font-size: 14px;
    color: var(--ot-accent);
}

.ot-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.ot-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ot-black);
}

.ot-label i {
    color: var(--ot-gold);
}

.ot-input {
    height: 56px;
    padding: 0 20px;
    border: 2px solid var(--ot-accent-light);
    border-radius: var(--ot-radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--ot-cream);
    transition: var(--ot-transition);
}

.ot-input:focus {
    outline: none;
    border-color: var(--ot-gold);
    background: var(--ot-white);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.ot-input::placeholder {
    color: var(--ot-accent);
}

.ot-search-btn {
    width: 100%;
    height: 60px;
    background: var(--ot-gradient-gold);
    border: none;
    border-radius: var(--ot-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 800;
    color: var(--ot-black);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--ot-transition);
}

.ot-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--ot-shadow-gold);
}

.ot-search-btn i {
    font-size: 22px;
}

.ot-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.ot-search-btn:hover .ot-btn-shine {
    left: 100%;
}

/* Alert */
.ot-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--ot-radius-sm);
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ot-alert-error {
    background: #fef2f2;
    color: var(--ot-error);
    border: 1px solid #fecaca;
}

.ot-alert i {
    font-size: 20px;
}

/* Mobile Search */
@media (max-width: 1023px) {
    .ot-search-section {
        margin-top: -40px;
    }
    
    .ot-search-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-search-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .ot-search-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .ot-search-title {
        font-size: 18px;
    }
    
    .ot-search-subtitle {
        font-size: 13px;
    }
    
    .ot-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .ot-input {
        height: 52px;
        font-size: 14px;
    }
    
    .ot-search-btn {
        height: 54px;
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESULT SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-result-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Summary Card */
.ot-summary-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 35px;
    box-shadow: var(--ot-shadow-soft);
}

.ot-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ot-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: var(--ot-success);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.ot-order-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--ot-black);
}

.ot-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ot-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ot-summary-icon {
    width: 50px;
    height: 50px;
    background: var(--ot-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ot-gold);
}

.ot-summary-label {
    display: block;
    font-size: 12px;
    color: var(--ot-accent);
    margin-bottom: 4px;
}

.ot-summary-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--ot-black);
}

.ot-summary-value.ot-price {
    color: var(--ot-gold);
    font-size: 17px;
}

/* Mobile Summary */
@media (max-width: 1023px) {
    .ot-result-section {
        margin-top: 25px;
        gap: 20px;
    }
    
    .ot-summary-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-summary-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ot-summary-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .ot-order-number {
        font-size: 16px;
    }
    
    .ot-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ot-summary-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .ot-summary-label {
        font-size: 11px;
    }
    
    .ot-summary-value {
        font-size: 14px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-timeline-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 40px;
    box-shadow: var(--ot-shadow-soft);
}

.ot-timeline-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ot-black);
    margin-bottom: 40px;
}

.ot-timeline-title i {
    color: var(--ot-gold);
    font-size: 24px;
}

.ot-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.ot-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.ot-step-connector {
    position: absolute;
    top: 25px;
    right: 50%;
    width: 100%;
    height: 4px;
    z-index: 1;
}

.ot-timeline-step:first-child .ot-step-connector {
    display: none;
}

.ot-connector-line {
    width: 100%;
    height: 100%;
    background: var(--ot-accent-light);
    border-radius: 2px;
    overflow: hidden;
}

.ot-connector-progress {
    width: 0;
    height: 100%;
    background: var(--ot-gradient-gold);
    transition: width 0.8s ease;
}

.ot-timeline-step.completed .ot-connector-progress {
    width: 100%;
}

.ot-step-marker {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ot-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--ot-transition);
}

.ot-marker-inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ot-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ot-accent-light);
    transition: var(--ot-transition);
}

.ot-timeline-step.completed .ot-step-marker {
    background: var(--ot-gradient-gold);
}

.ot-timeline-step.completed .ot-marker-inner {
    background: transparent;
    color: var(--ot-black);
}

.ot-timeline-step.current .ot-step-marker {
    background: var(--ot-gradient-gold);
    box-shadow: var(--ot-shadow-gold);
}

.ot-timeline-step.current .ot-marker-inner {
    background: transparent;
    color: var(--ot-black);
}

.ot-marker-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--ot-gold);
    opacity: 0;
}

.ot-timeline-step.current .ot-marker-pulse {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.ot-step-content {
    text-align: center;
    margin-top: 15px;
}

.ot-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ot-accent);
    transition: var(--ot-transition);
}

.ot-timeline-step.completed .ot-step-title,
.ot-timeline-step.current .ot-step-title {
    color: var(--ot-black);
}

.ot-step-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--ot-gradient-gold);
    color: var(--ot-black);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
}

/* Delivery Animation */
.ot-delivery-animation {
    position: relative;
    height: 60px;
    margin-top: 20px;
}

.ot-road {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--ot-accent-light);
    border-radius: 4px;
}

.ot-road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--ot-white) 0, var(--ot-white) 15px, transparent 15px, transparent 25px);
    transform: translateY(-50%);
}

.ot-truck {
    position: absolute;
    bottom: 20px;
    left: var(--progress);
    transform: translateX(-50%);
    font-size: 36px;
    color: var(--ot-gold);
    animation: truckBounce 0.5s ease-in-out infinite;
    transition: left 1s ease;
}

@keyframes truckBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.ot-destination {
    position: absolute;
    bottom: 22px;
    right: 10px;
    font-size: 28px;
    color: var(--ot-success);
}

/* Mobile Timeline */
@media (max-width: 1023px) {
    .ot-timeline-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-timeline-title {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .ot-timeline {
        flex-direction: column;
        gap: 0;
    }
    
    .ot-timeline-step {
        flex-direction: row;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .ot-step-connector {
        position: absolute;
        top: 0;
        right: 26px;
        width: 4px;
        height: 100%;
    }
    
    .ot-timeline-step:first-child .ot-step-connector {
        display: block;
        top: 50%;
        height: 50%;
    }
    
    .ot-timeline-step:last-child .ot-step-connector {
        height: 50%;
    }
    
    .ot-connector-line {
        width: 100%;
        height: 100%;
    }
    
    .ot-step-marker {
        width: 48px;
        height: 48px;
    }
    
    .ot-marker-inner {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .ot-step-content {
        text-align: right;
        margin-top: 0;
        margin-right: 15px;
        padding-top: 10px;
    }
    
    .ot-step-title {
        font-size: 14px;
    }
    
    .ot-delivery-animation {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ORDER ITEMS SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-items-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 35px;
    box-shadow: var(--ot-shadow-soft);
}

.ot-items-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ot-black);
    margin-bottom: 25px;
}

.ot-items-title i {
    color: var(--ot-gold);
    font-size: 24px;
}

.ot-items-count {
    margin-right: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--ot-accent);
    padding: 5px 12px;
    background: var(--ot-cream);
    border-radius: 50px;
}

.ot-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.ot-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--ot-cream);
    border-radius: var(--ot-radius-md);
    transition: var(--ot-transition);
}

.ot-item:hover {
    box-shadow: var(--ot-shadow-soft);
}

.ot-item-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--ot-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.ot-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ot-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: var(--ot-gradient-gold);
    color: var(--ot-black);
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ot-item-details {
    flex: 1;
}

.ot-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ot-black);
    margin-bottom: 5px;
}

.ot-item-meta {
    display: inline-block;
    font-size: 12px;
    color: var(--ot-accent);
    padding: 3px 10px;
    background: var(--ot-white);
    border-radius: 50px;
    margin-left: 5px;
}

.ot-item-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--ot-gold);
}

/* Totals */
.ot-totals {
    border-top: 2px dashed var(--ot-accent-light);
    padding-top: 20px;
}

.ot-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: var(--ot-accent);
}

.ot-total-row.ot-discount {
    color: var(--ot-success);
}

.ot-total-row.ot-grand-total {
    border-top: 1px solid var(--ot-accent-light);
    margin-top: 10px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ot-black);
}

.ot-total-row.ot-grand-total span:last-child {
    color: var(--ot-gold);
}

/* Mobile Items */
@media (max-width: 1023px) {
    .ot-items-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-items-title {
        font-size: 17px;
        flex-wrap: wrap;
    }
    
    .ot-items-count {
        font-size: 12px;
    }
    
    .ot-item {
        padding: 15px;
        gap: 15px;
    }
    
    .ot-item-image {
        width: 65px;
        height: 65px;
    }
    
    .ot-item-qty {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .ot-item-name {
        font-size: 14px;
    }
    
    .ot-item-meta {
        font-size: 11px;
    }
    
    .ot-item-price {
        font-size: 15px;
    }
    
    .ot-total-row {
        font-size: 14px;
    }
    
    .ot-total-row.ot-grand-total {
        font-size: 18px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ADDRESS CARD
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-address-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 30px;
    box-shadow: var(--ot-shadow-soft);
}

.ot-address-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.ot-address-header i {
    font-size: 24px;
    color: var(--ot-gold);
}

.ot-address-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ot-black);
}

.ot-address-content {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--ot-cream);
    border-radius: var(--ot-radius-md);
}

.ot-address-icon {
    width: 60px;
    height: 60px;
    background: var(--ot-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ot-black);
    flex-shrink: 0;
}

.ot-address-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--ot-black);
    margin-bottom: 8px;
}

.ot-address-line,
.ot-address-city {
    font-size: 14px;
    color: var(--ot-accent);
    margin-bottom: 5px;
}

.ot-address-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 15px;
    background: var(--ot-white);
    border-radius: 50px;
    font-size: 14px;
    color: var(--ot-black);
    font-weight: 600;
}

.ot-address-phone i {
    color: var(--ot-gold);
}

/* Mobile Address */
@media (max-width: 1023px) {
    .ot-address-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-address-header h3 {
        font-size: 16px;
    }
    
    .ot-address-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .ot-address-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .ot-address-name {
        font-size: 16px;
    }
    
    .ot-address-line,
    .ot-address-city {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HELP CARD
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ot-gradient-dark);
    border-radius: var(--ot-radius-lg);
    padding: 30px 40px;
}

.ot-help-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ot-help-icon {
    width: 60px;
    height: 60px;
    background: var(--ot-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ot-black);
}

.ot-help-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ot-white);
    margin-bottom: 5px;
}

.ot-help-text p {
    font-size: 14px;
    color: var(--ot-accent-light);
}

.ot-help-actions {
    display: flex;
    gap: 15px;
}

.ot-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--ot-transition);
}

.ot-help-btn.ot-whatsapp {
    background: #25d366;
    color: white;
}

.ot-help-btn.ot-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.ot-help-btn.ot-phone {
    background: var(--ot-gradient-gold);
    color: var(--ot-black);
}

.ot-help-btn.ot-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--ot-shadow-gold);
}

/* Mobile Help */
@media (max-width: 1023px) {
    .ot-help-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-help-content {
        flex-direction: column;
    }
    
    .ot-help-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .ot-help-text h4 {
        font-size: 16px;
    }
    
    .ot-help-text p {
        font-size: 13px;
    }
    
    .ot-help-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .ot-help-btn {
        justify-content: center;
        padding: 14px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION (No Order)
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-features-section {
    margin-top: 50px;
}

.ot-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.ot-feature-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--ot-shadow-soft);
    transition: var(--ot-transition);
}

.ot-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ot-shadow-medium);
}

.ot-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--ot-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--ot-black);
}

.ot-feature-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ot-black);
    margin-bottom: 10px;
}

.ot-feature-desc {
    font-size: 14px;
    color: var(--ot-accent);
    line-height: 1.7;
}

/* Mobile Features */
@media (max-width: 1023px) {
    .ot-features-section {
        margin-top: 30px;
    }
    
    .ot-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .ot-feature-card {
        padding: 25px 20px;
        display: flex;
        align-items: center;
        text-align: right;
        gap: 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0;
        font-size: 26px;
    }
    
    .ot-feature-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .ot-feature-desc {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Desktop */
.ot-faq-card {
    background: var(--ot-white);
    border-radius: var(--ot-radius-lg);
    padding: 40px;
    box-shadow: var(--ot-shadow-soft);
}

.ot-faq-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ot-black);
    margin-bottom: 30px;
}

.ot-faq-title i {
    color: var(--ot-gold);
    font-size: 26px;
}

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

.ot-faq-item {
    border: 1px solid var(--ot-accent-light);
    border-radius: var(--ot-radius-md);
    overflow: hidden;
    transition: var(--ot-transition);
}

.ot-faq-item.active {
    border-color: var(--ot-gold);
    box-shadow: var(--ot-shadow-soft);
}

.ot-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--ot-black);
    cursor: pointer;
    text-align: right;
    transition: var(--ot-transition);
}

.ot-faq-question:hover {
    background: var(--ot-cream);
}

.ot-faq-question i {
    font-size: 18px;
    color: var(--ot-gold);
    transition: var(--ot-transition);
}

.ot-faq-item.active .ot-faq-question i {
    transform: rotate(180deg);
}

.ot-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ot-faq-item.active .ot-faq-answer {
    max-height: 200px;
}

.ot-faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--ot-accent);
    line-height: 1.8;
}

/* Mobile FAQ */
@media (max-width: 1023px) {
    .ot-faq-card {
        padding: 25px 20px;
        border-radius: var(--ot-radius-md);
    }
    
    .ot-faq-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .ot-faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .ot-faq-answer p {
        padding: 0 20px 16px;
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

.ot-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ot-reveal.active {
    opacity: 1;
    transform: translateY(0);
}