/* ==========================================
   Tiryaq Go | Premium Custom Stylesheet
   Developed by: Yasseen Sabry Alawamy (ياسين صبري العوامي)
   ========================================== */

/* Design System & Variables */
:root {
    --primary: #00b4a5;
    --primary-light: #00d2c4;
    --primary-dark: #008f83;
    --secondary: #0a1f44;
    --secondary-dark: #051024;
    --accent: #4cd4c9;
    --text-main: #2a3b50;
    --text-muted: #62758d;
    --bg-light: #f4fcfb;
    --bg-white: #ffffff;
    --glow-color: rgba(0, 210, 196, 0.4);
    --shadow-sm: 0 4px 12px rgba(10, 31, 68, 0.05);
    --shadow-md: 0 12px 30px rgba(10, 31, 68, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 31, 68, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Dark Theme Variables Override */
[data-theme="dark"] {
    --bg-light: #070e17;
    --bg-white: #0c1827;
    --text-main: #f0f4f8;
    --text-muted: #8fa0b5;
    --secondary: #ffffff;
    --secondary-dark: #02060d;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* CSS Resets & Base Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.orb-1 {
    top: 5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
}

.orb-2 {
    top: 40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.orb-3 {
    bottom: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Global Grid Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.3;
    transition: color 0.4s ease;
}

p {
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

/* Sections Global Headers */
.section-title-wrap {
    margin-bottom: 60px;
}

.section-title-wrap h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}

.section-title-wrap h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
}

.sub-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 180, 165, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 180, 165, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 25px var(--glow-color);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--secondary);
    border: 2px solid rgba(10, 31, 68, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.95rem;
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary-dark);
}

.btn-nav:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--secondary);
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary);
}

