:root {
    --primary-color: #127AA6;
    --primary-dark: #0d5a7a;
    --hover-color: #BF1422;
    --secondary-color: #1a365d;
    --accent-color: #0C8E35;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    text-transform: capitalize;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

input,
textarea,
select {
    text-transform: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-contact .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-contact .btn-primary:hover {
    background: var(--hover-color);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero .btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--hover-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--hover-color);
}

/* Map */
.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* CTA Section */
.cta {
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta .btn {
    background: var(--white);
    color: var(--accent-color);
}

.cta .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-phone-btn {
    display: inline-block;
    background: var(--white);
    color: var(--accent-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-phone-btn i {
    margin-right: 10px;
}

.cta-phone-btn:hover {
    background: var(--hover-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-phone-btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-phone-btn-outline:hover {
    background: var(--white);
    color: var(--accent-color);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ffffff;
    min-width: 0;
}

.footer-contact p,
.footer-contact p a {
    overflow-wrap: anywhere;
}

.footer-contact p a {
    color: #ffffff;
}

.footer-contact p a[href^="mailto:"] {
    text-transform: lowercase;
}

.footer-contact p a:hover {
    color: var(--accent-color);
}

.footer-contact i {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.mobile-go-top {
    display: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.mv-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card i {
    color: var(--primary-color);
}

.mv-card p {
    text-align: justify;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-info h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-info h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.product-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.product-specs {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specs li i {
    color: var(--primary-color);
    width: 20px;
}

.product-specs li strong {
    color: var(--secondary-color);
}

.product-info .btn {
    margin-top: 30px;
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-info .btn:hover {
    background: var(--hover-color);
    color: var(--white);
}

.product-info .btn i {
    margin-right: 8px;
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-box h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-form select {
    cursor: pointer;
    background: var(--white);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quote-form button:hover {
    background: var(--hover-color);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    section {
        padding: 55px 0;
    }

    .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 68px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .nav-menu > li > a {
        display: block;
        padding: 12px 0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 15px;
        min-width: 0;
    }

    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu a {
        padding: 9px 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-item > div {
        min-width: 0;
    }

    .contact-item a,
    .contact-item p {
        overflow-wrap: anywhere;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 135px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .page-header {
        padding-top: 135px;
    }

    .modal-content {
        padding: 32px 20px 22px;
    }
}

/* Palet Page Styles */
.palet-section {
    padding: 60px 0;
}

.palet-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.palet-main {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.palet-article {
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.palet-article:last-of-type {
    border-bottom: none;
}

.palet-article h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.palet-article h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.palet-article h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.palet-article p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.palet-article ul {
    margin: 15px 0;
    padding-left: 20px;
}

.palet-article ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.palet-cta {
    padding: 40px;
    background: var(--bg-light);
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.palet-cta h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.palet-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.palet-cta .btn {
    margin: 5px;
}

.palet-cta .cta-phone-btn {
    margin: 5px;
    background: var(--primary-color);
    color: var(--white);
}

.palet-cta .cta-phone-btn:hover {
    background: var(--hover-color);
}

.palet-cta .cta-phone-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.palet-cta .cta-phone-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Sidebar */
.palet-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    margin-bottom: 12px;
}

.popular-posts li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.popular-posts li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.popular-posts li a i {
    color: var(--primary-color);
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-contact p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.sidebar-contact p i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.sidebar-contact p a {
    color: var(--text-light);
}

.sidebar-contact p a:hover {
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .palet-layout {
        grid-template-columns: 1fr;
    }

    .palet-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .palet-article {
        padding: 25px;
    }

    .palet-cta {
        padding: 25px;
    }
}

/* Palet Types Grid */
.palet-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 40px 40px;
}

.palet-type-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    color: var(--text-color);
    border: 2px solid transparent;
}

.palet-type-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.palet-type-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.palet-type-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.palet-type-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.palet-type-card .read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.palet-type-card .read-more i {
    font-size: 0.9rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.palet-type-card:hover .read-more i {
    transform: translateX(5px);
}

/* Info Box for Palet Pages */
.palet-article .info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.palet-article .info-box h4 {
    color: #856404;
    margin-bottom: 10px;
}

.palet-article .info-box h4 i {
    margin-right: 8px;
}

.palet-article .info-box p {
    color: #856404;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .palet-types-grid {
        grid-template-columns: 1fr;
        padding: 20px 25px 25px;
    }

    .palet-type-card {
        padding: 25px;
    }
}

/* Product Additional Section */
.product-additional {
    padding: 60px 0;
    background: var(--bg-light);
}

.additional-content {
    max-width: 900px;
    margin: 0 auto;
}

.additional-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.additional-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.two-column-list h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.two-column-list ul {
    list-style: none;
    padding: 0;
}

.two-column-list ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.two-column-list ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Info Box Warning */
.info-box-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0 0;
}

.info-box-warning h4 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box-warning h4 i {
    margin-right: 8px;
}

.info-box-warning p {
    color: #856404;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Service Badges */
.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.service-badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Service Card Colors */
.service-card-insaat i {
    color: #BF1422 !important;
}

.service-card-insaat .service-badge {
    color: #BF1422;
    border-color: #BF1422;
}

.service-card-insaat .service-badge:hover {
    background: #BF1422;
    color: var(--white);
}

.service-card-palet i {
    color: #0C8E35 !important;
}

.service-card-palet .service-badge {
    color: #0C8E35;
    border-color: #0C8E35;
}

.service-card-palet .service-badge:hover {
    background: #0C8E35;
    color: var(--white);
}

/* Palet Matik */
.footer-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-color) !important;
    font-weight: 700 !important;
}

.paletmatik-section {
    background: #f4f8fa;
    padding: 70px 0 90px;
}

.paletmatik-intro {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.print-pdf-logo,
.print-document-meta,
.print-page-footer,
.print-page-header {
    display: none;
}

.paletmatik-title-row {
    align-items: center;
    display: inline-flex;
    gap: 18px;
}

.paletmatik-title-row h1 {
    margin: 0;
}

.tool-kicker {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tool-kicker i {
    margin-right: 5px;
}

.paletmatik-intro h2,
.results-heading h2 {
    margin: 8px 0 10px;
}

.paletmatik-intro p {
    color: var(--text-light);
}

.paletmatik-form {
    display: block;
}

.company-field {
    max-width: 430px;
}

.company-date-fields {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(26, 54, 93, .08);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 18px 22px;
}

.company-date-fields .date-field {
    max-width: 390px;
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    width: 390px;
}

.serial-field {
    gap: 8px !important;
    white-space: nowrap;
}

.company-date-fields .serial-field input {
    margin-top: 0;
    width: 145px;
}

.company-date-fields .company-field label {
    align-items: center;
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.company-date-fields .company-field input {
    margin-top: 0;
}

.company-date-fields .company-field:not(.date-field) input {
    width: 300px;
}

.company-date-fields .date-field input {
    width: 125px;
}

.company-field label,
.login-form label {
    color: var(--secondary-color);
    display: block;
    font-size: .86rem;
    font-weight: 600;
}

.company-field input,
.login-form input {
    border: 1px solid #d5e0e6;
    border-radius: 7px;
    display: block;
    font: inherit;
    margin-top: 6px;
    padding: 11px 12px;
    width: 100%;
}

.palette-set {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    margin-bottom: 28px;
    row-gap: 0;
    width: 100%;
}

.palette-set-heading {
    align-items: center;
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-bottom: 20px;
}

.palette-info-card {
    grid-column: 1;
    grid-row: 2;
}

.left-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1;
    grid-row: 2 / span 2;
}

.right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 3;
    grid-row: 2;
}

.left-stack,
.bel-card,
.right-stack {
    min-width: 0;
    width: 100%;
}

.left-stack .palette-info-card,
.left-stack .top-card {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
}

.right-stack .lower-card,
.right-stack .price-card {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
}

.top-card {
    grid-column: 1;
    grid-row: 3;
    margin-top: 20px;
}

.price-card {
    grid-column: 3;
    grid-row: 2;
}

.bel-card {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
}

.bel-card .calculator-fields {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
}

.lower-card {
    grid-column: 3;
    grid-row: 2;
}

.palette-set-heading h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.palette-set-heading h3 i {
    color: var(--primary-color);
    margin-right: 6px;
}

.remove-palette {
    background: transparent;
    border: 1px solid #bf1422;
    border-radius: 6px;
    color: #bf1422;
    cursor: pointer;
    font-size: .75rem;
    padding: 7px 10px;
}

.calculator-card,
.calculator-results {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(26, 54, 93, .08);
    padding: 18px;
}

.calculator-card {
    align-self: start;
    width: 100%;
}

.calculator-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.calculator-card-heading > i {
    color: var(--primary-color);
    font-size: 1.35rem;
    padding-top: 3px;
}

.calculator-card-heading h3 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.calculator-card-heading p {
    color: var(--text-light);
    font-size: .82rem;
}

.calculator-fields {
    display: grid;
    gap: 9px;
}

.calculator-fields label {
    color: var(--secondary-color);
    display: block;
    font-size: .86rem;
    font-weight: 600;
    position: relative;
}

.calculator-fields input {
    display: block;
    width: 100%;
    border: 1px solid #d5e0e6;
    border-radius: 7px;
    color: var(--text-color);
    font: inherit;
    margin-top: 6px;
    outline: none;
    padding: 8px 10px;
    transition: border-color .2s, box-shadow .2s;
}

.calculator-fields input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 122, 166, .12);
}

.calculator-fields small {
    color: var(--text-light);
    display: block;
    font-size: .72rem;
    font-weight: 400;
    margin-top: 3px;
    text-transform: capitalize;
}

.calculator-fields small.field-unit {
    display: inline;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.price-type-toggle {
    background: #eef3f6;
    border-radius: 7px;
    display: flex;
    gap: 3px;
    padding: 3px;
}

.price-type-toggle button {
    background: transparent;
    border: 0;
    border-radius: 5px;
    color: var(--secondary-color);
    cursor: pointer;
    flex: 1;
    font: 700 .75rem 'Montserrat', sans-serif;
    padding: 7px 10px;
}

.price-type-toggle button.active {
    background: var(--primary-color);
    color: var(--white);
}

.price-card .calculator-card-heading {
    align-items: flex-start;
    justify-content: flex-start;
}

.price-card .calculator-card-heading > i {
    margin-top: 3px;
}

.price-card .price-type-toggle {
    flex: 0 0 auto;
    margin-left: auto;
}

.price-card .calculator-fields {
    padding-top: 8px;
}

.unit {
    text-transform: none;
}

.lowercase-unit {
    text-transform: none;
}

.volume-unit {
    text-transform: none;
}

.paletmatik-submit {
    background: var(--primary-color);
    border: 0;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    font: 700 .95rem 'Montserrat', sans-serif;
    justify-self: center;
    padding: 14px 28px;
    transition: background .2s, transform .2s;
}

.palette-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.add-palette {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    cursor: pointer;
    font: 700 .9rem 'Montserrat', sans-serif;
    padding: 13px 20px;
}

.add-palette:hover {
    background: var(--primary-color);
    color: var(--white);
}

.result-actions .add-palette.active {
    background: var(--primary-color);
    color: var(--white);
}

.paletmatik-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.paletmatik-alert {
    background: #fff3f3;
    border-left: 4px solid #bf1422;
    color: #8d1822;
    margin: 0 auto 25px;
    max-width: 760px;
    padding: 12px 18px;
}

.paletmatik-alert p + p {
    margin-top: 5px;
}

.calculator-results {
    margin-top: 45px;
}

.results-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.result-quantity {
    background: #e8f5ee;
    border-radius: 10px;
    color: #1A365D;
    font-size: .9rem;
    font-weight: 700;
    padding: 8px 14px;
    width: 190px;
}

.palette-badge-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.palette-badge-item {
    background: #e8f5ee;
    border-radius: 10px;
    color: #1A365D;
    display: block;
    font-size: .9rem;
    font-weight: 700;
    padding: 8px 14px;
    text-align: center;
    white-space: nowrap;
}

.combined-palette-badges {
    margin: 12px 0 0;
    text-align: left;
}

.combined-palette-badges .palette-badge-group {
    align-items: flex-start;
}

.palette-badge-line {
    display: block;
    white-space: nowrap;
}

.results-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.pdf-button {
    background: var(--hover-color);
    border: 0;
    border-radius: 7px;
    color: var(--white);
    cursor: pointer;
    font: 700 .78rem 'Montserrat', sans-serif;
    padding: 10px 13px;
}

.pdf-button:hover {
    background: #9f101c;
}

.cut-list-table-wrap {
    overflow-x: auto;
}

.cut-list-table {
    border-collapse: collapse;
    min-width: 680px;
    width: 100%;
}

.cut-list-table th,
.cut-list-table td {
    border-bottom: 1px solid #e4ebef;
    padding: 14px 12px;
    text-align: left;
}

.cut-list-table th:not(:first-child),
.cut-list-table td:not(:first-child) {
    text-align: right;
}

.cut-list-table th {
    background: #f5f8fa;
    color: var(--secondary-color);
    font-size: .78rem;
    text-transform: uppercase;
}

.cut-list-table td {
    color: var(--text-light);
    font-size: .9rem;
}

.cut-list-table td strong,
.cut-list-table td small {
    display: block;
}

.cut-list-table td strong {
    color: var(--secondary-color);
}

.cut-list-table td small {
    font-size: .75rem;
    margin-top: 3px;
}

.volume-summary {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

.volume-summary > div {
    background: #f5f8fa;
    border-radius: 9px;
    min-width: 190px;
    padding: 14px 18px;
}

.volume-summary span,
.volume-summary strong {
    display: block;
}

.volume-summary span {
    color: var(--text-light);
    font-size: .8rem;
}

.volume-summary strong {
    color: var(--secondary-color);
    align-items: baseline;
    display: flex;
    font: 700 1.2rem 'Montserrat', sans-serif;
    gap: 4px;
    margin-top: 4px;
}

.volume-summary .volume-total {
    background: #2b6f8f;
}

.volume-summary .volume-total span,
.volume-summary .volume-total strong {
    color: var(--white);
}

.volume-summary strong .volume-unit {
    white-space: nowrap;
}

.all-volume-card {
    align-items: center;
    background: #1A365D;
    border-radius: 10px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    margin: 25px 0 15px auto;
    max-width: 100%;
    padding: 18px 22px;
    width: 395px;
}

.all-volume-card strong {
    align-items: baseline;
    display: flex;
    font: 700 1.3rem 'Montserrat', sans-serif;
    gap: 4px;
}

.all-volume-card span {
    font-size: .78rem;
}

.combined-summary-row {
    align-items: stretch;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin: 25px 0 15px auto;
}

.combined-summary-row .all-volume-card {
    margin: 0;
}

.type-count-card {
    align-items: center;
    background: transparent;
    border: 1px solid #1A365D;
    border-radius: 10px;
    color: #1A365D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 190px;
    padding: 18px 22px;
    text-align: center;
    width: 190px;
}

.type-count-card span {
    font-size: .78rem;
}

.type-count-card strong {
    font: 700 1.3rem 'Montserrat', sans-serif;
    margin-top: 4px;
}

.volume-summary > div,
.all-volume-card,
.amount-card,
.type-count-card,
.unit-price-card {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 68px;
    text-align: left;
}

.volume-summary > div strong,
.all-volume-card strong,
.amount-card strong,
.type-count-card strong,
.unit-price-card strong {
    margin: 0;
}

.unit-price-card {
    text-align: left;
}

.volume-summary > div {
    display: block;
    min-height: 0;
    text-align: left;
}

.volume-summary > div strong {
    justify-content: flex-end;
    margin-top: 4px;
    text-align: right;
}

.volume-summary > div > span {
    text-align: right;
}

.volume-summary > div:first-child {
    border: 1px solid #2B6F8F;
}

.amount-card {
    align-items: center;
    background: transparent;
    border: 1px solid #1A365D;
    border-radius: 10px;
    color: #1A365D;
    display: flex;
    justify-content: space-between;
    margin: 12px 0 15px auto;
    max-width: 100%;
    padding: 18px 22px;
    width: 395px;
}

.amount-card span {
    font-size: .78rem;
}

.amount-card strong {
    align-items: baseline;
    display: flex;
    font: 700 1.3rem 'Montserrat', sans-serif;
    gap: 4px;
}

.pdf-only-card {
    display: none;
}

.pricing-row {
    align-items: stretch;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin: 12px 0 15px auto;
}

.pricing-row .amount-card {
    margin: 0;
}

.unit-price-card {
    align-items: center;
    background: transparent;
    border: 1px solid #1A365D;
    border-radius: 10px;
    color: #1A365D;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    text-align: center;
}

.unit-price-card span {
    font-size: .78rem;
}

.unit-price-card strong {
    font: 700 1.05rem 'Montserrat', sans-serif;
    margin-top: 4px;
}

.warning-unit-price {
    color: #BF1422;
    gap: 8px;
    min-height: 48px;
    padding: 10px 14px;
}

.warning-unit-price > span {
    color: #BF1422;
    flex: 0 0 auto;
    font: 700 1.5rem/1 'Montserrat', sans-serif;
}

.warning-unit-price strong {
    color: #BF1422;
    font-size: .7rem;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.warning-unit-price .warning-mark {
    align-self: stretch;
    display: flex;
    align-items: center;
    white-space: nowrap;
}


.hide-group-totals .individual-total-card {
    display: none;
}

.print-price-note {
    display: none;
}

.pdf-all-button {
    display: block;
    margin: 0 auto;
}

.result-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
}

.result-actions .pdf-button {
    font-size: .9rem;
    padding: 13px 20px;
}

.result-actions .pdf-all-button {
    display: inline-flex;
    margin: 0;
}

.combined-volume-summary {
    justify-content: flex-end;
}

.combined-volume-summary .volume-total {
    min-width: 0;
    width: 395px;
}

.combined-volume-summary .volume-total span {
    font-size: .78rem;
}

.paletmatik-login-section {
    background: #f4f8fa;
    min-height: auto;
    padding: calc(90px + 120px) 0 90px;
}

.paletmatik-login-section .container {
    width: 100%;
}

.login-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(26, 54, 93, .08);
    margin: 0 auto;
    max-width: 430px;
    padding: 35px;
    text-align: center;
}

.login-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 12px;
}

.login-card h1 {
    font-size: 1.5rem;
}

.login-card > p {
    color: var(--text-light);
    margin: 8px 0 22px;
}

.login-form {
    display: grid;
    gap: 16px;
    text-align: left;
}

.login-form .paletmatik-submit {
    width: 100%;
}

@media (max-width: 900px) {
    .palette-set {
        grid-template-rows: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .palette-info-card,
    .top-card,
    .bel-card,
    .lower-card,
    .price-card {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }

    .left-stack {
        grid-column: auto;
        grid-row: auto;
    }

    .right-stack {
        grid-column: auto;
        grid-row: auto;
    }
}

@media screen and (max-width: 768px) {
    .page-paletmatik .whatsapp-float {
        display: none;
    }

    .page-paletmatik .mobile-go-top {
        align-items: center;
        background: var(--primary-color);
        border: 0;
        border-radius: 50%;
        bottom: auto;
        color: var(--white);
        cursor: pointer;
        display: flex;
        height: 42px;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        right: 20px;
        top: 112px;
        transform: translateY(-8px);
        transition: opacity .25s, transform .25s;
        width: 42px;
        z-index: 1001;
    }

    .page-paletmatik .mobile-go-top.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .page-header {
        padding: 135px 0 40px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .paletmatik-title-row {
        display: flex;
        justify-content: center;
    }

    .page-header p {
        display: none;
    }

    .paletmatik-section {
        padding: 45px 0 60px;
    }

    .paletmatik-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .paletmatik-intro h2 {
        font-size: 1.05rem;
        letter-spacing: -.03em;
        line-height: 1.35;
        white-space: normal;
    }

    .calculator-card,
    .calculator-results {
        padding: 18px;
    }

    .palette-set {
        grid-template-columns: 1fr;
    }

    .company-date-fields {
        flex-direction: column;
    }

    .company-date-fields .company-field,
    .company-date-fields .date-field,
    .company-date-fields .company-field label,
    .company-date-fields .date-field label {
        max-width: none;
        width: 100%;
    }

    .company-date-fields .date-field {
        max-width: 430px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .company-date-fields .company-field label {
        display: block;
    }

    .company-date-fields .company-field input {
        margin-top: 6px;
        width: 100%;
    }

    .calculator-fields label {
        align-items: stretch;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 8px;
        row-gap: 0;
    }

    .calculator-fields label input {
        grid-column: 1;
        min-width: 0;
        width: 100%;
    }

    .calculator-fields label .field-unit {
        align-self: center;
        grid-column: 2;
        grid-row: 2;
        margin: 6px 0 0;
        position: static;
        white-space: nowrap;
    }

    .calculator-fields label > small:not(.field-unit) {
        grid-column: 1 / -1;
    }

    .whatsapp-float {
        bottom: 16px;
        left: auto;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }

    .cut-list-table-wrap {
        overflow: visible;
    }

    .cut-list-table {
        display: block;
        min-width: 0;
    }

    .cut-list-table thead {
        display: none;
    }

    .cut-list-table tbody,
    .cut-list-table tr {
        display: block;
    }

    .cut-list-table tr {
        background: var(--white);
        border: 1px solid #e4ebef;
        border-radius: 10px;
        box-shadow: 0 4px 14px rgba(26, 54, 93, .06);
        margin-bottom: 12px;
        padding: 10px 13px;
    }

    .cut-list-table td {
        border: 0;
        display: inline-block;
        font-size: .92rem;
        padding: 5px 0;
        vertical-align: top;
        width: 50%;
    }

    .cut-list-table td:first-child {
        display: block;
        white-space: nowrap;
        width: 100%;
    }

    .cut-list-table td:first-child small {
        font-size: .82rem;
    }

    .cut-list-table td:nth-child(2),
    .cut-list-table td:nth-child(3),
    .cut-list-table td:nth-child(4) {
        text-align: right;
        width: 33.333%;
    }

    .cut-list-table td:nth-child(2)::before,
    .cut-list-table td:nth-child(3)::before,
    .cut-list-table td:nth-child(4)::before {
        color: var(--text-light);
        display: block;
        font-size: .7rem;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .cut-list-table td:nth-child(2)::before {
        content: 'Adet';
    }

    .cut-list-table td:nth-child(3)::before {
        content: 'Ölçü';
    }

    .cut-list-table td:nth-child(4)::before {
        content: 'Hacim';
    }

    .cut-list-table td:nth-child(2),
    .cut-list-table td:nth-child(3),
    .cut-list-table td:nth-child(4) {
        border-top: 1px solid #e4ebef;
        display: flex;
        justify-content: space-between;
        padding-top: 9px;
        text-align: right;
        width: 100%;
    }

    .cut-list-table .table-value {
        margin-left: auto;
        text-align: right;
    }

    .results-heading,
    .volume-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .results-heading {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .result-actions {
        align-items: center;
        flex-direction: column;
    }

    .result-actions .add-palette,
    .result-actions .pdf-button {
        font-size: .75rem;
        padding: 10px 12px;
        white-space: nowrap;
    }

    .palette-actions,
    .all-volume-card,
    .amount-card {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .palette-actions {
        align-items: center;
    }

    .combined-summary-row {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .type-count-card {
        width: 100%;
    }

    .pricing-row {
        flex-direction: column;
        width: 100%;
    }

    .pricing-row .amount-card,
    .unit-price-card {
        width: 100%;
    }

    .volume-summary > div {
        width: 100%;
    }

    .combined-volume-summary .volume-total {
        width: 100%;
    }

    .result-quantity,
    .palette-badge-item {
        max-width: 100%;
        width: 100%;
    }

    .palette-set-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .palette-set-heading h3 {
        min-width: 0;
    }

    .remove-palette {
        flex-shrink: 0;
    }
}

@media print {
    @page {
        size: A4;
        margin: 10mm 12mm 0;
    }

    .navbar,
    footer,
    .whatsapp-float,
    .paletmatik-intro,
    .paletmatik-form,
    .pdf-button,
    .result-actions {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .page-header {
        display: none !important;
    }

    .page-header h1 {
        font-size: 1.5rem;
        margin: 5px 0 0;
    }

    .paletmatik-title-row {
        display: flex;
        justify-content: flex-end;
    }

    .print-pdf-logo {
        display: block;
        left: 0;
        position: absolute;
        text-align: left;
        top: 0;
    }

    .print-pdf-logo img {
        max-height: 48px;
        width: auto;
    }

    .paletmatik-section {
        background: #fff;
        padding: 0;
    }

    .calculator-results {
        box-shadow: none;
        margin-top: 0;
        min-height: 287mm;
        padding: 0;
        position: relative;
    }

    .calculator-results + .calculator-results {
        break-before: page;
        page-break-before: always;
    }

    .results-heading {
        margin-bottom: 18px;
    }

    .cut-list-table th {
        background: #f1f1f1;
    }

    .print-document-meta {
        background: #fff;
        border: 1px solid #d5e0e6;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        margin: 0 0 18px;
        padding: 10px 14px;
        font-size: 11px;
    }

    .print-page-header {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .print-page-header img {
        max-height: 42px;
        width: auto;
    }

    .print-page-header strong {
        color: #127AA6;
        font: 700 18px 'Montserrat', sans-serif;
    }

    .print-page-footer {
        border-top: 1px solid #127AA6;
        bottom: 1cm;
        display: flex;
        justify-content: space-between;
        left: 0;
        position: absolute;
        right: 0;
        padding-top: 12px;
        color: #127AA6;
        font-size: 10px;
        font-weight: 700;
        text-transform: none;
    }

    .print-price-note {
        color: #BF1422;
        display: block;
        font-size: 10px;
        font-weight: 700;
        margin: 12px 0 8px;
        padding-bottom: 8px;
        text-align: left;
    }

    .print-page-footer span,
    .print-page-number {
        font-weight: 700;
    }

    .print-footer-logo {
        display: inline-block;
        height: 14px;
        vertical-align: middle;
        width: auto;
    }

    .pricing-row {
        gap: 12px;
        justify-content: space-between;
    }

    .pricing-row .amount-card,
    .pricing-row .unit-price-card {
        flex: 0 0 auto;
    }

    .pricing-row .amount-card {
        margin-left: auto;
        width: 395px;
    }

    .pricing-row .unit-price-card {
        width: 237px;
    }

    .pricing-row .warning-unit-price {
        width: 237px;
    }

    .priced-type-count {
        width: 237px;
    }


    .pricing-row .pdf-only-card {
        display: flex;
    }

    .print-page-number {
        white-space: nowrap;
    }
}
