* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAFAF8;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B6B6B;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
    background-color: #C9A961;
    color: #FFFFFF;
    border-color: #C9A961;
}

.btn-primary:hover {
    background-color: #B89851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #2C2C2C;
    border-color: #2C2C2C;
}

.btn-outline:hover {
    background-color: #2C2C2C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 1000;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: #2C2C2C;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C9A961;
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #C9A961;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2C2C2C;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active{
    max-height: calc(100vh - 80px); 
    overflow-y: auto;             
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu li { padding: 12px 24px; }
  .nav-menu a::after { display: none; }
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 64px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.services-section,
.why-us-section,
.process-section,
.projects-preview-section,
.products-section,
.gallery-section,
.about-story-section,
.mission-vision-section,
.values-section,
.trust-section,
.contact-section,
.category-description-section,
.category-features-section,
.category-standards-section,
.category-gallery-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6B6B6B;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95) 0%, rgba(44, 44, 44, 0) 100%);
    color: #FFFFFF;
}

.service-overlay h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 24px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #C9A961;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C9A961;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.feature-card h3 {
    color: #2C2C2C;
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 16px;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: #FFFFFF;
    border: 2px solid #C9A961;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    margin: 0;
}

.projects-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.project-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-preview:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.project-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-preview:hover img {
    transform: scale(1.05);
}

.project-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95) 0%, rgba(44, 44, 44, 0) 100%);
    color: #FFFFFF;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #C9A961;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 8px;
}

.project-label h4 {
    margin: 0;
    font-size: 1.125rem;
}

.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #3D3D3D 100%);
    color: #FFFFFF;
}

.cta-band .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-band .container {
        flex-direction: column;
        text-align: center;
    }
}

.footer {
    padding: 64px 0 24px;
    background-color: #2C2C2C;
    color: #FFFFFF;
}

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

.footer-col h3,
.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: #C9A961;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #FAFAF8 0%, #F0F0EE 100%);
    margin-top: 64px;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.product-detail-card:nth-child(even) .product-detail-image {
    order: 2;
}

.product-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-detail-content h2 {
    margin-bottom: 16px;
}

.product-features {
    margin: 24px 0;
    padding-left: 20px;
}

.product-features li {
    color: #6B6B6B;
    margin-bottom: 8px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #C9A961;
    font-weight: 700;
}

@media (max-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-card:nth-child(even) .product-detail-image {
        order: 1;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95) 0%, rgba(44, 44, 44, 0) 100%);
    color: #FFFFFF;
}

.gallery-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #C9A961;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 8px;
}

.gallery-label h3 {
    margin: 0;
    font-size: 1.125rem;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.mission-vision-card {
    padding: 48px 32px;
    background-color: #FFFFFF;
    border: 2px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: #C9A961;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 32px 24px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #C9A961;
}

.value-card h3 {
    color: #C9A961;
    margin-bottom: 12px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.trust-card {
    padding: 40px 24px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #C9A961;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.contact-card {
    padding: 40px 24px;
    background-color: #FFFFFF;
    border: 2px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: #C9A961;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    margin-top: 12px;
    color: #C9A961;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #B89851;
}

.contact-cta {
    text-align: center;
    padding: 64px 32px;
    background-color: #FFFFFF;
    border: 2px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    margin-bottom: 64px;
}

.contact-cta h2 {
    margin-bottom: 16px;
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-map {
    text-align: center;
    padding: 48px 32px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
}

.contact-map h3 {
    margin-bottom: 16px;
}

.contact-map p {
    margin-bottom: 24px;
}

.contact-info-band {
    padding: 48px 0;
    background-color: #F0F0EE;
    text-align: center;
}

.info-band-content p {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.category-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 64px;
}

.category-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75) 0%, rgba(44, 44, 44, 0.5) 100%);
    z-index: 2;
}

.category-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
}

