* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

#header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#header .container {
    width: 100%;
    max-width: 1200px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.header-brand {
    flex: 0 0 auto;
}

.header-brand a {
    display: flex;
    align-items: center;
    min-width: 48px;
    min-height: 48px;
}

.header-brand img {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
    border-radius: 4px;
}
.logo {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    overflow: visible;
}

.logo a {
    color: #f9c803!important;
    text-decoration: none;
    font-size: clamp(1.35rem, 4vw, 1.8rem);
    font-weight: 777!important;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.logo a:nth-child(2) {
    color: #e4f903!important;
    font-size: clamp(1.1rem, 3.3vw, 1.2rem);
    font-weight: 600;
    line-height: 1.2;
}

.logo a:nth-child(3) {
    color: #ffffff!important;
    font-size: clamp(1.25rem, 3.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.2;
}

#nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 998;
}

#nav.open {
    max-height: 320px;
}

#nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
}

#nav ul li {
    width: 100%;
}

#nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.75rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.12rem;
    font-weight: 600;
    border-radius: 5px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

#nav ul li a:hover {
    background: #2b2b2b;
    color: #e8f903;
}

#nav ul li a:focus-visible {
    outline: 3px solid #e8f903;
    outline-offset: 2px;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f30000;
    color: #ffffff;
    padding: 0.55rem 0.7rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: clamp(0.92rem, 3vw, 1.2rem);
    white-space: nowrap;
}

.call-btn:hover {
    background: #c90000;
}

.call-btn:focus-visible {
    outline: 3px solid #e8f903;
    outline-offset: 3px;
}

.call-btn:active {
    transform: scale(0.97);
}

#menu-toggle {
    width: 42px;
    height: 42px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
}

#menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#menu-toggle:hover {
    background: #2b2b2b;
}

#menu-toggle:focus-visible {
    outline: 3px solid #e8f903;
    outline-offset: 2px;
}


@media (max-width: 380px) {
    #header .container {
        min-height: 72px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        gap: 0.35rem;
    }
    .header-brand img {
        width: 65px;
        height: 65px;
    }
    .header-brand a {
        min-width: 44px;
        min-height: 44px;
    }
    .logo a {
        font-size: 1.4rem;
    }
    .logo a:nth-child(2) {
        font-size: 1.2rem;
    }
    .logo a:nth-child(3) {
        font-size: 1.3rem;
    }
    .call-btn {
        min-height: 42px;
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
    #menu-toggle {
        width: 38px;
        height: 38px;
    }
    #menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

@media (min-width: 480px) {
    #header .container {
        min-height: 80px;
        padding: 0.7rem 0.9rem;
        gap: 0.7rem;
    }
    .header-brand img {
        width: 53px;
        height: 53px;
    }
    .header-brand a {
        min-width: 53px;
        min-height: 53px;
    }
    .call-btn {
        min-height: 45px;
        padding: 0.6rem 0.8rem;
    }
    #menu-toggle {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 600px) {

    #header .container {
        min-height: 84px;
        padding: 0.7rem 1rem;
        gap: 0.85rem;
    }
    .header-brand img {
        width: 58px;
        height: 58px;
    }
    .header-brand a {
        min-width: 58px;
        min-height: 58px;
    }
    .logo a {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
    }
    .logo a:nth-child(2) {
        font-size: clamp(0.98rem, 2.2vw, 1.3rem);
    }
    .logo a:nth-child(3) {
        font-size: clamp(1.02rem, 2.3vw, 1.4rem);
    }
    .call-btn {
        min-height: 46px;
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
    #menu-toggle {
        width: 42px;
        height: 42px;
    }
    #menu-toggle span {
        width: 26px;
    }
}

@media (min-width: 900px) {
    #header .container {
        min-height: 92px;
        padding: 0.75rem 1.3rem;
        gap: 1rem;
    }
    .header-brand img {
        width: 64px;
        height: 64px;
    }
    .header-brand a {
        min-width: 64px;
        min-height: 64px;
    }
    .logo {
        flex: 0 1 300px;
    }
    .logo a {
        font-size: clamp(1.4rem, 1.8vw, 1.65rem);
    }
    .logo a:nth-child(2) {
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    }
    .logo a:nth-child(3) {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }
    #nav {
        position: static;
        width: auto;
        max-height: none;
        overflow: visible;
        margin-left: auto;
    }
    #nav ul {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }
    #nav ul li {
        width: auto;
    }
    #nav ul li a {
        width: auto;
        min-height: 44px;
        padding: 0.5rem 0.55rem;
        font-size: clamp(1.05rem, 1.5vw, 1.22rem);
        white-space: nowrap;
    }
    .header-actions {
        gap: 0.6rem;
    }
    .call-btn {
        min-height: 46px;
        padding: 0.65rem 1rem;
        font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    }
    #menu-toggle {
        display: none;
    }
}

