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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

/* Colors */
:root {
    --primary-blue: #0D3B8E;
    --accent-red: #E63946;
    --dark-blue: #082659;
    --text-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
    /* Logo ismini her zaman göster */
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-red);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
}

.phone-icon {
    font-size: 12px;
}

.cta-button {
    background: var(--accent-red);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger {
    width: 24px;
    height: 3px;
    background: var(--text-gray);
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--text-gray);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    width: 100%;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 8px 0;
}

.mobile-menu.show {
    display: flex;
}

.mobile-contact {
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: 16px;
}

/* Responsive Design - Navbar */
@media (max-width: 1200px) {
    .nav-contact .phone-numbers {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-contact {
        display: none;
    }

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

    .nav-content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-brand {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .logo {
        height: 36px;
    }
    
    .nav-brand {
        gap: 8px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.btn-red {
    background: var(--accent-red);
    color: white;
}

.btn-red:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

.btn-blue {
    background: var(--primary-blue);
    color: white;
}

.btn-blue:hover {
    background: #0a2d6b;
    transform: scale(1.05);
}

.btn.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/18290480/pexels-photo-18290480.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.hero-badge {
    background: var(--primary-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
    position: relative;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 48px;
}

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

.title-underline {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-top: 8px;
}

.section-title.centered .title-underline {
    margin: 8px auto 0;
}

/* Page Headers */
.page-header {
    padding: 120px 0 80px;
    background: var(--light-gray);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content {
    margin: 24px 0 32px;
}

.about-content p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.stat-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Fleet Preview */
.fleet-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.vehicle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover img {
    transform: scale(1.1);
}

.vehicle-info {
    padding: 24px;
}

.vehicle-info h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.vehicle-info p {
    color: #666;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-card {
    background: var(--primary-blue);
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 16px 48px rgba(13, 59, 142, 0.3);
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Company Info */
.company-info {
    padding: 80px 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.about-logo {
    height: 96px;
    width: auto;
}

.company-brand h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.company-slogan {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.company-description p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.blue-bg {
    background: var(--primary-blue);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.value-card h3 {
    color: var(--text-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Fleet Types */
.fleet-types {
    padding: 80px 0;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.fleet-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.fleet-content {
    padding: 32px;
}

.fleet-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.fleet-subtitle {
    color: #666;
    font-weight: 600;
    margin-bottom: 16px;
}

.fleet-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.features-list h4 {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.why-item {
    text-align: center;
    color: white;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.why-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Vehicle Gallery */
.vehicle-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-info {
    padding: 24px;
    text-align: center;
}

.gallery-brand {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Vehicle Stats */
.vehicle-stats {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Vehicle Features */
.vehicle-features {
    padding: 80px 0;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

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

.contact-card, .form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card h3, .form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    font-size: 1.5rem;
    margin-top: 4px;
    color: var(--primary-blue);
}

.contact-detail h4 {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail p {
    color: #666;
    margin: 2px 0;
}

.working-hours-card {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 16px;
}

.working-hours-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.working-hours-content .detail-icon {
    color: white;
}

.working-hours-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hour-item span:first-child {
    opacity: 0.9;
}

.hour-item span:last-child {
    font-weight: 600;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 59, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background: white;
    padding: 48px 64px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.success-content h3 {
    color: var(--text-gray);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.success-content p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom {
    background: var(--dark-blue);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links,
    .nav-contact {
        display: none;
    }

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

    .company-name {
        display: block;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-grid,
    .company-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

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

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .features-grid,
    .fleet-grid,
    .values-grid,
    .fleet-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .page-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .cta-card {
        padding: 48px 32px;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .contact-card,
    .form-card {
        padding: 32px 24px;
    }

    .working-hours-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .page-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .value-card {
        padding: 32px 24px;
    }

    .fleet-content {
        padding: 24px;
    }

    .success-content {
        padding: 32px 24px;
        margin: 16px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-indicator,
    .success-message {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-bg,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: var(--text-gray);
    }

    * {
        box-shadow: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }

    .wheel {
        animation: none;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .btn {
        border: 2px solid currentColor;
    }
}
/* =============================================================
   ÇEKER NAKLİYAT — CORPORATE DESIGN SYSTEM / JUNE 2026
   ============================================================= */
:root {
    --primary-blue: #0a1d37;
    --dark-blue: #051426;
    --accent-red: #c52c3b;
    --accent-red-dark: #9f1f2d;
    --text-gray: #142238;
    --light-gray: #f4f6f9;
    --white: #ffffff;
    --body-text: #5c6879;
    --line: #e1e6ed;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-gray);
    background: #fff;
    letter-spacing: -0.01em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: linear-gradient(rgba(10, 29, 55, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 29, 55, .018) 1px, transparent 1px);
    background-size: 48px 48px;
}

.container { max-width: 1240px; }

/* Persistent home return line: restored across every page. */
.home-return {
    position: fixed;
    top: 18px;
    left: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    width: 8px;
    height: 48px;
    overflow: hidden;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 4px 16px rgba(5, 20, 38, .22);
    transition: width .24s ease, background .24s ease;
}

.home-return:hover,
.home-return:focus-visible {
    width: 124px;
    background: var(--accent-red-dark);
    outline: none;
}

.home-return-label {
    padding-left: 18px;
    min-width: 124px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* Header */
.navbar {
    background: rgba(5, 20, 38, .98) !important;
    padding: 13px 0;
    box-shadow: 0 8px 28px rgba(5, 20, 38, .16);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.navbar.is-scrolled {
    padding: 9px 0;
    background: rgba(5, 20, 38, 1) !important;
}

.nav-content { gap: 22px; flex-wrap: nowrap; }
.nav-brand { gap: 11px; }
.logo {
    height: 43px;
    min-width: 43px;
    filter: brightness(0) invert(1) contrast(1.2);
}
.company-name {
    color: #fff;
    font-size: 17px;
    letter-spacing: .01em;
    font-weight: 800;
}
.nav-links { gap: 25px; margin-left: auto; }
.nav-link {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
    height: 3px;
    border-radius: 99px;
    background: var(--accent-red);
}
.nav-contact { gap: 18px; }
.phone-item, .phone-item a, .nav-contact .phone-item { color: rgba(255,255,255,.78); font-size: 12px; text-decoration: none; }
.phone-icon { color: #fff; font-size: 9px; font-weight: 800; }
.cta-button {
    background: var(--accent-red);
    border-radius: 4px;
    padding: 11px 18px;
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-weight: 800;
}
.cta-button:hover { background: var(--accent-red-dark); transform: translateY(-1px); }
.hamburger, .hamburger::before, .hamburger::after { background: #fff; }
.mobile-menu { border-color: rgba(255,255,255,.14); }
.mobile-menu a { color: rgba(255,255,255,.88); font-weight: 700; }
.mobile-contact { border-color: rgba(255,255,255,.14); }

/* Hero */
.hero {
    min-height: 760px;
    padding: 130px 0 88px;
    align-items: center;
    background: var(--dark-blue);
}
.hero-bg {
    background-color: var(--dark-blue);
    background-image: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2400&q=85');
    background-position: center center;
    transform: scale(1.01);
}
.hero-overlay {
    background: linear-gradient(90deg, rgba(5,20,38,.92) 0%, rgba(5,20,38,.68) 55%, rgba(5,20,38,.82) 100%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 70%, rgba(197,44,59,.10) 70% 71%, transparent 71% 100%);
}
.hero-content { max-width: 920px; padding: 0 20px; }
.hero-logo { margin-bottom: 20px; }
.hero-logo-img {
    display: block;
    width: auto;
    max-width: min(320px, 75vw);
    height: 112px;
    margin: 0 auto 18px;
    object-fit: contain;
    filter: brightness(0) invert(1) contrast(1.15);
}
.hero-badge {
    border-radius: 3px;
    padding: 8px 14px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.28);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero-title {
    max-width: 880px;
    margin: 0 auto 14px;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.07;
}
.hero-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-description { max-width: 720px; margin: 0 auto 32px; font-size: 1.05rem; color: rgba(255,255,255,.86); }
.hero-buttons { gap: 12px; }
.btn {
    border-radius: 4px;
    min-width: 138px;
    padding: 13px 22px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.btn-red { background: var(--accent-red); }
.btn-red:hover { background: var(--accent-red-dark); transform: translateY(-2px); }
.btn-blue { background: #fff; color: var(--primary-blue); }
.btn-blue:hover { background: #edf1f6; transform: translateY(-2px); }
.scroll-indicator { opacity: .65; }

/* Section hierarchy */
.section-title, .page-title, .cta-section h2 {
    color: var(--text-gray);
    font-weight: 800;
    letter-spacing: -.045em;
}
.section-title { font-size: clamp(2rem, 3vw, 2.75rem); }
.title-underline {
    width: 46px;
    height: 3px;
    background: var(--accent-red);
    margin-top: 13px;
}
.page-header {
    padding: 150px 0 76px;
    color: #fff;
    text-align: left;
    background: linear-gradient(112deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 100%;
    top: 0;
    right: -12vw;
    background: linear-gradient(135deg, transparent 45%, rgba(197,44,59,.2) 45% 46%, transparent 46%);
}
.page-header .container { position: relative; z-index: 1; }
.page-title { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 10px; }
.page-subtitle { color: rgba(255,255,255,.75); margin: 0; max-width: 680px; }

.features, .fleet-preview, .vehicle-stats, .map-section, .cta-section { background: var(--light-gray); }
.features, .about-preview, .fleet-preview, .fleet-types, .company-info, .values-section, .vehicle-gallery, .vehicle-features, .contact-section, .map-section, .cta-section { padding: 96px 0; }
.features-grid { gap: 18px; }
.feature-card, .stat-card, .value-card, .fleet-card, .gallery-item, .contact-card, .form-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: none;
}
.feature-card { padding: 34px 30px; text-align: left; position: relative; }
.feature-card::after { content:''; position:absolute; left:30px; right:30px; bottom:0; height:3px; background: var(--accent-red); transform: scaleX(0); transform-origin:left; transition:transform .25s ease; }
.feature-card:hover, .stat-card:hover, .value-card:hover, .fleet-card:hover, .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(8, 27, 52, .08); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon, .value-icon, .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 28px;
    color: var(--accent-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    font-variant-numeric: tabular-nums;
    margin: 0 0 21px;
    border-left: 3px solid var(--accent-red);
    padding-left: 10px;
}
.feature-card h3, .stat-card h4, .value-card h3, .fleet-content h3 { color: var(--text-gray); font-weight: 800; }
.feature-card p, .stat-card p, .value-card p, .about-content p, .fleet-description, .fleet-subtitle, .gallery-brand, .contact-detail p, .cta-section p { color: var(--body-text); }

.about-grid { gap: 74px; }
.about-content { margin: 27px 0 33px; }
.about-content p { line-height: 1.85; }
.about-stats { gap: 14px; }
.stat-card { padding: 27px 23px; text-align: left; }
.stat-icon { font-size: 11px; min-width: auto; }
.stat-card h4 { font-size: 1.02rem; }

.fleet-grid { gap: 18px; }
.vehicle-card { border-radius: 6px; box-shadow: none; border: 1px solid var(--line); }
.vehicle-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(8, 27, 52, .08); }
.vehicle-card img { height: 225px; }
.vehicle-info { padding: 20px 22px 22px; }
.vehicle-info h3 { color: var(--text-gray); font-size: 1.07rem; font-weight: 800; margin-bottom: 6px; }
.vehicle-info p { color: var(--body-text); font-size: .87rem; line-height: 1.55; }

.fleet-card { border-radius: 6px; }
.fleet-card img { height: 230px; }
.fleet-content { padding: 28px; }
.fleet-content h3 { font-size: 1.35rem; }
.features-list li { color: var(--body-text); }
.features-list li::first-letter { color: var(--accent-red); }

.blue-bg, .why-choose, .working-hours-card { background: var(--primary-blue); }
.why-choose { padding: 92px 0; }
.why-number { color: #fff; font-size: 3.25rem; font-weight: 800; letter-spacing: -.05em; }
.why-item { text-align: left; }

.gallery-grid { gap: 18px; }
.gallery-item { border-radius: 6px; }
.gallery-item img { height: 235px; }
.gallery-info { padding: 18px; text-align: left; }
.gallery-brand { color: var(--text-gray); font-weight: 800; }

/* Contact / information cards */
.contact-grid { gap: 28px; }
.contact-card, .form-card { padding: 36px; }
.contact-card h3, .form-card h3 { color: var(--text-gray); margin-bottom: 26px; font-weight: 800; }
.contact-details { gap: 24px; }
.contact-detail { gap: 14px; }
.detail-icon, .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0;
    border-radius: 50%;
    color: var(--accent-red);
    border: 1px solid rgba(197,44,59,.35);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -.03em;
}
.contact-detail h4 { color: var(--text-gray); font-weight: 800; }
.working-hours-card { border-radius: 6px; padding: 34px; }
.working-hours-content .detail-icon { color: #fff; border-color: rgba(255,255,255,.4); }
.form-group label { color: var(--text-gray); font-weight: 800; font-size: .8rem; letter-spacing: .03em; }
.form-group input, .form-group textarea { border: 1px solid #dbe1e9; border-radius: 4px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(10,29,55,.09); }
.map-container { border-radius: 6px; box-shadow: none; border: 1px solid var(--line); }

.cta-banner { padding: 84px 0; background: var(--dark-blue); }
.cta-card { border-radius: 6px; background: transparent; box-shadow: none; padding: 0; }
.cta-card h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -.04em; }
.cta-card .btn { margin-top: 10px; }
.cta-section { text-align: left; }
.cta-section .btn { margin-top: 8px; }

/* Footer: all previous blue areas now sit in the same navy system. */
.footer { background: var(--dark-blue); padding: 70px 0 0; }
.footer-logo { filter: brightness(0) invert(1) contrast(1.1); height: 52px; }
.footer-section h3 { font-weight: 800; letter-spacing: -.02em; }
.footer-section ul li a:hover { color: #fff; padding-left: 3px; }
.footer-bottom { background: #030e1d; padding: 21px 0; }
.footer .contact-icon { color: #fff; border-color: rgba(255,255,255,.28); }

@media (max-width: 1100px) {
    .nav-links { gap: 17px; }
    .company-name { font-size: 15px; }
}

@media (max-width: 1024px) {
    .navbar { padding: 12px 0; }
    .mobile-menu { background: var(--dark-blue); padding: 20px; margin: 16px -20px -12px; width: calc(100% + 40px); }
    .hero { min-height: 680px; }
    .hero-content { max-width: 760px; }
}

@media (max-width: 768px) {
    .home-return { top: 12px; height: 38px; }
    .home-return:hover, .home-return:focus-visible { width: 102px; }
    .home-return-label { min-width: 102px; font-size: 10px; padding-left: 15px; }
    .logo { height: 39px; min-width: 39px; }
    .company-name { font-size: 15px; }
    .hero { min-height: 700px; padding: 130px 0 74px; }
    .hero-bg { background-position: 58% center; }
    .hero-logo-img { height: 90px; margin-bottom: 14px; }
    .hero-title { font-size: clamp(2.25rem, 10vw, 3.2rem); }
    .hero-subtitle { font-size: .78rem; line-height: 1.55; }
    .hero-description { font-size: .95rem; }
    .features, .about-preview, .fleet-preview, .fleet-types, .company-info, .values-section, .vehicle-gallery, .vehicle-features, .contact-section, .map-section, .cta-section { padding: 68px 0; }
    .page-header { padding: 122px 0 58px; }
    .feature-card, .contact-card, .form-card { padding: 27px 23px; }
    .cta-banner { padding: 65px 0; }
}


/* === 2026-06-26 readability + polish update === */
body::before { display: none !important; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
p, li, .page-subtitle, .hero-description, .feature-card p, .about-content p, .vehicle-info p, .fleet-description, .fleet-subtitle, .gallery-brand, .contact-detail p, .cta-section p, .stat-card p, .value-card p {
    color: #465366 !important;
    font-weight: 500;
}
.section-title, .page-title, .cta-card h2, .cta-section h2, .feature-card h3, .vehicle-info h3, .stat-card h4, .value-card h3, .fleet-content h3, .contact-card h3, .form-card h3 {
    letter-spacing: -0.03em;
}
.title-underline { opacity: .45; width: 38px; height: 2px; margin-top: 10px; }
.hero { min-height: 635px !important; padding: 118px 0 58px !important; }
.hero-bg { background-position: center 42%; }
.hero-content { max-width: 860px !important; }
.hero-logo { margin-bottom: 14px !important; }
.hero-logo-img {
    height: 126px !important;
    max-width: min(380px, 82vw) !important;
    margin: 0 auto 14px !important;
}
.hero-badge { margin-bottom: 10px; }
.hero-title {
    max-width: none !important;
    margin: 0 auto 10px !important;
    font-size: clamp(2.9rem, 6vw, 5rem) !important;
    letter-spacing: -0.06em !important;
}
.hero-subtitle {
    margin-bottom: 16px !important;
    font-size: 0.96rem !important;
    color: rgba(255,255,255,.96) !important;
    letter-spacing: .12em !important;
}
.hero-description { max-width: 680px !important; margin: 0 auto 28px !important; }
.scroll-indicator { display: none !important; }
.btn, .cta-button { box-shadow: none; }
.btn-red, .cta-button { background: #c52c3b !important; }
.btn-red:hover, .cta-button:hover { background: #a61f2d !important; }
.phone-item { gap: 8px; font-weight: 700; }
.phone-item a { font-weight: 700; }
.phone-icon, .nav-contact .phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1;
}
.feature-card, .stat-card, .value-card, .fleet-card, .gallery-item, .contact-card, .form-card, .vehicle-card, .map-container {
    border-color: #e7ebf1 !important;
}
.feature-card, .value-card, .stat-card { padding: 32px 28px !important; }
.feature-icon, .value-icon, .stat-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(197,44,59,.22) !important;
    background: #f9fbfd;
    padding: 0 !important;
    margin: 0 0 18px !important;
    font-size: 0.94rem !important;
    letter-spacing: .06em !important;
    color: #c52c3b !important;
}
.feature-card::after { left: 0 !important; right: 0 !important; height: 2px !important; }
.features-list li { position: relative; padding-left: 18px; }
.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #c52c3b;
    font-weight: 800;
}
.features-list li::first-letter { color: inherit !important; }
.success-icon { font-size: 20px; }
@media (max-width: 1024px) {
    .hero { min-height: 600px !important; padding: 112px 0 52px !important; }
    .hero-logo-img { height: 108px !important; }
}
@media (max-width: 768px) {
    .hero { min-height: 560px !important; padding: 108px 0 44px !important; }
    .hero-logo-img { height: 92px !important; }
    .hero-title { font-size: clamp(2.3rem, 10vw, 3.45rem) !important; }
    .hero-subtitle { font-size: .8rem !important; letter-spacing: .08em !important; }
    .feature-card, .value-card, .stat-card, .contact-card, .form-card { padding: 26px 22px !important; }
}


/* === 2026-06-26 contrast + responsive refinement update === */
.about-cta-btn { background: #c52c3b !important; color: #fff !important; }
.about-cta-btn:hover { background: #a61f2d !important; }

/* General contrast improvements */
p, li, .feature-card p, .about-content p, .vehicle-info p, .fleet-description, .fleet-subtitle, .gallery-brand, .contact-detail p, .cta-section p, .stat-card p, .value-card p {
    color: #526175 !important;
}
.page-subtitle { color: rgba(255,255,255,.86) !important; }
.page-header .page-subtitle,
.page-header p,
.blue-bg .stat-label,
.blue-bg p,
.why-choose p,
.why-choose h3,
.cta-banner p,
.working-hours-card p,
.working-hours-card span,
.footer p,
.footer-section p,
.footer-section ul li a,
.footer .contact-item span,
.footer .contact-item a,
.footer .contact-item div,
.footer-bottom p {
    color: rgba(255,255,255,.86) !important;
}
.blue-bg .stat-number, .why-number, .working-hours-card h4, .footer-section h3, .footer-section strong, .footer .contact-item strong, .page-header .page-title {
    color: #ffffff !important;
}
.section-title.white, .blue-bg .section-title { color: #ffffff !important; }

/* Hero scroll indicator returned with better placement */
.scroll-indicator {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: auto !important;
    right: 28px;
    bottom: 24px;
    transform: none !important;
    opacity: .92 !important;
    z-index: 12;
    pointer-events: none;
}
.mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,.9);
    background: rgba(255,255,255,.04);
    box-shadow: 0 8px 20px rgba(0,0,0,.14);
}
.wheel { background: #fff; }
.scroll-arrow {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,.94);
}

/* Responsive polish across device sizes */
.container { width: min(100%, 1240px); }
img { max-width: 100%; height: auto; }
.nav-content { align-items: center; }
.nav-brand { min-width: 0; }
.company-name { max-width: 100%; }
.hero-content { padding-inline: clamp(18px, 3vw, 24px) !important; }
.hero-description { font-size: clamp(.98rem, 1.3vw, 1.05rem) !important; }
.hero-buttons { gap: 14px; }
.btn { min-height: 46px; }
.feature-card, .value-card, .stat-card, .vehicle-card, .fleet-card, .gallery-item, .contact-card, .form-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

@media (max-width: 1024px) {
    .scroll-indicator { right: 18px; bottom: 18px; }
    .phone-numbers { gap: 6px; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .hero-buttons { width: 100%; justify-content: center; }
    .hero-buttons .btn { max-width: 280px; }
    .scroll-indicator {
        left: 50% !important;
        right: auto;
        bottom: 16px;
        transform: translateX(-50%) !important;
    }
    .mouse { width: 26px; height: 42px; }
    .page-title { line-height: 1.08; }
    .page-subtitle { font-size: .98rem; line-height: 1.55; }
}

@media (max-width: 480px) {
    .company-name { font-size: 14px; }
    .hero { padding-bottom: 58px !important; }
    .hero-badge { font-size: 10px; letter-spacing: .08em; }
    .hero-description { font-size: .95rem !important; }
    .btn, .cta-button { width: 100%; max-width: 280px; justify-content: center; }
    .about-cta-btn { max-width: 100%; }
    .scroll-indicator { bottom: 10px; }
}


/* === 2026-06-26 CTA banner + 7/24 fix === */
.why-number {
    letter-spacing: -0.03em !important;
    line-height: 1;
    white-space: nowrap;
}
.why-number.service-hours {
    letter-spacing: 0 !important;
    font-variant-numeric: lining-nums tabular-nums;
}
.why-number.service-hours span { display: inline-block; }

.cta-section { padding: 84px 0; }
.cta-panel {
    background: linear-gradient(135deg, #071b34 0%, #0b2d57 100%);
    border-radius: 18px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 20px 50px rgba(7, 27, 52, 0.14);
    position: relative;
    overflow: hidden;
}
.cta-panel::before {
    content: '';
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-panel::after {
    content: '';
    position: absolute;
    left: 58%;
    top: 18%;
    width: 1px;
    height: 64%;
    background: rgba(255,255,255,0.12);
}
.cta-copy, .cta-actions { position: relative; z-index: 1; }
.cta-copy { max-width: 760px; }
.cta-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cta-section .cta-copy h2 {
    color: #fff !important;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.08;
    margin-bottom: 12px;
}
.cta-section .cta-copy p {
    color: rgba(255,255,255,0.84) !important;
    max-width: 780px;
    font-size: 1.03rem;
    line-height: 1.75;
    margin: 0;
}
.cta-actions {
    min-width: 210px;
    display: flex;
    justify-content: flex-end;
}
.cta-actions .btn {
    min-width: 190px;
    min-height: 54px;
    font-size: 14px;
}
@media (max-width: 900px) {
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 30px;
    }
    .cta-panel::after { display: none; }
    .cta-actions { width: 100%; justify-content: flex-start; min-width: 0; }
}
@media (max-width: 480px) {
    .cta-section { padding: 64px 0; }
    .cta-panel { border-radius: 14px; padding: 28px 22px; }
    .cta-kicker { font-size: 10px; margin-bottom: 12px; }
    .cta-section .cta-copy p { font-size: 0.95rem; line-height: 1.65; }
    .cta-actions .btn { width: 100%; max-width: none; }
}


/* === 2026-06-26 card hover + inline back button update === */
.home-return { display: none !important; }

.section-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 8px;
    background: #c52c3b;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(197,44,59,.18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    margin-bottom: 24px;
}
.section-back-link:hover {
    background: #a61f2d;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(166,31,45,.22);
}
.section-back-link .back-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}
.hero-back-link {
    align-self: flex-start;
    margin: 0 auto 26px 0;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content > .section-back-link { align-self: flex-start; }
.page-header .container { display: flex; flex-direction: column; align-items: flex-start; }

/* White cards: turn corporate navy on hover */
.feature-card, .stat-card, .value-card, .vehicle-card, .fleet-card, .gallery-item, .contact-card {
    overflow: hidden;
}
.feature-card:hover, .stat-card:hover, .value-card:hover, .vehicle-card:hover, .fleet-card:hover, .gallery-item:hover, .contact-card:hover {
    background: #071b34 !important;
    border-color: #071b34 !important;
}
.feature-card:hover h3,
.feature-card:hover h4,
.feature-card:hover p,
.stat-card:hover h3,
.stat-card:hover h4,
.stat-card:hover p,
.value-card:hover h3,
.value-card:hover h4,
.value-card:hover p,
.vehicle-card:hover h3,
.vehicle-card:hover h4,
.vehicle-card:hover p,
.fleet-card:hover h3,
.fleet-card:hover h4,
.fleet-card:hover p,
.fleet-card:hover li,
.fleet-card:hover .fleet-subtitle,
.fleet-card:hover .fleet-description,
.gallery-item:hover .gallery-brand,
.contact-card:hover h3,
.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover .detail-icon {
    color: #ffffff !important;
}
.feature-card:hover .feature-icon,
.stat-card:hover .stat-icon,
.value-card:hover .value-icon {
    color: #fff !important;
    border-color: rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.08) !important;
}
.vehicle-card:hover .vehicle-info,
.fleet-card:hover .fleet-content,
.gallery-item:hover .gallery-info {
    background: #071b34;
}
.fleet-card:hover .features-list li::before { color: #fff; }
.contact-card:hover .detail-icon {
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.08);
}
.contact-card:hover { box-shadow: 0 18px 36px rgba(7,27,52,.18); }

@media (max-width: 768px) {
    .section-back-link {
        padding: 8px 12px;
        font-size: 11px;
        margin-bottom: 18px;
    }
    .section-back-link .back-icon { width: 16px; height: 16px; font-size: 13px; }
    .hero-back-link { margin-bottom: 20px; }
}


/* === 2026-06-26 stat number hover + home button cleanup === */
.stat-card:hover .stat-number {
    color: #ffffff !important;
}
.index-page .hero-content > .section-back-link { display: none !important; }


/* === 2026-06-26 hero text + fleet CTA fix === */
.hero-description {
    color: rgba(255,255,255,.92) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,.22);
}
.all-vehicles-btn {
    background: #c52c3b !important;
    color: #ffffff !important;
}
.all-vehicles-btn:hover {
    background: #a61f2d !important;
    color: #ffffff !important;
}


/* === 2026-06-26 Google Maps embed fix === */
.map-container {
    min-height: 420px;
    background: #eef2f7;
}
.map-container iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}
@media (max-width: 768px) {
    .map-container, .map-container iframe { min-height: 320px; }
}


/* === Final QA: smoother hover, mobile/tablet resilience === */
.contact-card {
    transition: background-color .36s ease, border-color .36s ease, box-shadow .36s ease, transform .36s ease !important;
}
.contact-card h3,
.contact-card h4,
.contact-card p,
.contact-card .detail-icon,
.contact-card .contact-detail {
    transition: color .30s ease, border-color .30s ease, background-color .30s ease, opacity .30s ease !important;
}
.contact-card:hover {
    transform: translateY(-4px);
}

/* Improve touch experience: hover visuals are not forced on touch-only devices. */
@media (hover: none) {
    .feature-card:hover, .stat-card:hover, .value-card:hover, .vehicle-card:hover, .fleet-card:hover, .gallery-item:hover, .contact-card:hover {
        background: #ffffff !important;
        border-color: #e7ebf1 !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .feature-card:hover h3, .feature-card:hover h4, .feature-card:hover p,
    .stat-card:hover h3, .stat-card:hover h4, .stat-card:hover p,
    .value-card:hover h3, .value-card:hover h4, .value-card:hover p,
    .vehicle-card:hover h3, .vehicle-card:hover h4, .vehicle-card:hover p,
    .fleet-card:hover h3, .fleet-card:hover h4, .fleet-card:hover p, .fleet-card:hover li,
    .gallery-item:hover .gallery-brand,
    .contact-card:hover h3, .contact-card:hover h4, .contact-card:hover p, .contact-card:hover .detail-icon {
        color: inherit !important;
    }
    .contact-card:hover .detail-icon { border-color: rgba(197,44,59,.35) !important; background: transparent !important; }
}

/* Form and navigation sizing safeguards */
button, input, textarea, select { max-width: 100%; }
.form-card, .contact-card, .working-hours-card { min-width: 0; }
.contact-detail > div { min-width: 0; }
.contact-detail p { overflow-wrap: anywhere; }
.map-container iframe { min-width: 0; }

@media (max-width: 1024px) {
    .contact-grid { gap: 24px; }
    .contact-info-side { gap: 20px; }
    .nav-brand { max-width: calc(100% - 58px); }
}
@media (max-width: 768px) {
    .contact-section, .map-section { padding: 64px 0; }
    .contact-card, .form-card, .working-hours-card { padding: 26px 20px !important; }
    .contact-detail { gap: 12px; }
    .hour-item { gap: 16px; align-items: flex-start; }
    .hour-item span:last-child { text-align: right; }
    .map-container, .map-container iframe { min-height: 300px; }
}
@media (max-width: 420px) {
    .company-name { font-size: 13px; }
    .logo { height: 34px; min-width: 34px; }
    .contact-card h3, .form-card h3 { font-size: 1.3rem; }
    .contact-detail p { font-size: .95rem; }
    .hour-item { font-size: .9rem; }
    .map-container, .map-container iframe { min-height: 260px; }
}


/* === 2026-06-26 premium CTA + why section refinement === */
.cta-banner {
    padding: 96px 0 !important;
    background: linear-gradient(180deg, #f4f6f9 0%, #eef2f7 100%);
}
.premium-cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 46px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #071b34 0%, #0b2d57 65%, #10396e 100%) !important;
    box-shadow: 0 22px 48px rgba(7, 27, 52, .18) !important;
    overflow: hidden;
}
.premium-cta-card::before {
    content: '';
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.premium-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 68%, rgba(197,44,59,.10) 68% 70%, transparent 70% 100%);
    pointer-events: none;
}
.premium-cta-card .cta-copy,
.premium-cta-card .cta-action {
    position: relative;
    z-index: 1;
}
.cta-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.premium-cta-card h2 {
    margin-bottom: 12px;
    color: #fff !important;
    font-size: clamp(2rem, 3.5vw, 3.15rem) !important;
    line-height: 1.08;
}
.premium-cta-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82) !important;
    font-size: 1.03rem;
    line-height: 1.75;
}
.premium-cta-card .cta-action {
    min-width: 200px;
    display: flex;
    justify-content: flex-end;
}
.premium-cta-card .btn {
    min-width: 190px;
    min-height: 54px;
    border-radius: 8px;
}

.why-choose {
    position: relative;
    padding: 96px 0 !important;
    background: linear-gradient(135deg, #071b34 0%, #0b2d57 100%) !important;
    overflow: hidden;
}
.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 28%);
    pointer-events: none;
}
.why-choose .container {
    position: relative;
    z-index: 1;
}
.why-kicker {
    display: table;
    margin: 0 auto 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.why-choose .section-title {
    margin-bottom: 16px !important;
}
.why-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
    color: rgba(255,255,255,.78) !important;
    font-size: 1.02rem;
    line-height: 1.75;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 0 !important;
}
.why-item {
    padding: 30px 28px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    text-align: left;
}
.why-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 18px 32px rgba(0,0,0,.16);
}
.why-number {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 4vw, 3.75rem) !important;
    letter-spacing: -.05em !important;
    color: #fff !important;
}
.why-item h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff !important;
}
.why-item p {
    margin: 0;
    color: rgba(255,255,255,.82) !important;
    line-height: 1.72;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .premium-cta-card {
        padding: 36px 34px !important;
        gap: 20px;
    }
    .premium-cta-card p {
        max-width: 100%;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .cta-banner { padding: 70px 0 !important; }
    .premium-cta-card {
        padding: 30px 24px !important;
        border-radius: 14px !important;
        flex-direction: column;
        align-items: flex-start;
    }
    .premium-cta-card .cta-action {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
    }
    .premium-cta-card .btn {
        width: 100%;
        max-width: 260px;
    }
    .why-choose { padding: 72px 0 !important; }
    .why-item { padding: 24px 22px; border-radius: 14px; }
    .why-intro { margin-bottom: 24px; font-size: .96rem; }
}


/* === 2026-06-26 compact why section === */
.why-choose {
    padding: 66px 0 62px !important;
    background: #071b34 !important;
}
.why-choose::before { display: none !important; }
.why-heading { text-align: center; margin-bottom: 34px; }
.why-eyebrow {
    display: inline-block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.why-choose .section-title {
    margin: 0 !important;
    font-size: clamp(1.9rem, 3vw, 2.45rem) !important;
    letter-spacing: -.04em;
}
.why-choose .section-title .title-underline {
    width: 34px;
    height: 2px;
    margin: 12px auto 0;
    opacity: 1;
}
.compact-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.compact-why-grid .why-item {
    position: relative;
    min-height: 148px;
    padding: 22px 40px 20px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    text-align: left;
}
.compact-why-grid .why-item + .why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(255,255,255,.14);
}
.compact-why-grid .why-item:hover {
    background: rgba(255,255,255,.025) !important;
}
.compact-why-grid .why-number {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(2.35rem, 3.5vw, 3.1rem) !important;
    line-height: 1;
    letter-spacing: -.05em !important;
}
.compact-why-grid .service-hours { gap: 3px; letter-spacing: 0 !important; }
.compact-why-grid .service-hours b {
    font: inherit;
    font-weight: 700;
    transform: translateY(-1px);
}
.compact-why-grid .why-item h3 {
    margin: 0 0 6px;
    color: #fff !important;
    font-size: 1.05rem !important;
    line-height: 1.3;
    font-weight: 800;
}
.compact-why-grid .why-item p {
    margin: 0;
    max-width: 280px;
    color: rgba(255,255,255,.67) !important;
    font-size: .9rem;
    line-height: 1.58;
}
@media (max-width: 900px) {
    .compact-why-grid .why-item { padding: 22px 26px 20px; }
}
@media (max-width: 700px) {
    .why-choose { padding: 54px 0 !important; }
    .why-heading { margin-bottom: 26px; }
    .compact-why-grid { grid-template-columns: 1fr; }
    .compact-why-grid .why-item { min-height: auto; padding: 20px 4px; }
    .compact-why-grid .why-item + .why-item::before {
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 1px;
    }
    .compact-why-grid .why-number { font-size: 2.3rem !important; }
    .compact-why-grid .why-item p { max-width: none; }
}


/* === 2026-06-26 fleet eyebrow framed pill final === */
.why-heading { margin-bottom: 28px !important; }
.why-eyebrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px !important;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.9) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    font-size: 11px !important;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .why-eyebrow { padding: 9px 16px; font-size: 10px !important; }
}


/* === 2026-06-26 mobile interaction and visibility fixes === */
/* Restore a clear mobile touch state for all interactive content cards. */
@media (hover: none), (pointer: coarse) {
    .feature-card.is-active,
    .stat-card.is-active,
    .value-card.is-active,
    .vehicle-card.is-active,
    .fleet-card.is-active,
    .gallery-item.is-active,
    .contact-card.is-active {
        background: #071b34 !important;
        border-color: #071b34 !important;
        box-shadow: 0 16px 34px rgba(7, 27, 52, .20) !important;
        transform: translateY(-2px) !important;
    }

    .feature-card.is-active h3,
    .feature-card.is-active h4,
    .feature-card.is-active p,
    .stat-card.is-active .stat-number,
    .stat-card.is-active h3,
    .stat-card.is-active h4,
    .stat-card.is-active p,
    .value-card.is-active h3,
    .value-card.is-active h4,
    .value-card.is-active p,
    .vehicle-card.is-active h3,
    .vehicle-card.is-active h4,
    .vehicle-card.is-active p,
    .fleet-card.is-active h3,
    .fleet-card.is-active h4,
    .fleet-card.is-active p,
    .fleet-card.is-active li,
    .fleet-card.is-active .fleet-subtitle,
    .fleet-card.is-active .fleet-description,
    .gallery-item.is-active .gallery-brand,
    .contact-card.is-active h3,
    .contact-card.is-active h4,
    .contact-card.is-active p,
    .contact-card.is-active .detail-icon {
        color: #ffffff !important;
    }

    .feature-card.is-active .feature-icon,
    .stat-card.is-active .stat-icon,
    .value-card.is-active .value-icon {
        color: #ffffff !important;
        background: rgba(255,255,255,.08) !important;
        border-color: rgba(255,255,255,.30) !important;
    }

    .vehicle-card.is-active .vehicle-info,
    .fleet-card.is-active .fleet-content,
    .gallery-item.is-active .gallery-info {
        background: #071b34 !important;
    }

    .fleet-card.is-active .features-list li::before {
        color: #ffffff !important;
    }

    .contact-card.is-active .detail-icon {
        border-color: rgba(255,255,255,.32) !important;
        background: rgba(255,255,255,.08) !important;
    }
}

/* Make the state change feel smooth both on pointer and on touch devices. */
.feature-card, .stat-card, .value-card, .vehicle-card, .fleet-card, .gallery-item, .contact-card,
.feature-card h3, .feature-card h4, .feature-card p,
.stat-card .stat-number, .stat-card h3, .stat-card h4, .stat-card p,
.value-card h3, .value-card h4, .value-card p,
.vehicle-card .vehicle-info, .vehicle-card h3, .vehicle-card h4, .vehicle-card p,
.fleet-card .fleet-content, .fleet-card h3, .fleet-card h4, .fleet-card p, .fleet-card li,
.gallery-item .gallery-info, .gallery-item .gallery-brand,
.contact-card h3, .contact-card h4, .contact-card p, .contact-card .detail-icon {
    transition: background-color .32s ease, color .28s ease, border-color .32s ease,
                box-shadow .32s ease, transform .32s ease, opacity .28s ease !important;
}

/* Keep the scroll mouse clear of the hero CTA on small screens. */
.hero { isolation: isolate; }
@media (max-width: 768px) {
    .hero { padding-bottom: 104px !important; }
    .scroll-indicator {
        left: auto !important;
        right: 16px !important;
        bottom: 18px !important;
        transform: none !important;
        z-index: 50 !important;
    }
    .hero-logo-img { height: 98px !important; }

    /* Lower CTA button: compact and centered on mobile. */
    .premium-cta-card { align-items: center !important; }
    .premium-cta-card .cta-copy { text-align: center; }
    .premium-cta-card .cta-action {
        width: 100% !important;
        justify-content: center !important;
    }
    .premium-cta-card .btn {
        width: auto !important;
        max-width: none !important;
        min-width: 172px !important;
        min-height: 46px !important;
        padding: 12px 22px !important;
        font-size: 13px !important;
    }
}
@media (max-width: 480px) {
    .scroll-indicator { right: 12px !important; bottom: 14px !important; }
    .hero-logo-img { height: 96px !important; }
}


/* Contact form spam-trap field: hidden from real visitors. */
.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
button[disabled] {
    cursor: wait !important;
    opacity: .72 !important;
}

/* === Mobile form success toast: no full-screen black overlay === */
.success-message {
    top: auto !important;
    left: auto !important;
    right: 22px !important;
    bottom: 22px !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    pointer-events: none;
}
.success-content {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 13px;
    align-items: center;
    width: min(390px, calc(100vw - 44px));
    margin: 0 !important;
    padding: 17px 20px !important;
    text-align: left !important;
    border: 1px solid #e3e8ef;
    border-left: 4px solid #2e8b57;
    border-radius: 12px !important;
    box-shadow: 0 14px 34px rgba(7, 27, 52, .22);
    animation: formToastIn .28s ease-out both;
}
.success-icon {
    grid-row: span 2;
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    font-size: 17px !important;
    background: #2e8b57 !important;
}
.success-content h3 {
    margin: 0 0 3px !important;
    font-size: 1rem !important;
    line-height: 1.2;
}
.success-content p {
    margin: 0 !important;
    color: #516073 !important;
    font-size: .86rem !important;
    line-height: 1.45 !important;
}
@keyframes formToastIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .success-message {
        left: 14px !important;
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    }
    .success-content {
        width: 100%;
        padding: 15px 16px !important;
        column-gap: 11px;
        border-radius: 10px !important;
    }
}
