/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
}

.nav-content {
    display: flex;
    align-items: center;
    height: 6rem;
    width: 100%;
}

.logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 4rem;
    width: auto;
}

.nav-desktop {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    font-size: 1rem;
}

.nav-link:hover {
    color: #111827;
    background-color: #f9fafb;
}

.nav-link-cta {
    background-color: #111827;
    color: white;
    padding: 0.5rem 1.5rem;
}

.nav-link-cta:hover {
    background-color: #1f2937;
}

.nav-phones {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: #374151;
    font-size: 0.95rem;
}

.phone-link-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
}

.phone-link:hover {
    color: #111827;
    background-color: #f9fafb;
}

.mobile-menu-btn {
    display: block;
    margin-left: auto;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
}

.mobile-menu-btn:hover {
    background-color: #f9fafb;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    border-top: 1px solid #e5e7eb;
    background: white;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-item {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.mobile-menu-item:hover {
    background-color: #f9fafb;
}

.mobile-menu-cta {
    background-color: #111827;
    color: white;
    justify-content: center;
}

.mobile-menu-cta:hover {
    background-color: #1f2937;
}

.icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
    color: white;
    overflow: hidden;
    min-height: 600px;
}

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    color: white;
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-arrow-left {
    left: 1rem;
}

.hero-arrow-right {
    right: 1rem;
}

.hero-content {
    position: relative;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    height: 8rem;
    width: auto;
    filter: brightness(0) invert(1);
    drop-shadow: 0 25px 25px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-btn-primary {
    background-color: white;
    color: #111827;
}

.hero-btn-primary:hover {
    background-color: #f9fafb;
}

.hero-btn-secondary {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.hero-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.hero-indicator.active {
    background-color: white;
    width: 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: white;
}

.section-gray {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.fleet-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
    cursor: pointer;
}

.fleet-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.fleet-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.fleet-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleet-name {
    font-size: 1.5rem;
    color: #111827;
    transition: color 0.3s;
}

.fleet-card:hover .fleet-name {
    color: #374151;
}

.fleet-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
}

.fleet-description {
    color: #6b7280;
}

.fleet-capabilities {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.capabilities-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.capability-icon {
    width: 16px;
    height: 16px;
    color: #111827;
    flex-shrink: 0;
}

.fleet-btn {
    width: 100%;
    background-color: #111827;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.fleet-btn:hover {
    background-color: #1f2937;
}

/* Gallery Section */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    width: calc(50% - 0.5rem);
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    transition: color 0.2s;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #d1d5db;
}

.lightbox-arrow {
    position: absolute;
    color: white;
    transition: color 0.2s;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-arrow:hover {
    color: #d1d5db;
}

.lightbox-arrow-left {
    left: 1rem;
}

.lightbox-arrow-right {
    right: 1rem;
}

.lightbox-content {
    max-width: 112rem;
    max-height: 90vh;
    padding: 0 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-title {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    order: 2;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 0.75rem;
}

.about-text {
    order: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #374151;
}

.about-content p {
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #e5e7eb;
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1.125rem;
    color: #111827;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-text {
    color: #374151;
    position: relative;
    z-index: 10;
    line-height: 1.7;
}

.testimonial-image {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

/* Comparison Section */
.comparison-table-wrapper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead tr {
    background-color: #111827;
    color: white;
}

.comparison-table th {
    padding: 1rem 1.5rem;
    text-align: left;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    text-align: center;
}

.comparison-highlight {
    background: linear-gradient(to bottom right, #000000, #111827) !important;
    position: relative;
}

.comparison-highlight th {
    font-size: 1.5rem;
    padding: 1.5rem;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: white;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.comparison-table td.comparison-highlight {
    background: linear-gradient(to bottom right, #f3f4f6, #f9fafb) !important;
    border-left: 4px solid #111827;
    border-right: 4px solid #111827;
}

.stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.stars-gray {
    color: #111827;
}

.stars-gold {
    color: #eab308;
}

/* Contact Section */
.contact-card {
    background: linear-gradient(to bottom right, #111827, #1f2937);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 56rem;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-label {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.25rem;
}

.contact-language {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        padding: 10rem 0;
        min-height: 700px;
    }

    .hero-logo-img {
        height: 12rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

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

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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-content {
        height: 7rem;
    }

    .hero {
        min-height: 800px;
    }

    .hero-content {
        padding: 12rem 0;
        min-height: 800px;
    }

    .hero-logo-img {
        height: 16rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }
}

/* Bus Detail Page */
.detail-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1rem 0;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.back-btn:hover {
    color: #374151;
}

.detail-hero {
    position: relative;
    background: linear-gradient(to bottom right, #111827, #1f2937);
    color: white;
    padding: 4rem 0;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.detail-hero-content {
    position: relative;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.detail-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.detail-description {
    font-size: 1.25rem;
    color: #f3f4f6;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.detail-capacity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.detail-hero-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.detail-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-content {
    background-color: #f8fafc;
    padding: 4rem 0;
    min-height: 100vh;
}

.detail-gallery-section {
    margin-bottom: 3rem;
}

.detail-section-title {
    font-size: 1.875rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.detail-section-title-small {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.detail-gallery-carousel {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.detail-gallery-main {
    position: relative;
    aspect-ratio: 16/9;
}

.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
}

.detail-gallery-caption {
    color: white;
    font-size: 1.25rem;
}

.detail-gallery-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.detail-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    color: #111827;
}

.detail-gallery-arrow:hover {
    background-color: white;
}

.detail-gallery-arrow-left {
    left: 1rem;
}

.detail-gallery-arrow-right {
    right: 1rem;
}

.detail-gallery-thumbnails {
    background-color: #f3f4f6;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.detail-thumbnail {
    flex-shrink: 0;
    width: 6rem;
    height: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.detail-thumbnail:hover {
    border-color: #3b82f6;
}

.detail-thumbnail.active {
    border-color: #2563eb;
    transform: scale(1.05);
}

.detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.detail-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-feature svg {
    width: 20px;
    height: 20px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-feature span {
    color: #374151;
}

.detail-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-capability {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.detail-capability-icon {
    background-color: #dbeafe;
    padding: 0.75rem;
    border-radius: 50%;
}

.detail-capability-icon svg {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.detail-capability span {
    color: #374151;
}

.detail-ideal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.detail-ideal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.detail-ideal-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #111827;
    border-radius: 50%;
}

.detail-ideal-item span {
    color: #374151;
}

.detail-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-spec {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.detail-spec:last-child {
    border-bottom: none;
}

.detail-spec-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.detail-spec-value {
    color: #111827;
}

.detail-cta {
    background: linear-gradient(to bottom right, #111827, #1f2937);
    color: white;
}

.detail-cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detail-cta-text {
    color: #f3f4f6;
    margin-bottom: 1.5rem;
}

.detail-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: #111827;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.detail-cta-btn:hover {
    background-color: #f9fafb;
}

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

.safety-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.safety-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.safety-text {
    font-size: 0.875rem;
    color: #6b7280;
}

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

/* Responsive Detail Page */
@media (min-width: 768px) {
    .detail-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-ideal {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-capabilities {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}