@media (min-width: 1100px) {
    #header .container {
        gap: 1.25rem;
    }
    .header-brand img {
        width: 68px;
        height: 68px;
    }
    .header-brand a {
        min-width: 68px;
        min-height: 68px;
    }
    .logo {
        flex-basis: 310px;
    }
    .logo a {
        font-size: 1.65rem;
    }
    .logo a:nth-child(2),
    .logo a:nth-child(3) {
        font-size: 1.2rem;
    }
    #nav ul {
        gap: 1.5rem;
    }
    #nav ul li a {
        font-size: 1.22rem;
    }
    .call-btn {
        min-height: 48px;
        padding: 0.7rem 1.1rem;
        font-size: 1.22rem;
    }
}

@media (min-width: 1300px) {
    #header .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .logo {
        flex-basis: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    #nav,
    #menu-toggle span,
    .call-btn {
        transition: none;
    }
}


#header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #111 !important;
    color: #fff;
    z-index: 999;
}

#header .container {
    width: 100%;
    max-width: 1200px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0.65rem 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


.logo a {
    color: #ffee00;
    text-decoration: none;
    font-size: 1.7rem;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffee00;
}

.first-link {
    font-size: 1.7rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.call-btn {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: #ffd000;
    color: #090909;
    font-size: 1.6rem;
    font-weight: 669!important;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.call-btn:active {
    transform: scale(0.97);
}

#menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    margin-left: 0.5rem;
    cursor: pointer;
}

#menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

#hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    color: #fff;
}

#hero-section > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#hero-section .overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
}

#hero-section .content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#hero-section h1 {
    margin: 0 0 1rem;
    color: #fafafa;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

#hero-section .animated-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

#hero-section .animated-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.85rem 1rem;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeIn 0.5s ease forwards;
}
#hero-section .animated-list li:nth-child(1) {
    animation-delay: 0.2s;
}
#hero-section .animated-list li:nth-child(2) {
    animation-delay: 0.3s;
}
#hero-section .animated-list li:nth-child(3) {
    animation-delay: 0.4s;
}
#hero-section .animated-list li:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#hero-section .call-bton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0 auto;
    padding: 0.9rem 1.25rem;
    border: 0;
    border-radius: 8px;
    background: #ff0000;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

#hero-section .call-bton:hover {
    background: #d90000;
}

#hero-section .call-bton:active {
    transform: scale(0.98);
}

@media (min-width: 600px) {
    #hero-section .overlay {
        padding: 3rem 2rem;
    }
    #hero-section .animated-list {
        gap: 1rem;
    }
    #hero-section .animated-list li {
        font-size: 1.05rem;
    }
    #hero-section .call-bton {
        width: auto;
        min-width: 280px;
    }
}

@media (min-width: 992px) {
    #hero-section {
        min-height: 90vh;
    }
    #hero-section .overlay {
        min-height: 90vh;
        padding: 4rem 2rem;
    }
    #hero-section .content {
        max-width: 800px;
    }
    #hero-section h1 {
        margin-bottom: 2rem;
    }
    #hero-section .animated-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    #hero-section .animated-list li {
        min-height: 70px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    #header .container {
        flex-wrap: wrap;
    }
    #menu-toggle {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 998;
    }
    nav.open {
        max-height: 400px;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    #hero-section {
        min-height: 75vh;
    }
    #hero-section .overlay {
        min-height: 75vh;
    }
    #hero-section h1 {
        font-size: 1.8rem;
    }
    #hero-section .animated-list li {
        font-size: 1.15rem;
    }
    #hero-section .call-bton {
        font-size: 1.6rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    #header .container {
        padding: 0.8rem 0.9rem;
    }
    .logo a {
        font-size: 1.5rem;
    }
    .call-btn {
        padding: 0.4rem 0.8rem;
        font-size: 1.2rem;
    }
    #menu-toggle span {
        width: 20px;
        height: 2.5px;
    }
    #hero-section h1 {
        font-size: 1.5rem;
    }
    #hero-section .animated-list {
        gap: 0.9rem;
    }
    #hero-section .animated-list li {
        min-height: 50px;
        padding: 0.7rem 0.8rem;
        font-size: 1.05rem;
    }
    #hero-section .call-bton {
        min-height: 52px;
        padding: 0.6rem 1rem;
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #hero-section .animated-list li {
        opacity: 1;
        transform: none;
        animation: none;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


.whatsapp-banner {
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #090a0a, #191a1b, #161616);
    color: #fff;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.banner-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.banner-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.banner-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.whatsapp-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.whatsapp-input-group input {
    flex: 1;
    padding: 0.8rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.whatsapp-input-group button {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 12px;
    background: #078234;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.whatsapp-input-group button:hover {
    background: #1eb255;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 1rem 1.5rem;
    background: #078234;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb255;
}

@media (min-width: 600px) {
    .banner-content h2 {
        font-size: 1.7rem;
    }
    .banner-content p {
        font-size: 1.15rem;
    }
}
