/* CSS Variables */
:root {
    --bg-dark: #111;
    --text-white: #fff;
    --gold: #F6E60D;
    --green: #0EE772;
    --gray-light: #c8c8c8;
    --gray-medium: #ddd;
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'League Spartan', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.7) 100%);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo i {
    font-size: 38px;
    color: var(--gold);
}

.logo-text {
    font-family: 'League Spartan', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gray-light);
}

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

/* Navigation */
.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

/* Slideshow Container */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 700px;
    padding: 0;
    z-index: 3;
}

/* Slideshow Controls */
.slideshow-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b99618;
    transform: scale(1.2);
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-prev {
    left: 30px;
}

.slideshow-next {
    right: 30px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(246, 230, 13, 0.8);
}

/* Cascade Animation */
.cascade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slide.active .cascade {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .hero-sub {
    transition-delay: 0.2s;
}

.slide.active .hero-title {
    transition-delay: 0.4s;
}

.slide.active .hero-description {
    transition-delay: 0.6s;
}

.slide.active .hero-buttons {
    transition-delay: 0.8s;
}

.hero-content {
    max-width: 700px;
}

.hero-sub {
    letter-spacing: 6px;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--green);
}

.hero-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gold);
}

.btn-outline {
    border: 1px solid var(--text-white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

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

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

.badge {
    position: absolute;
    bottom: 80px;
    right: 90px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.badge div {
    text-align: center;
}

.badge strong {
    font-size: 50px;
    font-family: 'League Spartan', sans-serif;
    display: block;
    color: var(--gold);
}

.badge span {
    letter-spacing: 2px;
    font-size: 13px;
}

.scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    letter-spacing: 3px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'League Spartan', sans-serif;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
                #0b0b0b;
    background-size: 60px 60px;
}

.about-title {
    margin-bottom: 70px;
}

.about-title h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: var(--text-white);
}

.about-title span {
    display: block;
    color: #F6E60D;
    font-style: italic;
}

.about-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: flex-start;
}

.about-photo {
    position: relative;
    border: 1px solid rgba(255,255,255,.15);
    padding: 18px;
}

.about-photo img {
    width: 100%;
    display: block;
}

.about-photo-info {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: -18px;
    background: #111;
    padding: 22px;
}

.about-photo-info h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.about-photo-info span {
    color: #F6E60D;
    font-size: 13px;
    letter-spacing: 2px;
}

.about-text p {
    color: #bfbfbf;
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 17px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.about-card {
    border: 1px solid rgba(255,255,255,.08);
    background: #101010;
    padding: 25px;
    transition: .35s;
}

.about-card:hover {
    border-color: #F6E60D;
    transform: translateY(-5px);
}

.about-card i {
    color: #F6E60D;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text-white);
}

.about-card span {
    color: #d7d7d7;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature span {
    font-size: 24px;
    color: var(--gold);
}

/* Areas Section */
.areas {
    background: #162131;
    padding: 110px 0;
    position: relative;
}

.areas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.section-header .subtitle {
    color: #F6E60D;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'League Spartan', sans-serif;
    color: var(--text-white);
    font-size: clamp(34px, 5vw, 58px);
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #F6E60D;
    font-style: italic;
}

.section-header p {
    color: #c4cbd6;
    line-height: 1.8;
    font-size: 16px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.area-card {
    position: relative;
    padding: 40px 35px;
    background: #1b2739;
    transition: .35s;
    overflow: hidden;
    min-height: 250px;
}

.area-card:hover {
    transform: translateY(-8px);
    background: #1e2b3f;
}

.area-card .line {
    position: absolute;
    background: rgba(255,255,255,.18);
    transition: .35s;
}

.area-card .line.top {
    top: 0;
    left: 0;
    width: 70px;
    height: 1px;
}

.area-card .line.left {
    top: 0;
    left: 0;
    width: 1px;
    height: 70px;
}

.area-card .line.right {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 70px;
}

.area-card .line.bottom {
    right: 0;
    bottom: 0;
    width: 70px;
    height: 1px;
}

.area-card:hover .line,
.area-card.active .line {
    background: #F6E60D;
}

.area-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: rgba(198,163,59,.08);
}

.area-card .icon i {
    color: #F6E60D;
    font-size: 24px;
}

.area-card:hover .icon {
    background: #F6E60D;
}

.area-card:hover .icon i {
    color: #fff;
}

.area-card .number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 42px;
    font-family: 'League Spartan', sans-serif;
    color: rgba(255,255,255,.08);
    font-weight: 700;
}

