html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.slider-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 40px;
}

.content-text {
    flex: 1;
    padding-right: 60px;
    text-align: right;
}

.content-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 0 15px;
}

.gallery-images {
    position: relative;
    width: 100%;
    height: 760px;
    border-radius: 25px;
    overflow: hidden;
    background: transparent;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: contain;
    padding: 0;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-nav .carousel-control-prev-icon,
.gallery-nav .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.content-image img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#imageGallery {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#imageGallery .carousel-item {
    height: 400px;
}

#imageGallery .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

#imageGallery .carousel-control-prev,
#imageGallery .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
}

#imageGallery .carousel-control-prev:hover,
#imageGallery .carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
}

#imageGallery .carousel-control-prev-icon,
#imageGallery .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.transparent {
    background: transparent;
}

.header.solid {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.solid .nav-link {
    color: #333;
}

.header.solid .nav-link:hover {
    color: #cb0d28;
}

.header.solid .nav-link.active {
    color: #cb0d28;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

section {
    min-height: 100vh;
    padding: 100px 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-dark, .logo-light {
    opacity: 0;
}

.header.transparent .logo-light {
    opacity: 1;
}

.header.transparent .logo-dark {
    opacity: 0;
}

.header.solid .logo-dark {
    opacity: 1;
}

.header.solid .logo-light {
    opacity: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 18px;
    font-weight: 700;
}

.btn {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lead {
    font-weight: 400;
}

@media (max-height: 900px) {
    .gallery-images {
        height: 600px;
    }
}

@media (max-height: 700px) {
    .gallery-images {
        height: 500px;
    }
    .content-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        padding: 20px;
    }

    .content-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .content-image {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .gallery-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .gallery-images {
        height: 550px;
        max-height: 80vh;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 0 10px;
    }

    .gallery-images {
        height: 450px;
    }

    .gallery-nav {
        width: 28px;
        height: 50px;
    }
}

.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
}

.store-badge {
    height: 40px;
    width: auto;
}

@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        padding: 20px;
    }

    .content-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .store-buttons {
        justify-content: center;
    }

    .content-image {
        justify-content: center;
    }

    .gallery-container {
        max-width: 340px;
    }

    .gallery-images {
        height: 550px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section ul li i {
    margin-right: 10px;
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #b3b3b3;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badges img {
    height: 45px;
    width: 150px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-logo {
        height: 35px;
    }

    .social-links {
        justify-content: center;
    }

    .app-badges {
        align-items: center;
    }
}

/* World Map Styles */
.world-map-container {
    width: 100%;
    height: 400px;
    background-color: #1a1a1a;
}

.leaflet-container {
    background-color: #1a1a1a !important;
}

.leaflet-control-attribution {
    display: none;
}

.world-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #e31837;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.location-dot.turkey-dot {
    top: 35%;
    left: 55%;
    background-color: #e31837;
}

.location-dot.usa-dot {
    top: 35%;
    left: 20%;
    background-color: #000;
}

.location-dot.uae-dot {
    top: 45%;
    left: 60%;
    background-color: #000;
}

.location-dot.russia-dot {
    top: 25%;
    left: 65%;
    background-color: #000;
}

.ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    animation: ping 2s ease-out infinite;
}

@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Contact Section Styles */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

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

.contact-item i {
    font-size: 24px;
    color: #e31837;
    margin-top: 5px;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-map {
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-item i {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1px;
}

.header-line {
    width: 80px;
    height: 3px;
    background: #e31837;
    margin: 0 auto 20px;
    position: relative;
}

.header-line::before,
.header-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #e31837;
    top: -6px;
}

.header-line::before {
    left: 15px;
}

.header-line::after {
    right: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.contact-item i {
    font-size: 24px;
    color: #e31837;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(227, 24, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #e31837;
    color: white;
    transform: translateY(-3px);
}

.contact-item h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

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

    .contact-item {
        justify-content: center;
    }
}

.highlight-country {
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background-color: #1a1a1a;
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 2px;
    transition: transform 0.3s ease;
}

.highlight-country:hover {
    transform: translateY(-2px);
}

/* Amerika Birleşik Devletleri - Kırmızı, Beyaz ve Mavi */
.highlight-country:nth-of-type(1)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #B31942 33%, #FFFFFF 33%, #FFFFFF 66%, #0A3161 66%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
    border-radius: 0 0 4px 4px;
}

/* Birleşik Arap Emirlikleri - Kırmızı, Yeşil, Beyaz ve Siyah */
.highlight-country:nth-of-type(2)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FF0000 25%, #00732F 25%, #00732F 50%, #FFFFFF 50%, #FFFFFF 75%, #000000 75%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
    border-radius: 0 0 4px 4px;
}

