/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Premium Palette */
    --primary-color: #1a1a2e;
    --secondary-color: #c5a880;
    --accent-color: #d4af37;
    --dark-color: #0f0f1e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Section */
.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section--dark {
    background: var(--dark-color);
    color: var(--white-color);
}

.section--light {
    background: var(--light-color);
}

/* Section Header */
.section__header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: 3rem;
    }
}

.section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section__title {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn.btn--primary {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn.btn--primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.btn--outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn.btn--outline:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark-color);
    padding: 5rem 2rem 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.nav__menu.show-menu {
    right: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav__link {
    color: var(--white-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .nav__menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .nav__list {
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav__close,
    .nav__toggle {
        display: none;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 30, 0.7), rgba(26, 26, 46, 0.9));
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    padding-top: 70px;
}

.hero__subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

.hero__description {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero__description {
        font-size: 1.125rem;
    }
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat__number {
        font-size: 2.5rem;
    }
}

.stat__label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero__controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.hero__control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.hero__control:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* ===========================
   USP SECTION
   =========================== */
.usp__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .usp__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .usp__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.usp__card {
    position: relative;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.usp__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.usp__card--featured {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white-color);
}

.usp__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.usp__card--featured .usp__icon {
    background: var(--accent-color);
}

.usp__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.usp__text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.usp__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===========================
   CHECK-IN SECTION
   =========================== */
.checkin__content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .checkin__content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }
}

.checkin__description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.checkin__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkin__feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.checkin__feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-color);
    flex-shrink: 0;
}

.checkin__feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.checkin__feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.checkin__mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup__device,
.mockup__printer,
.mockup__badge {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

.mockup__device {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mockup__printer {
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}

.mockup__badge {
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===========================
   HALLS SECTION
   =========================== */
.halls__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .halls__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hall__card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.hall__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hall__card--large {
    grid-column: 1 / -1;
}

.hall__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hall__card--large .hall__image {
        height: 400px;
    }
}

.hall__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hall__card:hover .hall__image img {
    transform: scale(1.1);
}

.hall__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.hall__card:hover .hall__overlay {
    opacity: 1;
}

.hall__content {
    padding: 2rem;
}

.hall__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hall__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.hall__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hall__spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.hall__spec i {
    color: var(--accent-color);
}

.hall__formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.format__tag {
    padding: 0.25rem 0.75rem;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service__card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-color);
    opacity: 0.3;
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.service__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.service__list i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery__grid {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    /*gap: 1rem;*/
}

@media (min-width: 768px) {
    .gallery__grid {
        /*gap: 1.5rem;*/
    }
}

.gallery__item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__title {
    color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery__zoom {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.gallery__zoom:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    color: var(--dark-color);
}

/* ===========================
   CLIENTS SECTION
   =========================== */
.clients__text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact__content {
    display: grid;
    justify-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact__content {
        /*grid-template-columns: 1fr 1.5fr;*/
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.contact__subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-wrap: wrap;
    /*flex-direction: column;*/
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact__detail-wrap{
  flex: 1 1 calc(50% - 1.5rem);
}
.contact__detail {
    display: flex;
    gap: 1rem;
}
.contact__detail-phone{
  color: var(--accent-color);
  font-weight: 600 ;
  font-size: clamp(1.2rem, 4vw, 3rem);
}
.contact__detail-mobile{
  display: none;
}

@media screen and (max-width: 576px) {
  .contact__details {
    gap: 0;
  }
  .contact__detail-desktop{
    display: none;
  }
  .contact__detail-mobile{
    display: flex;
  }
  .contact__detail {
    flex: 1 1 100%;
  }
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact__text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact__text p {
    font-size: 0.95rem;
    color: var(--gray-color);
}

.contact__text a {
    color: var(--accent-color);
}

.contact__text a:hover {
    text-decoration: underline;
}

.contact__social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social__links {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--dark-color);
    transition: var(--transition-normal);
}

.social__link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact__form {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact__form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form__input,
.form__textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .btn {
    grid-column: 1 / -1;
    justify-self: start;
}

@media (max-width: 767px) {
    .contact__form .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   MAP SECTION
   =========================== */
.map {
    height: 400px;
}

@media (min-width: 768px) {
    .map {
        height: 500px;
    }
}

#map-container {
    width: 100%;
    height: 100%;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1.1fr 1fr;
    }
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links li {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer__links i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ===========================
   MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal__content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
}

.modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2.5rem;
    color: var(--white-color);
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal__close:hover {
    color: var(--accent-color);
    background-color: transparent;
    border-color: transparent;
}

.modal__img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-color);
    background: var(--accent-color);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* tiny-slider */

.tns-nav {
  text-align: center;
  margin-top: 10px;
}

.tns-nav button {
  border-radius: 50px;
  background: var(--accent-color) !important;
  transition: 0.5s;
  border: none;
  margin: 0 5px;
  padding: 5px;
  opacity: 0.4;
}

.tns-nav .tns-nav-active {
  opacity: 1;
}

.tns-controls {
  display: none;
}

.mb-0{
  margin-bottom: 0 !important;
}

.article-content-col{
  border-radius: var(--radius-lg)!important;
  box-shadow: var(--shadow-sm)!important;
  transition: var(--transition-normal)!important;
}

.article-content-col:hover {
    box-shadow: var(--shadow-lg)!important;
}
