@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700&family=Teko:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* --- Theme Variables --- */
:root {
    --primary: #EF959F;
    --primary-hover: #e87c88;
    --primary-rgb: 239, 149, 159;
    --bg-light: #ffffff;
    --bg-sec: #f8f9fa; /* Section light grey background */
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --text-main: #333333;
    --text-title: #111111;
    --text-muted: #777777;
    --border-color: rgba(0, 0, 0, 0.08);
    --gold: #d4af37;
}

/* --- Dark Theme overrides --- */
body.dark-theme {
    --bg-light: #0d0d0d;
    --bg-sec: #161616;
    --bg-card: #1d1d1f;
    --bg-card-hover: #252527;
    --text-main: #cccccc;
    --text-title: #ffffff;
    --text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

.section {
    padding: 90px 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-sec);
}

.section-card {
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 3rem;
    color: var(--text-title);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px 16px;
    font-family: 'Teko', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    line-height: 1;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- Top Bar --- */
.top-bar {
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #cccccc;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--primary);
}

.lang-switch {
    display: flex;
    gap: 8px;
    font-weight: bold;
}

.lang-switch a {
    color: #999999;
}

.lang-switch a.active, .lang-switch a:hover {
    color: var(--primary);
}

.mobile-only-lang {
    display: none;
}

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

/* --- Header / Nav --- */
header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.dark-theme header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

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

.nav-link {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-title);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: calc(100vh - 110px);
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('assets/slider-banner11.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    display: block;
    font-family: 'Teko', sans-serif;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.hero-desc {
    font-size: 1.15rem;
    color: #eeeeee;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- About Us --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.about-images {
    display: grid;
    grid-template-columns: 12fr 10fr;
    gap: 20px;
    position: relative;
}

.about-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--bg-card);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

body.dark-theme .about-img-wrapper {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.about-img-wrapper:hover {
    transform: scale(1.03);
}

.about-images .about-img-wrapper:nth-child(2) {
    margin-top: 50px;
    margin-left: -30px;
    z-index: 2;
}

/* --- Services (What We Do) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.dark-theme .service-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

body.dark-theme .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-title);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .btn-link {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-card .btn-link:hover {
    color: var(--primary-hover);
}

/* --- Tabbed Price Section --- */
.prices-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
    align-items: flex-start;
}

.prices-banner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 480px;
    background: url('assets/service-banner.avif') no-repeat center center/cover;
}

body.dark-theme .prices-banner {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.price-category-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.price-category-content.active {
    display: block;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
}

.price-item-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text-title);
}

.price-item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed var(--border-color);
    height: 1px;
}

.price-item-val {
    font-family: 'Teko', sans-serif;
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 600;
}

.price-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.prices-action {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* --- Products Section --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

body.dark-theme .product-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

body.dark-theme .product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* --- Promotions & Giftcards (Split Section) --- */
.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.promo-block {
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.dark-theme .promo-block {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-block:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

body.dark-theme .promo-block:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.promo-tag {
    color: var(--primary);
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-title {
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--text-title);
}

.promo-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.promo-action {
    margin-top: 15px;
}

/* --- Portfolio Gallery --- */
.portfolio-desc {
    max-width: 700px;
    margin: -20px auto 40px auto;
    color: var(--text-muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

body.dark-theme .portfolio-item {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

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

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item-tag {
    color: var(--primary);
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-item-title {
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 5px;
}

.portfolio-more {
    text-align: center;
}

/* --- Testimonials --- */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(var(--primary-rgb), 0.25);
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Teko', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 500;
}

.testimonial-stars {
    color: var(--gold);
    margin-top: 5px;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-btn:hover {
    color: var(--primary);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary);
}

.testimonials-more {
    text-align: center;
    margin-top: 40px;
}

/* --- Contact & Footer --- */
.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 50px;
}

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

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    color: var(--text-title);
    margin-bottom: 5px;
}

.contact-details p, .contact-details a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 350px;
}

body.dark-theme .map-wrapper {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    color: #aaaaaa;
}

.footer-column ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Catalog Modal Styles --- */
.catalog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.catalog-modal.active {
    display: flex;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.catalog-container {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    overflow-y: auto;
    position: relative;
    z-index: 2001;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.catalog-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-title);
    cursor: pointer;
    transition: color 0.3s ease;
}

.catalog-close:hover {
    color: var(--primary);
}

.catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.catalog-title {
    font-size: 2.8rem;
    color: var(--text-title);
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.catalog-category {
    margin-bottom: 20px;
}

.catalog-cat-title {
    font-size: 1.8rem;
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.catalog-item-name {
    display: flex;
    justify-content: space-between;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: var(--text-title);
    font-weight: 500;
}

.catalog-item-price {
    color: var(--primary);
    font-weight: 600;
}

.catalog-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    .about-grid, .prices-layout, .contact-layout {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile for cleaner header */
    }
    .nav-container {
        height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-only-lang {
        display: block;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }
    .mobile-only-lang .lang-switch {
        font-family: 'Teko', sans-serif;
        font-size: 1.4rem;
        letter-spacing: 1px;
        display: flex;
        gap: 12px;
    }
    .mobile-only-lang .lang-switch a {
        color: var(--text-muted);
    }
    .mobile-only-lang .lang-switch a.active {
        color: var(--primary);
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        margin-bottom: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .prices-layout {
        grid-template-columns: 1fr;
    }
    .prices-banner {
        min-height: 250px;
        display: none; /* Hide helper image panel on mobile to save vertical scrolling */
    }
    .promo-split {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .catalog-container {
        padding: 30px 20px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .catalog-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* --- Floating WhatsApp Button --- */
.float-anchor {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-anchor:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.4);
}

.my-float {
    display: block;
}
