:root {
    --color-white: #ffffff;
    --color-bg-light: #fcfcfc;
    --color-light-gray: #f5f5f5;
    --color-gray-100: #eeeeee;
    --color-gray-200: #dddddd;
    --color-gray: #666666;
    --color-gold: #C5A059;
    --color-gold-hover: #D4AF37;
    --color-gold-light: rgba(197, 160, 89, 0.1);
    --color-dark: #1a1a1a;
    --color-dark-800: #222222;
    --color-dark-900: #111111;
    --color-black: #000000;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.2);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    border: none;
    outline: none;
    background: none;
}

section,
header,
footer {
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

.font-playfair { font-family: var(--font-secondary); }
.font-montserrat { font-family: var(--font-primary); }

.text-gold { color: var(--color-gold) !important; }
.text-white { color: var(--color-white) !important; }
.text-dark { color: var(--color-dark) !important; }
.text-gray { color: var(--color-gray) !important; }
.text-light-gray { color: #aaaaaa !important; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.display-1 { font-size: 4rem; line-height: 1.1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.15em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.italic { font-style: italic; }

.bg-white { background-color: var(--color-white) !important; }
.bg-light-gray { background-color: var(--color-bg-light) !important; }
.bg-dark { background-color: var(--color-dark) !important; }
.bg-dark-800 { background-color: var(--color-dark-800) !important; }
.bg-dark-900 { background-color: var(--color-dark-900) !important; }
.bg-gold { background-color: var(--color-gold) !important; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.section-padding-lg { padding: 120px 0; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-half { width: 50%; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-row-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-end { justify-content: flex-end; }

.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 20px; }
.rounded-circle { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-premium { box-shadow: var(--shadow-premium); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.overflow-hidden { overflow: hidden; }
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

.grid-2-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.grid-3-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.grid-4-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }

.section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.content-wrap {
    width: 100%;
    display: block;
}

.card-equal {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.title-separator {
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

.btn-solid-gold {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-solid-gold:hover {
    background-color: var(--color-dark);
    color: var(--color-gold);
}

.btn-solid-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-solid-dark:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn-outline-dark.hover-gold-bg:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.btn-transparent-white {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    backdrop-filter: blur(5px);
}

.btn-transparent-white:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hover-text-gold:hover { color: var(--color-gold) !important; }
.hover-text-white:hover { color: var(--color-white) !important; }
.hover-text-dark:hover { color: var(--color-dark) !important; }
.hover-bg-gold:hover { background-color: var(--color-gold) !important; }
.hover-bg-dark:hover { background-color: var(--color-dark) !important; }
.hover-border-gold:hover { border-color: var(--color-gold) !important; }
.transform-hover { transition: transform 0.7s ease; }
.transform-hover:hover { transform: scale(1.05); }

.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    position: relative;
}

.loader-text-gold { color: var(--color-gold); }
.loader-text-dark { color: var(--color-dark); }

.loader-line {
    width: 0%;
    height: 2px;
    background-color: var(--color-gold);
    margin: 10px auto 0;
    animation: loadingLine 1.5s ease-in-out infinite;
}

@keyframes loadingLine {
    0% { width: 0%; opacity: 1; }
    50% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.topbar {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    gap: 16px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.contact-item {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    margin-left: 0;
    color: var(--color-gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    background-color: var(--color-white);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--color-gray-100);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    gap: 20px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo .logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.brand-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
}

.nav-list > li {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: var(--color-white);
    border-top: 3px solid var(--color-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-fast);
    padding: 10px 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.dropdown-menu li {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-gray-100);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--color-bg-light);
    color: var(--color-gold);
    padding-left: 25px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-fast);
    left: 0;
}

.bar:nth-child(1) { top: 0; }
.bar:nth-child(2) { top: 9px; }
.bar:nth-child(3) { top: 18px; }


.hero-slider-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-image,
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.hero-slide.active .hero-bg-image {
    transform: scale(1);
}

.hero-overlay-dark,
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    background-color: rgba(26,26,26,0.5);
    backdrop-filter: blur(5px);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.page-hero {
    padding-top: 150px;
    padding-bottom: 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb a {
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.breadcrumb a:hover::after {
    transform: scaleX(1);
}

.features-bar {
    transform: translateY(-50px);
    border-radius: 8px;
    padding: 30px 0;
}

.features-bar .container,
.features-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.feature-box {
    padding: 20px;
    border-right: 1px solid var(--color-gray-100);
    text-align: center;
    height: 100%;
}

.feature-box:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.system-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    border: 1px solid var(--color-gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.card-image-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.card-content {
    padding: 30px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-icon-round {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.image-composition {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
    max-width: 620px;
}

.img-main {
    width: 100%;
    border-radius: 10px;
}

.img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border: 6px solid var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-gold);
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.accordion-item {
    transition: var(--transition-fast);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
}

.accordion-header {
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-header.active {
    color: var(--color-gold);
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-body {
    background-color: var(--color-bg-light);
    display: none;
    line-height: 1.7;
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.portfolio-item {
    transition: all 0.4s ease;
}

.contact-card {
    border-bottom: 4px solid transparent;
    height: 100%;
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-bottom-color: var(--color-gold);
    transform: translateY(-5px);
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
    font-family: var(--font-primary);
    width: 100%;
}

.form-wrapper input:focus + i,
.form-wrapper select:focus ~ i {
    color: var(--color-gold);
}

.accent-gold { accent-color: var(--color-gold); }
.hover-underline:hover { text-decoration: underline; }

.site-footer,
.footer {
    background: var(--color-dark-900);
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 95px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 28px;
    align-items: center;
    margin-top: 10px;
    padding-top: 50px;
}

.footer-col {
    min-width: 0;
    padding-top: 4px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-width: 170px;
    margin-bottom: 16px;
}

.footer-about-text,
.footer-desc {
    max-width: 340px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
    font-size: 0.95rem;
}

.footer-title {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.after-gold-line::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    padding: 3px 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.4;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-contact-item i,
.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 18px;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

.footer-copy {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.footer-top-grid {
    align-items: center;  
    padding-top: 18px;     
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

#back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 30px;
    }
}

@media (max-width: 1024px) {
    .grid-4-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .display-1 { font-size: 3rem; }

    .features-bar .container,
    .features-bar-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-box:nth-child(2) {
        border-right: none;
    }

    .feature-box:nth-child(-n+2) {
        border-bottom: 1px solid var(--color-gray-100);
    }

    .footer-main {
        padding: 80px 0 45px;
    }
}

@media (max-width: 768px) {
    .section-padding,
    .section-padding-lg {
        padding: 60px 0;
    }

    .grid-2-cols,
    .grid-3-cols,
    .grid-4-cols {
        grid-template-columns: 1fr;
    }

    .w-half { width: 100%; }

    .flex-row-between {
        flex-direction: column;
        align-items: flex-start;
    }

    .flex-row-reverse {
        flex-direction: column;
    }
    
    .hidden-mobile { display: none !important; }
    .mobile-only { display: block; }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        min-height: auto;
    }
    
    .hamburger-menu { display: block; }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        transition: var(--transition-slow);
        overflow-y: auto;
        padding: 30px 20px;
    }

    .nav-menu.active { left: 0; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-list > li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-wrapper.active .dropdown-menu {
        display: block;
    }
    
    .hero-content-box {
        text-align: center;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .features-bar {
        transform: none;
        margin-top: 30px;
    }

    .features-bar .container,
    .features-bar-inner {
        grid-template-columns: 1fr;
    }

    .feature-box {
        border-right: none;
        border-bottom: 1px solid var(--color-gray-100);
    }

    .feature-box:last-child {
        border-bottom: none;
    }
    
    .image-composition {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .img-secondary {
        width: 60%;
    }

    .experience-badge {
        left: 15px;
        top: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about-text,
    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 12px 16px;
    }
}

@media (max-width: 480px) {
    .text-5xl { font-size: 2.5rem; }
    .display-1 { font-size: 2.2rem; }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        white-space: normal;
    }

    .contact-form-section .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .nav-container {
        min-height: 80px;
    }

    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .hero-slider-section {
        min-height: 540px;
    }

    .footer-main {
        padding: 65px 0 35px;
    }
}

.brand-logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-text{
    font-family: var(--font-secondary);
    font-weight:600;
    font-size:1.1rem;
    color:var(--color-dark);
    white-space:nowrap;
}

.brand-life{
    color:var(--color-gold);
    font-weight:700;
}

    body {
        zoom: 0.91; 
    }

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .nav-container,
    .hero-content-box,
    .hero-slider-section,
    .hero-slide,
    .hero-bg-image,
    .topbar-inner,
    .topbar-left,
    .nav-menu,
    .nav-list {
        max-width: 100%;
    }

    .nav-container {
        min-height: 76px;
        gap: 10px;
        min-width: 0;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .brand-logo .logo-img {
        height: 40px;
        width: auto;
        flex-shrink: 0;
    }

    .brand-text {
        font-size: 0.82rem;
        line-height: 1.1;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        min-width: 0;
        max-width: 170px;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    .hamburger-menu {
        display: block;
        width: 28px;
        height: 20px;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100dvh - 76px);
        background-color: var(--color-white);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 24px 18px 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list > li {
        width: 100%;
        margin: 8px 0;
    }

    .nav-link {
        width: 100%;
        white-space: normal;
    }

    .dropdown-menu {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-slider-section {
        min-height: 560px;
        height: 100svh;
        overflow: hidden;
    }

    .hero-slide {
        width: 100%;
        overflow: hidden;
    }

    .hero-bg-image {
        background-position: center center;
        transform: scale(1.02);
    }

    .hero-content-box {
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 18px;
        max-width: 100%;
        text-align: center;
        overflow: hidden;
    }

    .hero-title,
    .display-1 {
        font-size: 2.3rem;
        line-height: 1.08;
        word-break: break-word;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 4px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        padding: 14px 18px;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.4;
    }

    .topbar-inner {
        padding: 8px 0;
    }

    .topbar-left {
        width: 100%;
        min-width: 0;
        gap: 8px 12px;
    }

    .contact-item {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        max-width: calc(100% - 48px);
    }

    .brand-logo .logo-img {
        height: 36px;
    }

    .brand-text {
        font-size: 1rem;
        max-width: 128px;
    }

    .nav-menu {
        top: 72px;
        height: calc(100dvh - 72px);
    }

    .hero-slider-section {
        min-height: 520px;
    }

    .hero-content-box {
        padding: 0 14px;
    }

    .hero-title,
    .display-1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        font-size: 0.82rem;
    }
}

.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.welcome-popup.show {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.welcome-popup-dialog {
    position: relative;
    z-index: 2;
    width: min(1040px, calc(100vw - 52px));
    height: min(760px, calc(100vh - 52px));
    margin: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    padding: 38px 42px 24px;
    transform: scale(0.88);
    transition: transform 0.45s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.welcome-popup.show .welcome-popup-dialog {
    transform: scale(1);
}

.welcome-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.08);
    color: var(--color-dark);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-fast);
}

.welcome-popup-close:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: rotate(90deg);
}

.popup-fly {
    position: absolute;
    width: 160px;
    height: 110px;
    opacity: 0;
}

.popup-mini-card {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    border: 2px solid rgba(197, 160, 89, 0.25);
    background: #fff;
}

.popup-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-fly-top { top: -100px; left: 50%; transform: translateX(-50%); }
.popup-fly-right { top: 50%; right: -180px; transform: translateY(-50%); }
.popup-fly-bottom { bottom: -100px; left: 50%; transform: translateX(-50%); }
.popup-fly-left { top: 50%; left: -180px; transform: translateY(-50%); }

.welcome-popup.show .popup-fly-top {
    animation: flyTopToCenter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.welcome-popup.show .popup-fly-right {
    animation: flyRightToCenter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.welcome-popup.show .popup-fly-bottom {
    animation: flyBottomToCenter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.welcome-popup.show .popup-fly-left {
    animation: flyLeftToCenter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes flyTopToCenter {
    0% { top: -120px; left: 50%; opacity: 0; transform: translateX(-50%) scale(0.86) rotate(-8deg); }
    100% { top: 36px; left: 33%; opacity: 1; transform: translateX(-50%) scale(1) rotate(-4deg); }
}
@keyframes flyRightToCenter {
    0% { right: -220px; top: 50%; opacity: 0; transform: translateY(-50%) scale(0.86) rotate(8deg); }
    100% { right: 26%; top: 64px; opacity: 1; transform: translateY(0) scale(1) rotate(4deg); }
}
@keyframes flyBottomToCenter {
    0% { bottom: -120px; left: 50%; opacity: 0; transform: translateX(-50%) scale(0.86) rotate(8deg); }
    100% { bottom: 16px; left: 46%; opacity: 1; transform: translateX(-50%) scale(1) rotate(3deg); }
}
@keyframes flyLeftToCenter {
    0% { left: -220px; top: 50%; opacity: 0; transform: translateY(-50%) scale(0.86) rotate(-8deg); }
    100% { left: 24%; top: 82px; opacity: 1; transform: translateY(0) scale(1) rotate(-3deg); }
}

.welcome-popup-main {
    position: relative;
    z-index: 3;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--color-gold-light);
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.popup-title {
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    line-height: 1.12;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.popup-desc {
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.popup-slider-wrap {
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.popup-slider {
    position: relative;
    width: 100%;
    height: 280px; 
    border-radius: 24px;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.popup-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.popup-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.popup-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-nav {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: var(--transition-fast);
}

.popup-nav:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.popup-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.popup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17,17,17,0.18);
    cursor: pointer;
    transition: var(--transition-fast);
}

.popup-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--color-gold);
}

.popup-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; 
    gap: 14px;
    margin-top: auto;
    padding-top: 6px;
}

.popup-actions .btn {
    flex: 1;
    min-width: fit-content;
    padding: 12px 24px; 
    white-space: nowrap; 
}

body.popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .welcome-popup {
        padding: 16px;
    }

    .welcome-popup-dialog {
        width: calc(100vw - 32px);
        height: auto;
        max-height: calc(100vh - 32px);
        padding: 42px 16px 18px;
        border-radius: 22px;
        overflow: hidden auto;
    }

    .welcome-popup-intro {
        height: 100px;
        margin-bottom: 0;
    }

    .welcome-popup-main {
        max-width: 100%;
        padding-top: 10px;
    }

    .popup-title {
        font-size: 1.45rem;
        line-height: 1.18;
    }

    .popup-desc {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }

    .popup-slider-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .popup-slider {
        height: 220px;
    }

    .popup-prev,
    .popup-next {
        display: none;
    }

    .popup-actions {
        flex-direction: column;
        margin-top: 0;
        padding-top: 4px;
    }

    .popup-actions .btn {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-popup {
        padding: 12px;
    }

    .welcome-popup-dialog {
        width: calc(100vw - 24px);
        padding: 38px 12px 16px;
        border-radius: 18px;
    }

    .popup-title {
        font-size: 1.28rem;
    }

    .popup-desc {
        font-size: 0.88rem;
    }

    .popup-slider {
        height: 195px;
    }
}

.floating-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: #000000; 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #222;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #222; 
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  overflow: hidden;
}

.floating-badge:hover {
  background: #000000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.floating-badge .fas {
  font-size: 20px;
}

.floating-badge .badge-text {
  white-space: nowrap;
  transition: max-width 0.4s ease, opacity 0.3s ease;
  max-width: 150px; 
  color: #FFFF00;
  opacity: 1;
}

.floating-badge.shrunk {
  padding: 15px 18px;
  gap: 0;
}

.floating-badge.shrunk .badge-text {
  max-width: 0;
  opacity: 0;
  color: #FFFF00;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  
  padding: 15px 25px; 
  
  background: rgba(37, 211, 102, 0.85); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border-radius: 100px; 
  border: 1px solid rgba(255, 255, 255, 0.5);
  
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); 
  
  color: #fff; 
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  overflow: hidden;
}

.floating-whatsapp:hover {
  background: rgba(37, 211, 102, 1); 
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8);
  transform: translateY(-3px);
}

.floating-whatsapp i {
  font-size: 20px;
}

.floating-whatsapp .badge-text {
  white-space: nowrap;
  transition: max-width 0.4s ease, opacity 0.3s ease;
  max-width: 150px; 
  color: #FFFF00;
  opacity: 1;
}

.floating-whatsapp.shrunk {
  padding: 15px 18px;
  gap: 0;
}

.floating-whatsapp.shrunk .badge-text {
  max-width: 0;
  opacity: 0;
  color: #FFFF00;
}