.area-card:hover .number {
    color: rgba(198,163,59,.25);
}

.area-card h3 {
    color: var(--text-white);
    font-size: 24px;
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 15px;
}

.area-card p {
    color: #bfc8d3;
    line-height: 1.8;
    font-size: 15px;
}

.area-card.active {
    background: #1f2c40;
}

.area-card.active .icon {
    background: #F6E60D;
}

.area-card.active .icon i {
    color: #fff;
}

/* Gallery Section */
.gallery {
    width: 100%;
    max-width: 980px;
    margin: auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.gallery-subtitle {
    display: block;
    color: #F6E60D;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
}

.gallery-subtitle:before,
.gallery-subtitle:after {
    content: "";
    width: 40px;
    height: 1px;
    background: #F6E60D;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

.gallery h1 {
    font-family: 'League Spartan', sans-serif;
    text-align: center;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.gallery h1 span {
    color: #F6E60D;
    font-style: italic;
}

.gallery p {
    color: #bdbdbd;
    text-align: center;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 28px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}

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

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

.gallery-item.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.horizontal {
    grid-column: span 2;
}

.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.hidden {
    display: none;
}

.gallery-btn {
    display: block;
    width: 190px;
    margin: 45px auto 0;
    text-align: center;
    padding: 14px;
    background-color: #000;
    border: 1px solid #F6E60D;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    transition: .4s;
    cursor: pointer;
}

.gallery-btn:hover {
    background: #F6E60D;
    color: #000;
}

/* Publications Section */
.publications {
    width: 100%;
    padding: 110px 0;
    background: #111827;
    position: relative;
    z-index: 2;
}

.publications .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 5px;
    color: #b9972b;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.publications .section-label::before {
    content: "";
    width: 38px;
    height: 1px;
    background: #b9972b;
}

.publications h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 60px;
    line-height: 1;
}

.publications h2 span {
    color: #b9972b;
    font-style: italic;
    font-weight: 600;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.post-card {
    background: #141d2f;
    border: 1px solid rgba(255,255,255,.06);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.post-card .post-image {
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .5s;
}

.post-card:hover .post-image img {
    transform: scale(1.06);
}

.post-card .post-content {
    padding: 28px;
}

.post-card .post-info {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.post-card .post-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b94a5;
    font-size: 11px;
}

.post-card .post-info i {
    color: #b9972b;
    font-size: 10px;
}

.post-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(24px, 3vw, 37px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--text-white);
}

.post-card .post-summary {
    color: #9ea7b7;
    font-size: 14px;
    line-height: 1.8;
}

.post-card .post-full-text {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
}

.post-card .post-full-text.active {
    max-height: 900px;
    margin-top: 20px;
}

.post-card .post-full-text p {
    color: #9ea7b7;
    font-size: 14px;
    line-height: 1.9;
}

.post-card .toggle-btn {
    margin-top: 22px;
    border: none;
    background: none;
    color: #b9972b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.post-card .toggle-btn:hover {
    color: #fff;
}

.post-card .toggle-btn i {
    font-size: 10px;
}

.publications-actions {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-publications {
    background: transparent;
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text-white);
    padding: 18px 34px;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    transition: .35s;
}

.btn-publications:hover {
    background: #b9972b;
    color: #111827;
    border-color: #b9972b;
}

/* Contact Section */
.contact {
    background: #0b0b0b;
    padding: 10px 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact .section-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #b99618;
}

.contact .section-label::before,
.contact .section-label::after {
    content: "";
    width: 42px;
    height: 1px;
    background: #b99618;
}

.contact h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1;
    color: var(--text-white);
    margin-top: 18px;
}

.contact h2 span {
    color: #b99618;
    font-style: italic;
}

.contact .section-description {
    max-width: 600px;
    margin: 18px auto 0;
    color: #98a2b3;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: start;
}

.contact-left {
    max-width: 320px;
}

.contact-company h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 5px;
    color: var(--text-white);
}

