/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 216, 53, 0.4);
}

.btn--secondary {
    background: transparent;
    color: #fdd835;
    border: 2px solid #fdd835;
}

.btn--secondary:hover {
    background: #fdd835;
    color: #1a1a1a;
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo__image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #fdd835;
}

.header__phone {
    text-align: right;
}

.phone-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.work-hours {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Section */
.hero {
    background: url('../img/hero.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.feature__icon {
    font-size: 1.5rem;
}

.hero__form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero__form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1f2937;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fdd835;
    box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.radio-group input,
.checkbox-group input {
    width: auto;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card__image {
    height: 200px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: 1.5rem;
}

.service-card__content h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-card__content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fdd835;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.advantage {
    text-align: center;
}

.advantage__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
}

.advantage h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.advantage p {
    color: #6b7280;
}

/* Calculator Section */
.calculator {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
}

.calculator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -20px) rotate(1deg);
    }
    50% {
        transform: translate(20px, -10px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, 20px) rotate(0.5deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.calculator__content {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.calculator__result {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    color: #fdd835;
    text-align: center;
    height: fit-content;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #fdd835;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
}

/* Calculator form styles for yellow background */
.calculator__form-left,
.calculator__form-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calculator .form-group {
    margin-bottom: 1rem;
}

.calculator .form-group label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.calculator .form-group input,
.calculator .form-group select,
.calculator .form-group textarea {
    background: #ffffff;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.calculator .form-group input:focus,
.calculator .form-group select:focus,
.calculator .form-group textarea:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.2);
}

.calculator .checkbox-group label,
.calculator .radio-group label {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
}

.calculator .checkbox-group,
.calculator .radio-group {
    gap: 0.8rem;
}

.calculator .section-title {
    color: #1a1a1a;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.fleet__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fleet__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.fleet__text h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.fleet__text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.fleet__text ul {
    list-style: none;
}

.fleet__text li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.fleet__text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fdd835;
    font-weight: bold;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    position: relative;
    min-height: 600px;
}

.contacts__map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contacts__map-bg iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contacts .section-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdd835;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
}

.contact-icon:hover {
    background: #fbc02d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.4);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer__logo h3 {
    color: #fdd835;
    font-size: 1.25rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer__phone a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fdd835;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer__info {
    text-align: right;
}

.footer__info p {
    margin: 0.25rem 0;
    color: #9ca3af;
}

.footer__info a {
    color: #9ca3af;
    text-decoration: none;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.modal__content h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .calculator__content {
        grid-template-columns: 1fr 1fr 260px;
        gap: 1.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .calculator__content {
        grid-template-columns: 1fr 1fr 240px;
        gap: 1.2rem;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Header Styles */
.header__mobile {
    display: none;
}

.nav--mobile {
    display: none;
}

@media (max-width: 768px) {
    .header__content {
        display: none;
    }
    
    .header__mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #1a1a1a;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .header__mobile-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        text-align: center;
    }
    
    .phone-link--mobile {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a1a1a;
        text-decoration: none;
        margin-bottom: 0.25rem;
    }
    
    .work-hours--mobile {
        font-size: 0.8rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    .btn--mobile {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .nav--mobile {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav--mobile.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__link--mobile {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }
    
    .nav__link--mobile:last-child {
        border-bottom: none;
    }
    
    .nav__link--mobile:hover {
        background: #f9fafb;
        color: #fdd835;
    }
    
    .hero {
        padding: 80px 0 60px;
        background-attachment: scroll; /* Отключаем parallax на мобильных */
    }
    
    .calculator {
        padding: 40px 0;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calculator__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator__form-left,
    .calculator__form-right {
        gap: 0.8rem;
    }
    
    .contacts__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator__result {
        padding: 1.2rem;
    }
    
    .calculator .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contacts {
        min-height: 500px;
    }
    
    .fleet__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header__mobile {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .hamburger {
        width: 20px;
        height: 16px;
    }
    
    .phone-link--mobile {
        font-size: 1rem;
    }
    
    .work-hours--mobile {
        font-size: 0.75rem;
    }
    
    .btn--mobile {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__form,
    .modal__content {
        padding: 1.5rem;
    }
    
    .calculator {
        padding: 30px 0;
    }
    
    .calculator__result {
        padding: 1rem;
    }
    
    .calculator .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contacts {
        min-height: 400px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .calculator .section-title {
        font-size: 1.25rem;
    }
    
    .calculator__result {
        padding: 0.8rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero__form,
    .modal__content {
        padding: 1rem;
    }
    
    .contact-info,
    .contact-actions {
        padding: 1.5rem;
    }
    
    .contact-icons {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .calculator {
        padding: 30px 0;
    }
    
    .contacts {
        min-height: 300px;
    }
    
    .contacts__map-bg iframe {
        height: 300px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .calculator .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.advantage {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .calculator::before,
    .calculator::after {
        animation: none !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #fdd835;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #000000;
        border: 2px solid #ffffff;
    }
    
    .btn--secondary {
        border-color: #000000;
        color: #000000;
    }
}

/* Enhanced contrast for yellow color scheme */
.btn--primary {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.phone-link,
.price,
.footer__logo h3,
.footer__phone a {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dark mode support for better contrast */
@media (prefers-color-scheme: dark) {
    .btn--primary {
        background: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
        color: #000000;
        text-shadow: none;
    }
    
    .btn--secondary {
        border-color: #fdd835;
        color: #fdd835;
    }
    
    .btn--secondary:hover {
        background: #fdd835;
        color: #000000;
    }
}
