/* Hero Section Styles */
:root {
    --primary-blue: #1E88E5;
    --primary-dark: #1565C0;
    --secondary-purple: #7C4DFF;
    --accent-green: #00E676;
    --background: #f8f9fa;
    --text-dark: #263238;
    --text-light: #546E7A;
    --white: #ffffff;
    --success-green: #00C853;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, var(--background), #ebf5ff);
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    mix-blend-mode: multiply;
}

.blob-1 {
    top: 20%;
    left: 25%;
    width: 400px;
    height: 400px;
    background-color: rgba(30, 136, 229, 0.3);
}

.blob-2 {
    top: 40%;
    right: 25%;
    width: 400px;
    height: 400px;
    background-color: rgba(124, 77, 255, 0.3);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
    align-items: center;
}

/* Text Column Styles */
.hero-text {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-title-main {
    color: var(--text-dark);
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Feature Bubbles */
.feature-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-bubble {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.bubble-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.green { background-color: #00C853; }
.blue { background-color: #1E88E5; }
.purple { background-color: #7C4DFF; }
.yellow { background-color: #FFD600; }

.feature-bubble span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2rem;
    background-image: linear-gradient(135deg, #1E88E5 0%, #7C4DFF 50%, #E91E63 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.525rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(30, 136, 229, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: gradientShift 3s ease infinite;
    width: 100%;
    max-width: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(30, 136, 229, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-secondary {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background-color: white;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-tag {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.90rem;
    margin-left: 0.5rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 0.5rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    margin-right: -10px;
    box-shadow: var(--shadow-sm);
}

.avatar-blue {
    background-color: rgba(30, 136, 229, 0.1);
    color: var(--primary-blue);
}

.avatar-purple {
    background-color: rgba(124, 77, 255, 0.1);
    color: var(--secondary-purple);
}

.avatar-green {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
}

.avatar-gray {
    background-color: rgba(84, 110, 122, 0.1);
    color: var(--text-light);
}

.trust-info {
    font-size: 0.875rem;
}

.active-users {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.active-users span {
    font-weight: 600;
}

.ratings {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    color: #FFD600;
    margin-right: 0.5rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Visual Column Styles - Flat Design */
.hero-visual {
    position: relative;
}





/* Concentric Circles */


.circle-1 {
    width: 60px;
    height: 60px;
}

.circle-2 {
    width: 90px;
    height: 90px;
}

.circle-3 {
    width: 120px;
    height: 120px;
}

/* Tracking Data Display */


.tracking-location-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.tracking-location-value {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tracking-coordinates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.75rem;
}

.coordinate-label {
    opacity: 0.7;
    margin-bottom: 3px;
}

.precision-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.precision-value {
    height: 100%;
    width: 75%;
    background-color: #4CAF50;
    border-radius: 2px;
}

.precision-text {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Satellite Indicator */


.signal-bars {
    display: flex;
    align-items: flex-end;
    height: 20px;
    margin-right: 5px;
}

.signal-bar {
    width: 4px;
    margin: 0 1px;
    background-color: #4CAF50;
    border-radius: 1px;
}

.bar-1 { height: 8px; }
.bar-2 { height: 12px; }
.bar-3 { height: 16px; }
.bar-4 { height: 20px; }
.bar-5 { height: 24px; }

.inactive {
    background-color: rgba(255, 255, 255, 0.3);
}

.signal-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Floating Cards - Flat Design */


.card-top {
    top: 15%;
    right: 0;
    transform: translateY(0);
}

.card-top:hover {
    transform: translateY(-5px);
}

.card-bottom {
    bottom: 20%;
    left: 0;
    transform: translateY(0);
}

.card-bottom:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-dots {
    display: flex;
    gap: 3px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-green);
    border-radius: 50%;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFF;
}

.pulse-bar {
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.pulse-value {
    height: 100%;
    width: 66%;
    background-color: var(--primary-blue);
    border-radius: 3px;
    animation: pulse-width 3s infinite;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: -1;
}

.decoration-1 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #9C27B0, #3F51B5);
}

.decoration-2 {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2196F3, #00BCD4);
}

/* Animation Keyframes */
@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70%, 100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

@keyframes pulse-width {
    0%, 100% {
        width: 66%;
    }
    50% {
        width: 80%;
    }
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 100;
        padding-top: 60px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .feature-bubbles {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .phone-container {
        height: 400px;
        margin-top: 2rem;
    }
    
    .floating-card {
        width: 150px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .hero-container {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .floating-card {
        width: 140px;
        padding: 10px;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}