.contact-company span {
    color: #9aa5b5;
}

.contact-info-list {
    margin: 35px 0;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.contact-info-item:hover {
    text-decoration: none;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    border: 1px solid #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    background: transparent;
    transition: .3s;
    flex-shrink: 0;
}

.contact-info-item:hover .icon {
    background: var(--gold);
    color: #111;
}

.contact-info-item label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #6d7686;
}

.contact-info-item strong {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-white);
}

.contact-photo {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid #232323;
    overflow: hidden;
    background: #0b0b0b;
    margin-top: 25px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: .45s;
}

.contact-photo:hover img {
    transform: scale(1.05);
}

.contact-form-wrapper {
    background: transparent;
    border: 1px solid #232323;
    padding: 48px;
}

.contact-form {
    background: transparent;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #6d7686;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    padding: 14px 0;
    font: inherit;
    color: #ffffff;
    transition: .3s;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7d8795;
}

.contact-form .form-actions {
    margin-top: 35px;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form button {
    border: none;
    background: var(--green);
    color: #fff;
    padding: 17px 34px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.contact-form button:hover {
    background: #ffffff;
    color: var(--green);
}

.contact-form .whatsapp-link {
    text-decoration: none;
    color: #9aa5b5;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    font-size: 13px;
}

.contact-form .whatsapp-link:hover {
    color: #b9972b;
}

/* Services Section */
.services {
    background-color: var(--bg-dark);
}

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

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-icon {
    font-size: 40px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.service-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #000
}

.contact .section-title {
    color: var(--text-white);
}

.contact .section-subtitle {
    color: var(--gray-medium);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item span:first-child {
    font-size: 24px;
}

.contact-form {
    padding: 40px;

}

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

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 2px;
    font-size: 16px;
    font-family: inherit;
    background: #2a2a2a;
    color: var(--text-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #5a4a18;
    padding: 70px 0 30px;
}

.footer .container {
    width: 1150px;
    max-width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 70px;
}

.footer h4 {
    color: #b9962d;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.footer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer .logo i {
    color: #b9962d;
    font-size: 22px;
}

.footer .logo h3 {
    font-size: 24px;
    font-family: 'League Spartan', sans-serif;
    color: #fff;
}

.footer .logo span {
    font-weight: 300;
}

.footer .logo small {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 10px;
}

.footer .logo-col p {
    color: #9a9a9a;
    line-height: 1.8;
    font-size: 14px;
    margin: 25px 0;
}

.footer .social {
    display: flex;
    gap: 12px;
}

.footer .social a {
    width: 42px;
    height: 42px;
    border: 1px solid #3b3b3b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: .3s;
}

.footer .social a:hover {
    background: var(--gold);
    color: #111;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 18px;
    color: #ddd;
    font-size: 14px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: #b9962d;
}

.footer .contact li {
    display: flex;
    gap: 15px;
}

.footer .contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer .contact small {
    display: block;
    color: #777;
    font-size: 10px;
    letter-spacing: 1px;
}

.footer .contact strong {
    color: #fff;
    font-size: 15px;
}

.footer .contact span {
    color: #ddd;
    font-size: 14px;
}

.footer .partners span {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 3px;
}

.footer-bottom {
    width: 1150px;
    max-width: 95%;
    margin: 60px auto 0;
    border-top: 1px solid #232323;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #6e6e6e;
    font-size: 12px;
}

/* Floating Icons */
.floating {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.floating a:hover {
    transform: scale(1.12);
}

.floating .instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.floating .whatsapp {
    background: #25D366;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #9a7a2b;
    transform: translateY(-5px);
}