.category-hero-content h1 {
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.category-description h2 {
    margin-bottom: 24px;
}

.category-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-feature {
    padding: 32px 24px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #C9A961;
}

.category-feature h3 {
    color: #2C2C2C;
    margin-bottom: 12px;
}

.category-feature p {
    margin: 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.standard-card {
    padding: 32px 24px;
    background-color: #FFFFFF;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.standard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #C9A961;
}

.standard-card h3 {
    color: #C9A961;
    margin-bottom: 12px;
}

.category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.category-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

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

.category-gallery-item:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .features-grid,
    .process-steps,
    .projects-preview-grid,
    .gallery-grid,
    .values-grid,
    .trust-grid,
    .contact-grid,
    .category-features-grid,
    .standards-grid,
    .category-gallery-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  transition-delay: var(--d, 0ms);
}

.animate-on-scroll { opacity:0; transform: translateY(40px); transition: .8s ease; }
.animate-on-scroll.visible { opacity:1; transform: translateY(0); }

.nav-dropdown{
  position: relative;
}

.nav-link.dropdown-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link.dropdown-link .chev{
  font-size: .9em;
  transition: transform .2s ease;
}

.nav-dropdown.open .chev{
  transform: rotate(180deg);
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;

  background: #fff;
  border: 1px solid rgba(44,44,44,0.10);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .22s ease;
  z-index: 1200;
  overflow: hidden;
}

.dropdown-menu a{
  padding: 12px 14px;
  color: #2C2C2C;
  font-weight: 500;
}

.dropdown-menu a:hover{
  background: rgba(201,169,97,0.12);
  color: #C9A961;
}

@media (min-width: 769px){
  .nav-dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-dropdown.open .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px){
  .nav-dropdown .dropdown-menu{
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: none !important;

    position: static;
    display: flex;

    border: 0;
    box-shadow: none;
    background: transparent;
    margin-top: 6px;
    padding-left: 10px;
  }

  .nav-dropdown .dropdown-menu a{
    padding: 10px 0;
    font-weight: 500;
  }

  .nav-link.dropdown-link .chev{
    display: none;
  }
}

.nav-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.whatsapp-badge,
.instagram-badge,
.telephone-badge{
  position: fixed;
  bottom: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 22px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;

  box-shadow: 0 12px 40px rgba(0,0,0,.35);

  transform-origin: center;
  will-change: transform, box-shadow, padding, width, height;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

  transition:
    transform var(--move) var(--ease),
    box-shadow var(--move) var(--ease),
    padding var(--move) var(--ease),
    border-radius var(--move) var(--ease),
    width var(--move) var(--ease),
    height var(--move) var(--ease),
    background var(--move) var(--ease),
    gap var(--move) var(--ease),
    filter var(--move) var(--ease);
}

.whatsapp-badge{ right: 24px; bottom:24px; background: linear-gradient(135deg,#25D366,#1ebe5d); }
.telephone-badge{ right: 24px; bottom:92px; background: linear-gradient(135deg, #fff23a, #fff23a); color:#000; }
.instagram-badge{ left: 24px; background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }

.whatsapp-badge img,
.instagram-badge img,
.telephone-badge img{
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  transform: translateZ(0);

  transition:
    transform var(--move) var(--ease),
    width var(--move) var(--ease),
    height var(--move) var(--ease);
}

.whatsapp-badge span,
.instagram-badge span,
.telephone-badge span{
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;

  transition:
    opacity var(--fade) ease,
    transform var(--move) var(--ease);
}

.telephone-badge span{ color:#000; }

.whatsapp-badge:hover,
.instagram-badge:hover,
.telephone-badge:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 48px rgba(0,0,0,.45);
  filter: saturate(1.08);
}

.whatsapp-badge:hover img{
  transform: translateY(-1px) scale(1.08) rotate(-2deg);
}
.instagram-badge:hover img{
  transform: translateY(-1px) scale(1.08);
}
.telephone-badge:hover img{
 transform: translateY(-1px) scale(1.08);
}

.whatsapp-badge::after,
.instagram-badge::after,
.telephone-badge::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  opacity:0;
  transition: opacity 420ms var(--ease);
  background: radial-gradient(120px 60px at 30% 20%, rgba(255,255,255,.18), transparent 60%);
}
.whatsapp-badge:hover::after,
.instagram-badge:hover::after,
.telephone-badge:hover::after{
  opacity:1;
}

.whatsapp-badge.shrink,
.instagram-badge.shrink,
.telephone-badge.shrink{
  padding: 12px;
  width: 54px;
  height: 54px;
  gap: 0;
  border-radius: 50%;
  transform: scale(.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.whatsapp-badge.shrink{ background: linear-gradient(135deg,#1ebe5d,#25D366); }
.instagram-badge.shrink{ background: linear-gradient(135deg,#dd2a7b,#8134af); }
.telephone-badge.shrink{ background: linear-gradient(135deg, #fff23a, #fff23a); }

.whatsapp-badge.shrink img{
  width: 30px;
  height: 30px;
  transform: scale(1.05) rotate(-3deg);
}
.instagram-badge.shrink img{
  width: 30px;
  height: 30px;
  transform: translateY(-1px) scale(1.05);
}
.telephone-badge.shrink img{
  width: 30px;
  height: 30px;
  transform: translateY(-1px) scale(1.05);
}

.whatsapp-badge.shrink span,
.instagram-badge.shrink span,
.telephone-badge.shrink span{
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
}

.whatsapp-badge.shrink:hover,
.instagram-badge.shrink:hover,
.telephone-badge.shrink:hover{
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.42);
}

@keyframes breathe-wa{
  0%{ box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 rgba(37,211,102,0); }
  100%{ box-shadow: 0 12px 34px rgba(0,0,0,.35), 0 0 22px rgba(37,211,102,.32); }
}
@keyframes breathe-ig{
  0%{ box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 rgba(221,42,123,0); }
  100%{ box-shadow: 0 12px 34px rgba(0,0,0,.35), 0 0 24px rgba(221,42,123,.34); }
}
@keyframes breathe-tel{
  0%{ box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 rgba(255,242,58,0); }
  100%{ box-shadow: 0 12px 34px rgba(0,0,0,.35), 0 0 24px rgba(255,242,58,.34); }
}

.whatsapp-badge.shrink{ animation: breathe-wa 2.9s ease-in-out infinite alternate; }
.instagram-badge.shrink{ animation: breathe-ig 2.9s ease-in-out infinite alternate; }
.telephone-badge.shrink{ animation: breathe-tel 2.9s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce){
  .whatsapp-badge, .instagram-badge, .telephone-badge,
  .whatsapp-badge *, .instagram-badge *, .telephone-badge *{
    transition: none !important;
    animation: none !important;
  }
}

.contact-icon-img{
  width: 220px;
  height: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #fff; 
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: #fff; 
    margin: 10px auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollLine {
    0% { height: 0; }
    50% { height: 40px; }
    100% { height: 0; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}