/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand .logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: #2D3142;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header.scrolled .language-selector {
    color: #2D3142;
}

.language-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header.scrolled .language-selector:hover {
    background-color: #f5f5f5;
}

.flag {
    font-size: 16px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.header.scrolled .nav-link {
    color: #2D3142;
}

.header.scrolled .nav-link:hover {
    color: #000000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.header.scrolled .menu-toggle {
    color: #2D3142;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-register {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.header.scrolled .btn-register {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.header.scrolled .btn-register:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-download {
    background: #ffffff;
    color: #000000;
    width: 100%;
    max-width: 250px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid #ffffff;
    min-height: 56px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #000000;
    min-height: 56px;
    transition: all 0.2s ease;
    order: 2;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f8f8f8;
    transform: translateY(-1px);
}

/* Hero Section - InDrive-style design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('Assest/Okada-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    min-height: calc(100vh - 160px);
}

.hero-text {
    text-align: center;
    color: #ffffff;
    order: 1;
    max-width: 600px;
    margin: 0 auto;
}



.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.highlight-text {
    color: #ffffff;
    background: #000000;
    padding: 0 8px;
    border-radius: 4px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    margin-bottom: 8px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}



/* Desktop Hero Layout - Centered content */
@media (min-width: 992px) {
    .hero {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        max-width: none;
    }
    
    .hero-title {
        font-size: 4rem;
        margin-bottom: 24px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
        margin-bottom: 48px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 16px;
        margin: 0 auto;
        max-width: none;
        justify-content: center;
    }
    
    .btn-download {
        width: auto;
        min-width: 200px;
        padding: 18px 32px;
    }
}

/* Enhanced Responsive Design */

/* Large screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    

    
    .hero-title {
        font-size: 5rem;
    }
}

/* Medium-Large screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {

}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {

}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
}

/* Mobile Landscape & Small Tablet (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        padding: 0 25px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .language-selector {
        padding: 8px 12px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 6px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .btn-register {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Small Mobile (320px - 575px) - Mobile specific adjustments */
@media (max-width: 575px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .logo-text {
        font-size: 26px;
        font-weight: 800;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .language-selector {
        padding: 6px 10px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 6px;
    }
    
    .nav-link {
        display: none; /* Hide support link on mobile like Bolt */
    }
    
    .btn-register {
        display: none; /* Hide register button on mobile like Bolt */
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
    }
    
    /* Mobile hero adjustments - Full screen text */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        gap: 0;
        grid-template-rows: 1fr;
        height: 100%;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 80px);
        order: 1;
    }
    
    .hero-tagline {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 24px;
        line-height: 1.1;
    }
    
    .highlight-text {
        color: #ffffff;
        background: #000000;
        padding: 0 8px;
        border-radius: 4px;
        font-weight: 700;
    }
    
    .hero-description {
        font-size: 17px;
        max-width: 340px;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    
    .btn-download {
        font-size: 16px;
        padding: 18px 24px;
        min-height: 56px;
        max-width: 280px;
    }
    
    .hero-buttons {
        max-width: 320px;
        gap: 16px;
    }
    

}




/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-menu {
        gap: 6px;
    }
    
    .language-selector {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .btn-register {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-download {
        padding: 16px 24px;
        font-size: 14px;
        min-width: 200px;
        max-width: 250px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-carousel {
        padding: 0 30px;
    }
    
    .service-card {
        height: 300px;
        min-width: 220px;
        flex: 0 0 220px;
    }
    
    .service-content {
        padding: 18px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 12px;
    }
}

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

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-tagline {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

/* Values Section - Bolt Style with Black/White Theme */
.values-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.values-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.highlight-values {
    background: #000000;
    color: #ffffff;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
    border: 2px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.value-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.value-card:hover .value-img {
    transform: scale(1.05);
}

.value-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.value-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 2;
    color: #ffffff;
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.value-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 10px;
}

.value-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.value-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Individual card styling */
.people-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.purpose-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.performance-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Responsive Design for Values Section */
@media (max-width: 1199px) {
    .values-section {
        padding: 100px 0;
    }
    
    .values-header {
        margin-bottom: 70px;
    }
    
    .values-title {
        font-size: 3rem;
    }
    
    .values-grid {
        gap: 25px;
    }
    
    .value-card {
        height: 350px;
    }
    
    .value-content {
        padding: 28px;
    }
    
    .value-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 991px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-header {
        margin-bottom: 60px;
    }
    
    .values-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .value-card {
        height: 300px;
    }
    
    .value-content {
        padding: 24px;
    }
    
    .value-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .value-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .values-section {
        padding: 60px 0;
    }
    
    .values-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .values-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .values-grid {
        gap: 30px;
    }
    
    .value-card {
        border-radius: 16px;
        height: 280px;
    }
    
    .value-content {
        padding: 24px;
    }
    
    .value-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .value-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .value-btn {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .values-section {
        padding: 50px 0;
    }
    
    .values-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .values-title {
        font-size: 1.75rem;
    }
    
    .values-grid {
        gap: 24px;
    }
    
    .value-card {
        border-radius: 12px;
        height: 250px;
    }
    
    .value-content {
        padding: 20px;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .value-btn {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .values-title {
        font-size: 1.5rem;
    }
    
    .value-card {
        height: 220px;
    }
    
    .value-content {
        padding: 16px;
    }
    
    .value-title {
        font-size: 1rem;
    }
    
    .value-description {
        font-size: 12px;
    }
    
    .value-btn {
        font-size: 13px;
    }
}

/* About Section - Bolt Style with Black/White Theme */
.about-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.about-header {
    margin-bottom: 40px;
}

.about-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-description p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.about-actions {
    margin-top: 48px;
}

.about-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.about-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.about-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Responsive Design for About Section */
@media (max-width: 1199px) {
    .about-section {
        padding: 100px 0;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-description p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description p {
        font-size: 16px;
    }
    
    .about-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        max-width: 600px;
        padding: 0 20px;
    }
    
    .about-label {
        font-size: 14px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }
    
    .about-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-description {
        margin: 32px 0;
    }
    
    .about-description p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-actions {
        margin-top: 40px;
    }
    
    .about-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 48px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-label {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        margin: 28px 0;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .about-actions {
        margin-top: 32px;
    }
    
    .about-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 44px;
        max-width: 180px;
    }
}

@media (max-width: 320px) {
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description p {
        font-size: 13px;
    }
    
    .about-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-height: 40px;
        max-width: 160px;
    }
}

/* Earn Section - Bolt Style */
.earn-section {
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.earn-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.earn-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.earn-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.earn-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.earn-card {
    display: flex;
    align-items: center;
    min-height: 400px;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.earn-card:hover {
    background: #f8f9fa;
}

.earn-card-image {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.earn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.earn-card:hover .earn-image {
    transform: scale(1.02);
}

.earn-card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.earn-card-text {
    width: 100%;
}

.earn-badge {
    display: inline-block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.earn-card-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.earn-card-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 400px;
}

.earn-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.earn-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.earn-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Alternating layout for cards */
.image-right {
    flex-direction: row-reverse;
}

.image-left {
    flex-direction: row;
}

/* Responsive Design for Earn Section */
@media (max-width: 1199px) {
    .earn-section {
        padding: 80px 0;
    }
    
    .earn-title {
        font-size: 3rem;
    }
    
    .earn-card-content {
        padding: 50px;
    }
    
    .earn-card-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .earn-section {
        padding: 60px 0;
    }
    
    .earn-header {
        margin-bottom: 60px;
    }
    
    .earn-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .earn-subtitle {
        font-size: 16px;
    }
    
    .earn-card {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .earn-card-image {
        height: 300px;
        order: 1;
    }
    
    .earn-card-content {
        padding: 40px;
        order: 2;
        min-height: auto;
    }
    
    .earn-card-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .earn-card-description {
        margin-bottom: 24px;
        max-width: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .earn-btn {
        padding: 12px 24px;
        font-size: 15px;
        max-width: 220px;
        min-height: 44px;
    }
}

@media (max-width: 767px) {
    .earn-section {
        padding: 40px 0;
    }
    
    .earn-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .earn-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .earn-subtitle {
        font-size: 15px;
    }
    
    .earn-card-image {
        height: 250px;
    }
    
    .earn-card-content {
        padding: 30px;
    }
    
    .earn-badge {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .earn-card-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }
    
    .earn-card-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .earn-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: auto;
        max-width: 200px;
        min-height: 40px;
    }
}

@media (max-width: 575px) {
    .earn-section {
        padding: 30px 0;
    }
    
    .earn-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .earn-title {
        font-size: 1.75rem;
    }
    
    .earn-subtitle {
        font-size: 14px;
    }
    
    .earn-card-image {
        height: 200px;
    }
    
    .earn-card-content {
        padding: 25px;
    }
    
    .earn-card-title {
        font-size: 1.25rem;
    }
    
    .earn-card-description {
        font-size: 14px;
    }
    
    .earn-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 36px;
        max-width: 160px;
    }
}

@media (max-width: 320px) {
    .earn-title {
        font-size: 1.5rem;
    }
    
    .earn-card-content {
        padding: 20px;
    }
    
    .earn-card-title {
        font-size: 1.1rem;
    }
    
    .earn-card-description {
        font-size: 13px;
    }
}

/* More Section - Enhanced Styling */
.more-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.more-image-container {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

.more-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.more-image:hover {
    transform: scale(1.02);
}

.more-content {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 4rem 0;
    position: relative;
}

.more-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.more-text {
    color: #ffffff;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.more-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.more-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.more-features {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    max-width: 28rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.feature-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.025em;
}

.feature-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for More Section - Enhanced */
@media (max-width: 1199px) {
    .more-title {
        font-size: 2.25rem;
    }
    
    .more-image-container {
        height: 45vh;
        min-height: 320px;
    }
    
    .more-text {
        max-width: 42rem;
        padding: 0 1.25rem;
    }
}

@media (max-width: 991px) {
    .more-content {
        padding: 3rem 0;
    }
    
    .more-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .more-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        max-width: 32rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        max-width: 24rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-item p {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-btn {
        padding: 0.5625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767px) {
    .more-image-container {
        height: 40vh;
        min-height: 280px;
    }
    
    .more-content {
        padding: 2.5rem 0;
    }
    
    .more-text {
        padding: 0 1rem;
    }
    
    .more-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .more-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        max-width: 28rem;
    }
    
    .feature-item {
        padding: 1.25rem;
        max-width: 20rem;
        border-radius: 0.75rem;
    }
    
    .feature-item h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .feature-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        border-radius: 0.375rem;
    }
}

@media (max-width: 575px) {
    .more-image-container {
        height: 35vh;
        min-height: 240px;
    }
    
    .more-content {
        padding: 2rem 0;
    }
    
    .more-text {
        padding: 0 0.75rem;
    }
    
    .more-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .more-description {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
        max-width: 24rem;
        line-height: 1.6;
    }
    
    .more-features {
        margin-top: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
        max-width: 18rem;
    }
    
    .feature-item h3 {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .feature-item p {
        font-size: 0.6875rem;
        margin-bottom: 0.875rem;
    }
    
    .feature-btn {
        padding: 0.4375rem 0.875rem;
        font-size: 0.6875rem;
    }
}

@media (max-width: 320px) {
    .more-image-container {
        height: 30vh;
        min-height: 200px;
    }
    
    .more-content {
        padding: 1.5rem 0;
    }
    
    .more-text {
        padding: 0 0.5rem;
    }
    
    .more-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .more-description {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
        max-width: 20rem;
    }
    
    .feature-item {
        padding: 0.875rem;
        max-width: 16rem;
        border-radius: 0.5rem;
    }
    
    .feature-item h3 {
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-item p {
        font-size: 0.625rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }
}

/* Download App Section - Bolt Style with Black/White Theme */
.download-section {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-header {
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.download-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

.download-main {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #666;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.main-app {
    background: #ffffff;
    color: #000000;
}

.rides-app {
    background: #333333;
    color: #ffffff;
}

.food-app {
    background: #ffffff;
    color: #000000;
}

.bills-app {
    background: #333333;
    color: #ffffff;
}

.app-name {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.download-info {
    flex: 1;
    color: #ffffff;
}

.service-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active,
.tab-btn:hover {
    background: #ffffff;
    color: #000000;
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
}

.service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.download-app-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.download-app-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Download Section */
@media (max-width: 1199px) {
    .download-section {
        padding: 100px 0;
    }
    
    .download-main {
        gap: 60px;
    }
    
    .download-title {
        font-size: 3rem;
    }
    
    .phone-container {
        width: 250px;
        height: 500px;
    }
    
    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .download-section {
        padding: 80px 0;
    }
    
    .download-header {
        margin-bottom: 60px;
    }
    
    .download-main {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .download-title {
        font-size: 2.5rem;
    }
    
    .phone-container {
        width: 220px;
        height: 440px;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-tabs {
        justify-content: center;
        margin: 0 auto 40px;
    }
}

@media (max-width: 767px) {
    .download-section {
        padding: 60px 0;
    }
    
    .download-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .download-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .download-subtitle {
        font-size: 16px;
    }
    
    .download-main {
        gap: 40px;
    }
    
    .phone-container {
        width: 200px;
        height: 400px;
        padding: 15px;
    }
    
    .phone-screen {
        padding: 30px 15px;
        gap: 15px;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-name {
        font-size: 9px;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .service-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .download-app-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .download-section {
        padding: 50px 0;
    }
    
    .download-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .download-title {
        font-size: 1.75rem;
    }
    
    .download-subtitle {
        font-size: 15px;
    }
    
    .download-main {
        gap: 30px;
    }
    
    .phone-container {
        width: 180px;
        height: 360px;
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
    }
    
    .app-name {
        font-size: 8px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .download-app-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 180px;
    }
}

@media (max-width: 320px) {
    .download-title {
        font-size: 1.5rem;
    }
    
    .phone-container {
        width: 160px;
        height: 320px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .download-app-btn {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 160px;
    }
}

/* News and Updates Section - Bolt Style with Black/White Theme */
.news-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.news-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.news-view-all {
    background: transparent;
    color: #666666;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.news-view-all:hover {
    color: #000000;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.news-view-all:hover .arrow {
    transform: translate(2px, -2px);
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-article {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-article:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-article:hover .news-image {
    transform: scale(1.02);
}

.article-content {
    padding: 0;
}

.article-date {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.side-articles {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-item {
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    border: none;
    background: none;
}

.news-item:hover {
    transform: translateX(4px);
}

.news-item-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.news-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumb {
    transform: scale(1.05);
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.news-item-date {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* Responsive Design for News Section */
@media (max-width: 1199px) {
    .news-section {
        padding: 100px 0;
    }
    
    .news-title {
        font-size: 3rem;
    }
    
    .news-content {
        gap: 50px;
    }
    
    .article-image {
        height: 350px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 991px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-header {
        margin-bottom: 50px;
    }
    
    .news-title {
        font-size: 2.5rem;
    }
    
    .news-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.4rem;
    }
    
    .side-articles {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-view-all {
        font-size: 15px;
    }
    
    .news-content {
        gap: 32px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
    
    .news-item {
        gap: 12px;
    }
    
    .news-item-image {
        width: 80px;
        height: 80px;
    }
    
    .news-item-title {
        font-size: 0.9rem;
    }
    
    .news-item-date {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .news-section {
        padding: 50px 0;
    }
    
    .news-header {
        margin-bottom: 30px;
    }
    
    .news-title {
        font-size: 1.75rem;
    }
    
    .news-view-all {
        font-size: 14px;
    }
    
    .news-content {
        gap: 28px;
    }
    
    .article-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .side-articles {
        gap: 20px;
    }
    
    .news-item {
        gap: 10px;
    }
    
    .news-item-image {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }
    
    .news-item-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .news-item-date {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .news-title {
        font-size: 1.5rem;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-title {
        font-size: 1rem;
    }
    
    .news-item-image {
        width: 60px;
        height: 60px;
    }
    
    .news-item-title {
        font-size: 0.8rem;
    }
}

/* Safety Section - Bolt Style with Black/White Theme */
.safety-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.safety-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.safety-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.highlight-safety {
    background: #000000;
    color: #ffffff;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 700;
}

.safety-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-image-container {
    position: relative;
    width: 320px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.safety-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.safety-image-container:hover .safety-image {
    transform: scale(1.05);
}

.safety-badge-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}

.safety-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #000000;
}

.safety-icon {
    font-size: 32px;
}

.safety-info {
    padding: 0;
}

.safety-info-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.safety-info-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.safety-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.safety-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.safety-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.safety-commitment {
    flex-shrink: 0;
}

.commitment-circle {
    position: relative;
    width: 120px;
    height: 120px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.commitment-items {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.commitment-item {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    white-space: nowrap;
    transform-origin: center;
}

.commitment-item:nth-child(1) {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.commitment-item:nth-child(2) {
    bottom: 10px;
    left: 15px;
    transform: rotate(-30deg);
}

.commitment-item:nth-child(3) {
    bottom: 10px;
    right: 15px;
    transform: rotate(30deg);
}

.commitment-center {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.commitment-logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Safety Section */
@media (max-width: 1199px) {
    .safety-section {
        padding: 100px 0;
    }
    
    .safety-header {
        margin-bottom: 70px;
    }
    
    .safety-title {
        font-size: 3rem;
    }
    
    .safety-content {
        gap: 60px;
    }
    
    .safety-image-container {
        width: 280px;
        height: 210px;
    }
    
    .safety-info-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .safety-section {
        padding: 80px 0;
    }
    
    .safety-header {
        margin-bottom: 60px;
    }
    
    .safety-title {
        font-size: 2.5rem;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .safety-image-container {
        width: 240px;
        height: 180px;
        margin: 0 auto;
    }
    
    .safety-info-title {
        font-size: 1.75rem;
    }
    
    .safety-actions {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .safety-section {
        padding: 60px 0;
    }
    
    .safety-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .safety-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .safety-title {
        font-size: 2rem;
    }
    
    .safety-subtitle {
        font-size: 16px;
    }
    
    .safety-content {
        gap: 40px;
    }
    
    .safety-image-container {
        width: 200px;
        height: 150px;
    }
    
    .safety-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .safety-icon {
        font-size: 24px;
    }
    
    .safety-info-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .safety-info-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .safety-actions {
        flex-direction: column;
        gap: 24px;
    }
    
    .safety-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }
    
    .commitment-circle {
        width: 100px;
        height: 100px;
    }
    
    .commitment-item {
        font-size: 11px;
    }
    
    .commitment-center {
        width: 35px;
        height: 35px;
    }
    
    .commitment-logo {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .safety-section {
        padding: 50px 0;
    }
    
    .safety-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .safety-title {
        font-size: 1.75rem;
    }
    
    .safety-subtitle {
        font-size: 15px;
    }
    
    .safety-content {
        gap: 32px;
    }
    
    .safety-image-container {
        width: 180px;
        height: 135px;
    }
    
    .safety-info-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .safety-info-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .safety-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 180px;
    }
    
    .commitment-circle {
        width: 90px;
        height: 90px;
    }
    
    .commitment-item {
        font-size: 10px;
    }
    
    .commitment-center {
        width: 30px;
        height: 30px;
    }
    
    .commitment-logo {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .safety-title {
        font-size: 1.5rem;
    }
    
    .safety-image-container {
        width: 160px;
        height: 120px;
    }
    
    .safety-info-title {
        font-size: 1.1rem;
    }
    
    .safety-info-description {
        font-size: 14px;
    }
    
    .safety-btn {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 160px;
    }
    
    .commitment-circle {
        width: 80px;
        height: 80px;
    }
    
    .commitment-center {
        width: 25px;
        height: 25px;
    }
    
    .commitment-logo {
        font-size: 12px;
    }
}

/* Footer - Bolt Style with Black/White Theme */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand {
    flex-shrink: 0;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
}

.footer-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.footer-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

/* Responsive Design for Footer */
@media (max-width: 1199px) {
    .footer {
        padding: 70px 0 35px;
    }
    
    .footer-main {
        gap: 50px;
    }
    
    .footer-links {
        gap: 35px;
    }
    
    .footer-logo-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-actions {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-main {
        gap: 32px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 32px;
        gap: 20px;
    }
    
    .footer-social {
        gap: 16px;
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-main {
        gap: 28px;
    }
    
    .footer-logo {
        margin-bottom: 24px;
    }
    
    .footer-logo-text {
        font-size: 22px;
    }
    
    .footer-actions {
        gap: 10px;
    }
    
    .footer-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-height: 36px;
    }
    
    .footer-links {
        gap: 28px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .footer-list {
        gap: 10px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 24px;
        gap: 16px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-height: 32px;
    }
    
    .footer-title {
        font-size: 13px;
    }
    
    .footer-link {
        font-size: 11px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
}