/* Rusya - Beyaz, Mavi ve Kırmızı */
.highlight-country:nth-of-type(3)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FFFFFF 33%, #0039A6 33%, #0039A6 66%, #D52B1E 66%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
    border-radius: 0 0 4px 4px;
}

.highlight-country:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* About Section Styles */
.about-content {
    margin-top: 50px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.about-text .highlight-text {
    color: #e31837;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #e31837;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(227, 24, 55, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.faq-icon {
    color: #e31837;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Video Background Section Styles */
#why-mygarage {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

#why-mygarage .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    overflow: hidden;
}

#why-mygarage .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100vh;
    object-fit: cover;
}

#why-mygarage .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

#why-mygarage .container {
    position: relative;
    z-index: 2;
}

#why-mygarage .section-header h2 {
    color: #fff;
    margin-bottom: 30px;
}

#why-mygarage .header-line.bg-white {
    background-color: #fff;
}

#why-mygarage .why-mygarage-content {
    margin-top: 40px;
}

#why-mygarage .why-mygarage-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

#why-mygarage .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    #why-mygarage .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    #why-mygarage .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #why-mygarage .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

#why-mygarage .feature-item {
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
}

#why-mygarage .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
}

#why-mygarage .feature-item i {
    color: #ff3366;
    margin-bottom: 1rem;
}

#why-mygarage .feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

#why-mygarage .feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

#why-mygarage .signup-section {
    margin-top: 2rem;
    padding: 0;
    width: 100%;
}

#why-mygarage .signup-box {
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#why-mygarage .signup-box.wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    max-width: none;
    width: 100%;
    margin: 0;
}

#why-mygarage .signup-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#why-mygarage .signup-content i {
    color: #ff3366;
}

#why-mygarage .signup-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

#why-mygarage .signup-content .signup-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0.25rem 0 0 0;
}

#why-mygarage .signup-form {
    flex-shrink: 0;
    width: auto;
    margin: 0;
}

#why-mygarage .input-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

@media (max-width: 1200px) {
    #why-mygarage .signup-box.wide {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    #why-mygarage .signup-content {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    #why-mygarage .signup-form {
        width: 100%;
    }

    #why-mygarage .input-group {
        flex-direction: column;
    }

    #why-mygarage .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #why-mygarage .signup-section {
        padding: 0 1rem;
    }
}

#why-mygarage .btn-primary {
    background: linear-gradient(45deg, #ff3366, #ff6b3d);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

#why-mygarage .btn-primary:hover {
    background: linear-gradient(45deg, #ff6b3d, #ff3366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

#why-mygarage .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 51, 102, 0.3);
}

#why-mygarage .btn-primary i {
    transition: transform 0.3s ease;
}

#why-mygarage .btn-primary:hover i {
    transform: translateX(3px);
}

#why-mygarage .section-header h2 {
    color: #1a1a1a;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#why-mygarage .header-line {
    background: #1a1a1a;
}

#why-mygarage .signup-content h4 {
    color: #fff;
}

#why-mygarage .signup-content .signup-description {
    color: rgba(255, 255, 255, 0.9);
}

#why-mygarage .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

#why-mygarage .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.language-selector .btn::after {
    margin-left: 0.25rem;
}

.language-selector .btn:focus {
    box-shadow: none;
}

.language-selector .dropdown-menu {
    min-width: auto;
}

.language-selector .dropdown-item:hover {
    background-color: #f8f9fa;
}

.flag-icon {
    border-radius: 2px;
}

/* Mobile Header Styles */
@media (max-width: 991px) {
    .header .navbar-toggler {
        padding: 4px 8px;
        border: none;
        margin-left: 10px;
    }

    .header.transparent .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .header.solid .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .header .navbar-collapse {
        background: var(--bs-body-bg);
        margin: 0 -1.5rem;
        padding: 1rem 1.5rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .header.transparent .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
    }

    .header.solid .navbar-collapse {
        background: white;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
        color: var(--bs-body-color) !important;
        margin: 0;
        font-size: 1.1rem;
    }

    .header.transparent .nav-link {
        color: white !important;
    }

    .language-selector {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header.solid .language-selector {
        border-top-color: rgba(0, 0, 0, 0.1);
    }

    #why-mygarage .form-control {
        width:99%;
        border-radius:5px;
    }
}