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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    background-color: #fff;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-xs-12, .col-sm-3, .col-sm-6, .col-sm-10, .col-md-2, .col-md-3, .col-md-4 {
    padding: 0 15px;
}

.col-xs-12 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-10 {
        width: 83.333333%;
    }
}

@media (min-width: 992px) {
    .col-md-2 {
        width: 16.666667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.333333%;
    }
}

/* Header */
#header {
    background-color: #DB2B36;
    color: #fff;
}

.topbar {
    background-color: #DB2B36;
    padding: 10px 0;
}

.global-nav {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    align-self: center;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

.global-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.global-menu li {
    display: inline-block;
}

.global-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.global-menu a:hover {
    color: #ccc;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.btn-link:hover {
    color: #ccc;
}

.icon-share::before {
    content: "→";
    margin-left: 5px;
}

/* Main Content */
#main {
    min-height: 60vh;
    padding: 40px 0;
}

.photo-slider {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

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

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

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.caption-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: #fff;
    z-index: 2;
}

.caption-block_text {
    max-width: 800px;
}

.caption__item.title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.caption__item.title .word {
    display: inline-block;
    margin-right: 10px;
}

.caption__item.description {
    font-size: 24px;
    line-height: 1.5;
}

.caption__item.description .word {
    display: inline-block;
    margin-right: 5px;
}

.slogan {
    height: 100px;
    background: transparent;
}

/* Key Interests */
.keyInterests {
    margin-top: 60px;
    margin-bottom: 40px;
    justify-content: center;
}

.keyInterests .col-xs-12.col-sm-3.col-md-3 {
    display: flex;
    justify-content: center;
}

.tour {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.tour a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour .image {
    position: relative;
    display: inline-block;
}

.tour img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #000;
}

.tour .title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(0,0,0,0.7);
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
}

.img-circle {
    border-radius: 50%;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #DB2B36;
    border-color: #fff;
}

/* Download Section */
.download-section {
    background-color: transparent;
    padding: 40px 0;
    margin-top: 0;
}

.download-btn {
    background-color: #DB2B36;
    color: #fff;
    border: none;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    background-color: #b8232d;
    transform: translateY(-2px);
}

.download-btn:active {
    transform: translateY(0);
}

/* Footer */
#footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    margin-top: 0;
}

#footer .row {
    justify-content: center;
    align-items: flex-start;
}

#footer .col-xs-12.col-sm-6.col-md-4 {
    margin-bottom: 20px;
}

#footer h4 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer .links {
    list-style: none;
    padding: 0;
}

#footer .links li {
    margin-bottom: 12px;
}

#footer .links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

#footer .links a:hover {
    color: #fff;
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

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

#scroll-top:hover {
    background-color: #333;
}

.icon-chevron-up::before {
    content: "↑";
    font-size: 24px;
}

/* Responsive */
@media (max-width: 767px) {
    .topbar {
        padding: 15px 0;
    }
    
    .global-nav .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: revert;
    }
    
    .col-xs-12.col-sm-2 {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .col-xs-12.col-sm-10 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
    }
    
    .burger-menu {
        display: flex;
        order: 2;
        align-items: center;
        align-self: center;
    }
    
    .global-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #DB2B36;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 60px 20px 20px;
        gap: 0;
        transition: right 0.3s;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .global-menu.active {
        right: 0;
    }
    
    .global-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .global-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
    }
    
    .btn-link {
        font-size: 13px;
    }
    
    .caption__item.title {
        font-size: 28px;
    }
    
    .caption__item.description {
        font-size: 16px;
    }
    
    .caption-body {
        padding: 20px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .tour img {
        width: 150px;
        height: 150px;
    }
    
    .download-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