/* Sticky Premium Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 31, 68, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .navbar {
    background: rgba(12, 24, 39, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 45px;
    height: 45px;
}

[data-theme="dark"] .logo-svg .running-path {
    stroke: #ffffff !important;
}

[data-theme="dark"] .logo-svg .running-head {
    fill: #ffffff !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Mobile Drawer Menu & Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1002;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-links a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.4);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section Styles */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 165, 0.08);
    border: 1px solid rgba(0, 180, 165, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-icon {
    color: var(--primary);
    font-size: 0.9rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-ratings {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rating-stars {
    color: #ffb800;
    display: flex;
    gap: 4px;
}

/* 3D phone screen & dynamic app mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-frame {
    position: relative;
    width: 310px;
    height: 630px;
    background: #000000;
    border-radius: 46px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(10, 31, 68, 0.35), 
                0 0 0 4px #1a1a1a,
                0 0 0 5px rgba(255,255,255,0.1);
    border: 3px solid #222;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .phone-frame {
    border-color: #111e30;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 4px #08121e;
}

.phone-frame:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

/* Phone Buttons */
.phone-button {
    position: absolute;
    background: #1a1a1a;
    border-radius: 2px;
}

.volume-up {
    left: -5px;
    top: 130px;
    width: 3px;
    height: 50px;
}

.volume-down {
    left: -5px;
    top: 190px;
    width: 3px;
    height: 50px;
}

.power {
    right: -5px;
    top: 160px;
    width: 3px;
    height: 70px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    user-select: none;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Glass shine overlay */
.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 10;
}

/* iOS Status Bar */
.status-bar {
    height: 38px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    z-index: 9;
    font-size: 0.75rem;
    font-weight: 700;
}

[data-theme="dark"] .status-bar {
    background: #0c1827;
}

.status-time {
    color: var(--secondary);
}

.dynamic-island {
    width: 80px;
    height: 22px;
    background: #000000;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
}

.status-icons {
    display: flex;
    gap: 6px;
    color: var(--secondary);
}

/* App UI design inside the phone */
.app-ui-header {
    background: var(--bg-white);
    padding: 12px 16px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(10, 31, 68, 0.04);
}

[data-theme="dark"] .app-ui-header {
    background: #0c1827;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.app-ui-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-ui-user .avatar {
    width: 32px;
    height: 32px;
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

[data-theme="dark"] .app-ui-user .avatar {
    background: rgba(0, 180, 165, 0.15);
}

.app-ui-user .name {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.app-ui-user .status {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-ui-noti {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* App UI Search Bar mockup */
.app-ui-search {
    background: var(--bg-white);
    margin: 8px 16px;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid rgba(10, 31, 68, 0.05);
}

[data-theme="dark"] .app-ui-search {
    background: #14253a;
    border-color: rgba(255,255,255,0.05);
}

.app-ui-search i {
    color: var(--primary);
}

.app-ui-map-preview {
    height: 150px;
    background: #0d1e36;
    position: relative;
    overflow: hidden;
}

.map-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(0, 210, 196, 0.15) 1px, transparent 0),
        radial-gradient(rgba(0, 210, 196, 0.15) 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    opacity: 0.7;
}

.route-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-ring {
    position: absolute;
    top: 90px;
    left: 35px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    animation: pulse 1.8s infinite ease-out;
}

.marker {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 0.7rem;
}

.doctor-marker {
    background: var(--primary);
    top: 45px;
    left: 130px;
}

.patient-marker {
    background: #ff4757;
    top: 90px;
    left: 35px;
}

.map-info-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 31, 68, 0.9);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}

.app-ui-services {
    padding: 12px 16px;
}

.app-ui-services .section-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.service-item-mini {
    background: var(--bg-white);
    padding: 10px 4px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.service-item-mini.active {
    background: var(--primary);
    color: #ffffff;
}

.service-item-mini i {
    font-size: 1rem;
}

.service-item-mini.active i {
    color: #ffffff;
}

.service-item-mini:not(.active) i {
    color: var(--primary);
}

[data-theme="dark"] .service-item-mini:not(.active) {
    background: #14253a;
    box-shadow: none;
}

.service-item-mini span {
    font-size: 0.6rem;
    font-weight: 700;
}

.app-ui-status-card {
    margin: 8px 16px;
    background: var(--bg-white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .app-ui-status-card {
    background: #0c1827;
    box-shadow: none;
}

.doctor-info-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.doctor-info-compact .doc-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

[data-theme="dark"] .doctor-info-compact .doc-pic {
    background: #14253a;
}

.doctor-info-compact h4 {
    font-size: 0.7rem;
    font-weight: 850;
    flex: 1;
}

.doctor-info-compact p {
    font-size: 0.55rem;
}

.call-btn-mini {
    width: 24px;
    height: 24px;
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.progress-bar-mini {
    height: 4px;
    background: rgba(10,31,68,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.live-status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.animate-bounce-icon {
    animation: bounceMini 1s infinite alternate;
}

@keyframes bounceMini {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

/* App Bottom Navigation Bar */
.app-bottom-nav {
    margin-top: auto;
    height: 48px;
    background: var(--bg-white);
    border-top: 1px solid rgba(10,31,68,0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 4px;
}

[data-theme="dark"] .app-bottom-nav {
    background: #0c1827;
    border-top-color: rgba(255,255,255,0.05);
}

.app-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    cursor: pointer;
}

.app-bottom-nav .nav-item.active {
    color: var(--primary);
}

.app-bottom-nav .nav-item i {
    font-size: 0.9rem;
}

.app-bottom-nav .nav-item span {
    font-size: 0.55rem;
    font-weight: 700;
}

/* Simulator Section styling */
.simulator-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(10, 31, 68, 0.05);
    transition: background-color 0.4s ease;
}

.simulator-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(10, 31, 68, 0.1);
    background: var(--bg-white);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .tab-btn {
    background: #0c1827;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f0f4f8;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--bg-white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.tab-btn.active .tab-icon {
    color: var(--primary-light);
}

[data-theme="dark"] .tab-btn.active .tab-icon {
    color: #ffffff;
}

.tab-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Simulator Viewport wrapper */
.simulator-viewport {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 31, 68, 0.05);
    overflow: hidden;
    padding: 40px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .simulator-viewport {
    background: #070e17;
    border-color: rgba(255, 255, 255, 0.05);
}

.simulator-view {
    display: none;
    animation: fadeInView 0.5s ease forwards;
}

.simulator-view.active {
    display: block;
}

@keyframes fadeInView {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.view-visual {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    min-height: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background-color 0.4s ease;
}

[data-theme="dark"] .view-visual {
    background: #0c1827;
}

.view-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.view-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Tab 1 Map Tracker style */
.map-visual {
    background: #081730;
    padding: 0;
}

.live-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 180, 165, 0.2);
    color: var(--primary-light);
    border: 1px solid var(--primary);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.interactive-map {
    width: 100%;
    height: 330px;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.map-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.road-path {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.pulse-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.pulse-marker .pin {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 15px var(--primary);
}

.pulse-marker.p-marker .pin {
    background: #ff4757;
    box-shadow: 0 0 15px #ff4757;
}

.pulse-marker .label {
    background: rgba(10,31,68,0.9);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.svg-route-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.map-click-indicator {
    background: rgba(10, 31, 68, 0.85);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 5;
    font-weight: 600;
}

.tracking-stats-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(10, 31, 68, 0.05);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .tracking-stats-card {
    background: #0c1827;
    border-color: rgba(255, 255, 255, 0.05);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.05);
}

[data-theme="dark"] .stat-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .label {
    color: var(--text-muted);
    font-weight: 600;
}

.stat-row .value {
    color: var(--secondary);
    font-weight: 700;
}

.stat-row .text-primary {
    color: var(--primary-dark);
}

.badge-status {
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
}

.view-actions {
    display: flex;
    gap: 16px;
}

/* Tab 2 Device Marketplace Styles */
.devices-visual {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
}

[data-theme="dark"] .devices-visual {
    background: #0c1827;
}

.devices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.devices-header h3 {
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    background: var(--primary);
    color: #ffffff;
    border-radius: 8px;
}

/* Search Bar styling */
.search-bar-wrap {
    position: relative;
    width: 100%;
}

.search-bar-wrap input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: 8px;
    border: 1px solid rgba(10, 31, 68, 0.15);
    background: var(--bg-white);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .search-bar-wrap input {
    border-color: rgba(255, 255, 255, 0.1);
}

.search-bar-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 165, 0.15);
}

.search-bar-wrap .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.devices-grid-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 220px;
    padding-right: 4px;
}

.device-card-mini {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .device-card-mini {
    background: #14253a;
}

.device-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.device-card-mini .img-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 165, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}

[data-theme="dark"] .device-card-mini .img-placeholder {
    background: rgba(0, 180, 165, 0.15);
}

.device-card-mini .info {
    flex: 1;
}

.device-card-mini h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.device-card-mini .tag {
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.device-card-mini .price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
}

.device-card-mini .rent {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-buy {
    float: left;
    padding: 6px 14px;
    font-size: 0.8rem;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 30px;
}

.btn-buy:hover {
    background: var(--primary);
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bullet-item i {
    font-size: 1.3rem;
    margin-top: 3px;
}

/* Tab 3 Pharmacy & Prescription Styles */
.pharmacy-visual {
    justify-content: center;
    align-items: center;
    background: var(--bg-white);
}

.prescription-upload-box {
    border: 2px dashed rgba(10, 31, 68, 0.15);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

[data-theme="dark"] .prescription-upload-box {
    border-color: rgba(255, 255, 255, 0.15);
}

.prescription-upload-box:hover {
    border-color: var(--primary);
    background: rgba(0, 180, 165, 0.02);
}

.upload-icon {
    font-size: 2.8rem;
    color: var(--primary);
}

.prescription-upload-box h4 {
    font-size: 1.1rem;
}

/* Sample Prescriptions styles */
.sample-prescriptions-wrap {
    margin-top: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sample-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.sample-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sample {
    padding: 6px 12px;
    font-size: 0.75rem;
    background: rgba(0, 180, 165, 0.08);
    border: 1px solid rgba(0, 180, 165, 0.2);
    color: var(--primary-dark);
    border-radius: 6px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-sample:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Scanner UI */
.prescription-scanner {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px;
}

.prescription-doc-graphic {
    width: 80px;
    height: 110px;
    background: var(--bg-light);
    border: 2px solid rgba(10, 31, 68, 0.1);
    border-radius: 8px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .prescription-doc-graphic {
    background: #14253a;
    border-color: rgba(255, 255, 255, 0.05);
}

.prescription-doc-graphic i {
    font-size: 2.2rem;
    color: var(--text-muted);
}

.prescription-doc-graphic .lines {
    width: 60%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prescription-doc-graphic .lines span {
    display: block;
    height: 3px;
    background: rgba(10, 31, 68, 0.1);
    border-radius: 2px;
}

.scanner-laser {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: var(--primary-light);
    box-shadow: 0 0 12px var(--primary-light);
    animation: laserScan 2s infinite ease-in-out;
}

@keyframes laserScan {
    0%, 100% { top: 30px; }
    50% { top: 140px; }
}

.scanner-text {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Results UI */
.prescription-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.results-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
}

[data-theme="dark"] .results-list li {
    background: #14253a;
}

.results-list li span {
    font-weight: 600;
}

.results-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid rgba(10, 31, 68, 0.1);
    font-size: 1.1rem;
    font-weight: 800;
}

[data-theme="dark"] .results-total {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.benefit-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 31, 68, 0.05);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .benefit-card {
    background: #0c1827;
    border-color: rgba(255, 255, 255, 0.05);
}

.benefit-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 0.85rem;
}

/* Supplier Modal styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 550px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(10, 31, 68, 0.05);
    padding-bottom: 16px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: #ff4757;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(10, 31, 68, 0.15);
    background: var(--bg-white);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 165, 0.15);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

/* Core Features grid section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
    transition: background-color 0.4s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(10, 31, 68, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 165, 0.15);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 180, 165, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-wrap {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works section styles */
.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-white);
    transition: background-color 0.4s ease;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    position: relative;
    padding: 30px;
    text-align: center;
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(0, 180, 165, 0.15) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

/* Interactive Testimonials Carousel Styles */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
    transition: background-color 0.4s ease;
}

.testimonials-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    flex: 0 0 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    animation: fadeInView 0.5s ease forwards;
}

.testimonial-card.active {
    display: flex;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 180, 165, 0.2);
    margin-bottom: 20px;
}

.feedback {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: rgba(0, 180, 165, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-details h4 {
    font-size: 1rem;
    font-weight: 800;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(10, 31, 68, 0.1);
    background: var(--bg-white);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(10, 31, 68, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

/* FAQ Accordion Section styling */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
    transition: background-color 0.4s ease;
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 31, 68, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: rgba(0, 180, 165, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

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

/* Download Section box styling */
.download-section {
    padding: 80px 0;
    background: var(--bg-light);
    transition: background-color 0.4s ease;
}

.download-container-inner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.download-container-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 196, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.download-content-box h2 {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.download-content-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
}

.app-buttons-group {
    display: flex;
    gap: 16px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.store-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 180, 165, 0.25);
}

.store-button i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.btn-text span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.btn-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: var(--border-radius);
    width: 220px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    color: #0a1f44;
}

.qr-code-graphic {
    width: 150px;
    height: 150px;
}

.qr-code-box span {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

/* Footer Section */
.footer-area {
    background: #040d1c;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.about-widget p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.footer-social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.links-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-widget ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.links-widget ul a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details-list li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-details-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Animation Elements styling */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Animations Trigger */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Adaptability */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .view-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .download-container-inner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .app-buttons-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
        transform: scale(0.9);
    }
    
    .phone-frame:hover {
        transform: scale(0.95) translateY(-5px);
    }
    
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .app-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .store-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
