/* Reset a základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only - prístupné len pre čítačky obrazovky */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-dark: #333;
    --text-light: #555;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-quick {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-quick a,
.opening-hours {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.contact-quick a:hover {
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.logo span {
    color: var(--secondary-color);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 12px 8px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
}

.btn-cta:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-section {
    height: 700px;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    height: 700px;
}

.swiper-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(231, 76, 60, 0.7));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
}

.slide-text-box {
    background: rgba(44, 62, 80, 0.85);
    padding: 40px 50px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease forwards;
    will-change: transform, opacity;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInLeft 1.2s ease forwards;
    will-change: transform, opacity;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* O nás - Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #ddd;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    image-orientation: from-image;
    transition: var(--transition);
}

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

.badge-stock {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-product {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-product:hover {
    color: var(--secondary-color);
}

/* Order Section */
.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card i {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.order-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.order-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.order-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.order-cta ul {
    list-style: none;
    padding: 0;
}

.order-cta ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
}

.order-cta ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

/* Quote Form */
.quote-section {
    background: var(--light-color);
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

/* Honeypot field - skryté pre používateľov, viditeľné pre botov */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.materials-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
}

.material-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.material-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.material-checkbox label {
    cursor: pointer;
    font-weight: normal;
}

.materials-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
    margin-top: 20px;
}

.material-detail-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.material-detail-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.material-detail-header strong {
    color: var(--primary-color);
    font-size: 18px;
}

.material-detail-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-field label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.detail-field input,
.detail-field textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.detail-field input:focus,
.detail-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.detail-field input::placeholder,
.detail-field textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    opacity: 1;
}

.detail-field textarea {
    resize: vertical;
    min-height: 60px;
}

.detail-field-half {
    flex: 0 0 auto;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    font-weight: normal !important;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-card {
    text-align: center;
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#map {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #d5dbdb;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d5dbdb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d5dbdb;
}

.footer-credit {
    margin-top: 15px;
    font-size: 14px;
    color: #b8c6c9;
}

.footer-link-highlight {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.footer-link-highlight:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .slide-title {
        font-size: 40px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-text-box {
        padding: 30px 40px;
    }

    .contact-wrapper,
    .order-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Top Bar - centrovanie na mobile */
    .top-bar-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .contact-quick {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .contact-quick a {
        justify-content: center;
        width: 100%;
    }

    .opening-hours {
        justify-content: center;
    }

    /* Sekcie */
    .section-header h2 {
        font-size: 28px;
        padding: 0 10px;
    }

    .section-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Hero slider */
    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 15px;
    }

    .slide-content {
        padding: 20px 15px;
    }

    .slide-text-box {
        padding: 20px 20px;
        margin-bottom: 20px;
    }

    /* Formulár */
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .materials-selector {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    /* Kontakt */
    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Products grid - menší min-width */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }

    .product-card {
        margin: 0 5px;
    }

    .product-info {
        padding: 20px 15px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Order section */
    .order-cta {
        padding: 30px 20px;
    }

    .order-cta h3 {
        font-size: 22px;
    }

    .order-cta ul {
        max-width: 100% !important;
        padding: 0 10px;
    }

    .order-cta ul li {
        font-size: 14px;
        text-align: left;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .info-card i {
        margin-top: 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
    }

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

    /* Map */
    .map-container {
        height: 300px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Sekcie padding */
    section {
        padding: 50px 0;
    }

    /* Hero */
    .hero-section,
    .swiper-slide {
        height: 500px;
    }

    .slide-content {
        padding: 15px 10px;
    }

    .slide-text-box {
        padding: 15px 15px;
        margin-bottom: 15px;
    }

    .slide-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 25px;
        font-size: 15px;
    }

    /* Swiper arrows - skryť na mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Products */
    .product-image {
        height: 200px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    /* Features */
    .feature-icon {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Order section */
    .order-cta h3 {
        font-size: 20px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .info-card i {
        font-size: 32px;
    }

    /* Form */
    .quote-form-wrapper {
        padding: 20px 12px;
        margin: 0 5px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .material-checkbox label {
        font-size: 13px;
    }

    .checkbox-group label {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Contact */
    .contact-card i {
        font-size: 32px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .map-container {
        height: 250px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-credit {
        font-size: 12px;
    }

    /* Logo */
    .logo img {
        height: 40px;
    }

    /* Navigation */
    .nav-content {
        padding: 10px 0;
    }

    .nav-menu {
        padding: 15px;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 10px 0;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.floating-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    transform: rotate(45deg);
}

.floating-btn.active i::before {
    content: "\f00d";
}

.floating-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
}

.floating-menu-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

.floating-menu-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.floating-menu-item:hover i {
    color: var(--white);
}

/* Floating button pulse animation - GPU accelerated */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.floating-btn {
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    will-change: transform, opacity;
}

.floating-btn:not(.active) {
    animation: pulse 2s infinite;
}

/* Extra small devices (iPhone SE, older phones) */
@media (max-width: 375px) {
    .slide-title {
        font-size: 20px;
    }

    .slide-subtitle {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .quote-form-wrapper {
        padding: 15px 10px;
    }

    .order-cta {
        padding: 25px 15px;
    }
}
