:root {
    --primary-blue: #0076ff;
    --secondary-blue: #0056b3;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --gold-vision: #004d40;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cairo', 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    margin: auto;
}

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

[lang="en"] .lang-ar {
    display: none;
}

[lang="ar"] .lang-en {
    display: none;
}

[lang="en"] {
    direction: ltr;
    text-align: left;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: bold;
}

.btn-lang {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
}

/* Header & Logo */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
position: fixed !important; 
    top: 0 !important;
    width: 100%;
    z-index: 2000 !important;}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text .ar-text {
    font-size: 12px;
    color: #777;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1470') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

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

.btn-blue:hover {
    background: var(--secondary-blue);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Services Cards */
.services {
    display: flex;
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 45px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.btn-action {
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-action.call {
    background: rgba(0, 118, 255, 0.1);
    color: var(--primary-blue);
}

.btn-action.wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

/* Vision Section */
.vision-section {
    background: var(--gold-vision);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

/* Footer */
.main-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.payment-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #222;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #333;
    font-size: 12px;
    font-weight: bold;
}

.tabby {
    border-color: #39f3bb;
    color: #39f3bb;
}

.tamara {
    border-color: #ff9d2a;
    color: #ff9d2a;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 13px;
    color: #666;
}


.text-blue {
    color: var(--primary-blue);
}

.flex-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-padding {
    padding: 90px 0;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    flex: 1;
}

.main-img {
    width: 100%;
    border-radius: 30px 0 30px 0;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.experience-box span {
    font-size: 40px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.vision-card {
    display: flex;
    background: #f0f7ff;
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
    border-right: 5px solid var(--primary-blue);
    align-items: center;
    justify-content: space-between;
}

.vision-card img {
    height: 50px;
    opacity: 0.8;
}

/* Gallery Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Contact Card */
.contact-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    background: var(--primary-blue);
    color: #fff;
    padding: 50px;
    flex: 1;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-form-box {
    padding: 50px;
    flex: 2;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
}

/* Store Page Styles */
.store-hero {
    background: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.store-layout {
    display: flex;
    gap: 30px;
}

.store-sidebar {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    height: fit-content;
}

.products-grid {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-options {
    background: #f9f9f9;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {

    .flex-grid,
    .input-group,
    .store-layout {
        flex-direction: column;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }
}

.store-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.store-info {
    flex: 1;
}

.store-featured-cards {
    flex: 1.2;
    display: flex;
    gap: 20px;
}

.teaser-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: transform 0.3s ease;
}

.teaser-card:hover {
    transform: translateY(-10px);
}

.teaser-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.teaser-info {
    padding: 20px;
    text-align: center;
}

.teaser-info h4 {
    margin: 0;
    font-size: 16px;
}

.teaser-info .price {
    color: var(--primary-blue);
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 118, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
    transform: scale(0.5);
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: blur(2px);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.contact-bg-modern {
    background: #f0f4f8;
}

.contact-card-modern {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.contact-sidebar {
    background: var(--primary-blue);
    color: #fff;
    padding: 60px 40px;
    flex: 1;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.contact-method i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-method p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.contact-method span {
    font-weight: bold;
    font-size: 16px;
}

.contact-form-area {
    padding: 60px;
    flex: 2;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.contact-form-area input,
.contact-form-area select,
.contact-form-area textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form-area input:focus,
.contact-form-area select:focus,
.contact-form-area textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: #fff;
}

.contact-form-area textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .store-content-wrapper,
    .contact-card-modern,
    .form-row {
        flex-direction: column;
    }

    .contact-form-area {
        padding: 30px;
    }
}

.page-hero {
    height: 300px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.renovation-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503387762-592dea58292b?auto=format&fit=crop&w=1000');
    background-size: cover;
}

.crafts-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556912177-f517a127d1d2?auto=format&fit=crop&w=1000');
    background-size: cover;
}

.rounded-img {
    width: 100%;
    border-radius: 30px;
}

.contact-box-inner {
    margin-top: 30px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 15px;
}

.contact-box-inner .btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.contact-row a {
    text-decoration: none;
    font-weight: bold;
    color: var(--primary-blue);
}

.craft-item {
    padding: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.vision-big-logo {
    height: 120px;
    margin-bottom: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
}

.payment-options img {
    filter: grayscale(0);
    transition: 0.3s;
}

.payment-options:hover img {
    filter: brightness(1.1);
}

.about-service-box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
    line-height: 2;
    border-right: 6px solid var(--primary-blue);
}

.about-service-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-sticky-box {
    margin-top: 60px;
    background: var(--dark-bg);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-btns-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.btn-action.call {
    background: var(--primary-blue);
    color: #fff;
}

.btn-action.wa {
    background: #25d366;
    color: #fff;
}

.craft-detailed-section {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.btns-inline {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-weight: bold;
}

.btns-inline a {
    text-decoration: none;
    color: var(--primary-blue);
    background: rgba(0, 118, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
}

.gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* الموبايل */
@media (max-width: 768px) {
    .about-service-box {
        padding: 25px;
    }

    .contact-btns-row {
        flex-direction: column;
    }

    .btns-inline {
        flex-direction: column;
        gap: 10px;
    }
}

.store-body {
    background: #f4f7f6;
}

.store-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/store-bg.jpg');
    background-size: cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.store-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar */
.store-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.category-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-blue);
    color: #fff;
}

.sidebar-contact {
    margin-top: 20px;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.sidebar-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}

/* Products Grid */
.products-main {
    flex: 3.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card */
.pro-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
}

.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pro-img {
    position: relative;
    height: 250px;
    background: #f9f9f9;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.pro-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff3b30;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
}

.pro-details {
    padding: 25px;
    text-align: center;
}

.pro-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.pro-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.pro-installments {
    background: #fcfcfc;
    border: 1px dashed #ddd;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 11px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.payment-logos img {
    height: 14px;
}

.btn-add-cart {
    width: 100%;
    background: #222;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary-blue);
}

@media (max-width: 992px) {
    .store-container {
        flex-direction: column;
    }

    .store-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.insulation-hero {
    background: linear-gradient(rgba(0, 40, 80, 0.8), rgba(0, 40, 80, 0.8)), url('images/insulation-bg.jpg');
    background-size: cover;
}

.nav-links a.active {
    color: var(--primary-blue) !important;
    border-bottom: 2px solid var(--primary-blue);
}

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

@media (max-width: 992px) {

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .logo-area {
        order: 2;
    }

    .btn-lang {
        order: 3;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
        z-index: 999;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }
    [lang="en"] nav {
        right: auto;
        left: -100%;
    }

    [lang="en"] nav.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 18px;
        color: #333;
    }

    .hero-content h2 {
        font-size: 24px !important;
    }

    .hero-content p {
        font-size: 14px;
    }

    .flex-grid {
        flex-direction: column !important;
        gap: 30px;
    }

    .contact-card-modern {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .gallery-grid-pro,
    .product-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
    
    .services.container {
        flex-direction: column !important;
        padding: 40px 15px;
        gap: 20px;
    }

    .service-card {
        width: 100%; 
        padding: 30px 20px;
    }

    .contact-card-modern {
        flex-direction: column !important; 
        border-radius: 25px;
        margin: 0 10px;
        overflow: hidden;
    }

    .contact-sidebar {
        padding: 40px 20px !important;
        border-radius: 0; 
        text-align: center;
    }

    .contact-method {
        justify-content: center; 
        text-align: right;
        margin-top: 20px;
    }

    .contact-method i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-form-area {
        padding: 30px 20px !important;
    }

    .form-row {
        flex-direction: column !important; 
        gap: 0;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-form-area h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 25px;
    }

    .product-teaser-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }

    .logo-area {
        gap: 8px;
    }
    
    .nav-logo {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .top-bar .container {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }
}
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 20px !important;
        box-sizing: border-box;
    }

    .store-featured-cards, 
    .product-teaser-grid, 
    .products-grid {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        gap: 25px !important;
    }

    .teaser-card, 
    .product-card {
        width: 100% !important; 
        max-width: 350px;
        margin: 0 auto !important;
    }

    .teaser-card img, 
    .product-card img {
        width: 100%;
        height: auto;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        margin: 5px 0 !important;
    }

    .main-header .container {
        justify-content: space-between;
    }
}
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    nav {
        position: fixed; top: 0; right: -100%;
        width: 250px; height: 100vh; background: #fff;
        padding-top: 80px; transition: 0.4s; z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    nav.active { right: 0; }
    .nav-links { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .container { width: 90%; }

    .services.container,
    .gallery-grid-pro,
    .products-grid,
    .product-teaser-grid,
    .contact-card-modern,
    .store-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .gallery-item, .pro-card, .teaser-card {
        width: 100%;
        max-width: 350px; 
    }

    .gallery-item img, 
    .pro-card img, 
    .teaser-card img {
        height: 250px !important;
        width: 100% !important;
    }
        .payment-logos img {
        height: 40px !important;
    }

    .about-service-box {
        padding: 25px;
        border-right: none;
        border-top: 6px solid var(--primary-blue);
        text-align: center;
    }

    .service-features {
        text-align: right;
        padding: 0;
    }

    .store-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    .category-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .contact-sidebar, .contact-form-area {
        padding: 30px 20px;
        text-align: center;
    }
    .contact-method { justify-content: center; }

    .hero-content h2 { font-size: 24px !important; }
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-globe {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.lang-globe i {
    font-size: 20px;
}

.lang-globe:hover {
    color: #000;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
[lang="en"] .floating-actions {
    right: auto;
    left: 20px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.float-btn.whatsapp { background-color: #25d366; }
.float-btn.phone { background-color: var(--primary-blue); }

.float-btn:hover {
    transform: scale(1.1);
}

.top-bar { display: none; }

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    z-index: 9999;
}

[lang="en"] .floating-actions {
    right: auto;
    left: 30px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.lang-float {
    background-color: #ff9d2a;
    font-weight: bold;
    font-size: 12px;
}
.lang-float i {
    font-size: 20px;
    margin-bottom: 2px;
}

.float-btn.whatsapp { background-color: #25d366; font-size: 28px; }

.float-btn.phone {     background-color: var(--primary-blue);
 font-size: 22px; }

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
}
@keyframes pulse-blue {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 118, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 118, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 118, 255, 0); }
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-blue {
    animation: pulse-blue 2s infinite;
}

.float-btn.whatsapp {
    animation: pulse-green 2s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.hero-content h2 {
    font-size: 3rem !important;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 1.5s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.nav-links li { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    list-style: none;
    z-index: 2000;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f9f9f9;
}
.dropdown-menu li a:hover { background: #f0f7ff; color: var(--primary-blue); }

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.s-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}
.s-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); }
.s-icon { font-size: 40px; color: var(--primary-blue); margin-bottom: 20px; }
.s-card h3 { font-size: 18px; margin-bottom: 15px; }
.read-more { text-decoration: none; color: var(--primary-blue); font-weight: bold; font-size: 14px; }

@media (max-width: 768px) {
    .services-overview-grid { grid-template-columns: 1fr; }
    .dropdown-menu { position: static; width: 100%; box-shadow: none; display: block; padding-right: 20px; }
}
.legal-name {
    display: block;
    font-size: 11px; 
    color: #666;
    margin-top: 2px;
    font-weight: 400;
    white-space: nowrap;
}

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

.legal-footer strong {
    color: var(--primary-blue);
}
.contact-link-wrapper {
    text-decoration: none; 
    color: inherit; 
    display: block;
    transition: transform 0.3s ease;
}

.contact-link-wrapper:hover {
    transform: translateX(-5px);
}

[lang="en"] .contact-link-wrapper:hover {
    transform: translateX(5px);
}

.contact-method {
    cursor: pointer; 
}
.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.social-contact-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.social-contact-box p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

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

.social-icons-row a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons-row a:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: scale(1.1);
}