:root {
    --ocean-blue: #003566;
    --coral-sunset: #e6eaf0;
    --midnight-navy: #002346;
    --amber-glow: #fd7e14;
    --forest-mist: rgba(0, 53, 102, 0.1);
    --shadow-depth: rgba(0, 35, 70, 0.2);
    --text-primary: #002346;
    --accent-warm: #1683fb;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
      background: #ffffff;
    padding-top: 89px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
        padding: 0 21px;
}

.main_menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
      box-shadow: 0 2px 21px var(--shadow-depth);
    transition: transform 0.3s ease;
}

.main_menu.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 28px var(--shadow-depth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.navbar-brand img {
    height: 47px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--ocean-blue);
    position: relative;
    transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--ocean-blue);
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
      gap: 34px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
      transition: color 0.28s ease;
}

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

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
          transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
          margin: 21px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.home-slider {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
      opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 54%;
    background: rgba(255, 255, 255, 0.91);
}

.slider-text {
    height: 720px;
    display: flex;
    align-items: center;
}

.row {
    display: flex;
    width: 100%;
}

.col-md-6 {
    width: 50%;
}

.justify-content-end {
    justify-content: flex-end;
}

.text {
    position: relative;
    z-index: 10;
      padding-left: 47px;
}

.slider-text h1 {
    font-size: 53px;
    color: var(--amber-glow);
    line-height: 1.21;
    font-weight: 700;
    text-transform: uppercase;
      margin-bottom: 21px;
}

.slider-text h1 span {
    display: block;
    color: var(--ocean-blue);
}

.subheading {
    font-size: 19px;
    font-weight: 400;
    color: var(--midnight-navy);
      margin-bottom: 28px;
}

.btn {
    display: inline-block;
    padding: 13px 34px;
    border-radius: 47px;
    text-decoration: none;
    font-weight: 600;
      transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-secondary {
    background: var(--accent-warm);
    color: #fff;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent-warm);
    border-color: var(--accent-warm);
      transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(22, 131, 251, 0.3);
}

.section {
      padding: 89px 0;
}

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

.section-header h2 {
    font-size: 43px;
    color: var(--ocean-blue);
    font-weight: 700;
      margin-bottom: 17px;
}

.section-header p {
    font-size: 19px;
    color: var(--midnight-navy);
    opacity: 0.8;
}

.featured-hotels {
    background: var(--coral-sunset);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 34px;
}

.hotel-card {
    background: #fff;
    border-radius: 17px;
    overflow: hidden;
      box-shadow: 0 13px 34px var(--shadow-depth);
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hotel-card:hover {
      transform: translateY(-8px);
    box-shadow: 0 21px 54px var(--shadow-depth);
}

.hotel-image {
    height: 260px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      transition: transform 0.42s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.07);
}

.hotel-content {
      padding: 28px;
}

.hotel-content h3 {
    font-size: 24px;
    color: var(--ocean-blue);
    font-weight: 700;
      margin-bottom: 13px;
}

.hotel-content p {
    color: var(--midnight-navy);
    opacity: 0.8;
      margin-bottom: 21px;
    line-height: 1.7;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
      gap: 9px;
}

.hotel-features span {
    background: var(--forest-mist);
    color: var(--ocean-blue);
      padding: 7px 13px;
    border-radius: 21px;
    font-size: 13px;
    font-weight: 500;
}

.services-section {
    background: #fff;
}

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

.service-item {
    text-align: center;
}

.service-image {
    height: 240px;
    border-radius: 13px;
    overflow: hidden;
      margin-bottom: 21px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h4 {
    font-size: 23px;
    color: var(--ocean-blue);
    font-weight: 600;
      margin-bottom: 13px;
}

.service-item p {
    color: var(--midnight-navy);
    opacity: 0.8;
    line-height: 1.7;
}

.community-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-navy) 100%);
    color: #fff;
    text-align: center;
}

.workspace-padding {
    padding: 89px 0 34px;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 47px;
    align-items: center;
}

.showcase-column {
    position: relative;
}

.showcase-margin {
    margin-bottom: 47px;
}

.about-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
}

.about-section .section-header h2 {
    font-size: 43px;
    margin-bottom: 13px;
    display: block;
    line-height: 1.21;
    color: var(--ocean-blue);
    font-weight: 700;
}

.about-section .section-header p {
    font-size: 17px;
    color: var(--midnight-navy);
    opacity: 0.7;
    margin-bottom: 0;
}

.about-section .section-header span {
    position: absolute;
    top: 50%;
    font-size: 97px;
    color: var(--coral-sunset);
    transform: translateY(-50%);
    z-index: -1;
    left: -54px;
    line-height: 1;
    font-weight: 900;
    opacity: 0.6;
}

.about-image {
    box-shadow: 0 13px 34px var(--shadow-depth);
    border-radius: 17px;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 54px var(--shadow-depth);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    padding-left: 21px;
}

.about-text h3 {
    font-size: 29px;
    margin-bottom: 21px;
    color: var(--ocean-blue);
    font-weight: 600;
}

.about-text p {
    color: var(--midnight-navy);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 28px;
}

.content-spacing {
    padding-right: 13px;
}

.showcase-btn {
    margin-top: 21px;
}

.criteria-section {
    background: var(--coral-sunset);
    padding: 89px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 34px;
}

.criteria-item {
    background: #fff;
    padding: 34px 28px;
    border-radius: 17px;
    box-shadow: 0 7px 28px var(--shadow-depth);
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--ocean-blue);
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 47px var(--shadow-depth);
    border-left-color: var(--amber-glow);
}

.criteria-number {
    font-size: 34px;
    font-weight: 900;
    color: var(--ocean-blue);
    margin-bottom: 17px;
    line-height: 1;
}

.criteria-item h4 {
    font-size: 21px;
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 13px;
}

.criteria-item p {
    color: var(--midnight-navy);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.hotels-offers {
    padding: 89px 0;
}

.workspace-light {
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.offer-block {
    margin-bottom: 47px;
    box-shadow: 0 13px 34px var(--shadow-depth);
    border-radius: 17px;
    overflow: hidden;
    transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offer-block:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 54px var(--shadow-depth);
}

.showcase-flex {
    display: flex;
    align-items: stretch;
}

.offer-image, .offer-text {
    width: 100%;
}

.offer-image {
    min-height: 340px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: transform 0.42s ease;
}

.offer-block:hover .offer-image {
    transform: scale(1.05);
}

.offer-text {
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-price {
    display: block;
    margin-bottom: 17px;
    font-size: 13px;
    color: var(--midnight-navy);
    opacity: 0.7;
}

.price-highlight {
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.21;
    color: var(--amber-glow);
    display: inline-block;
    margin-right: 7px;
}

.offer-text h3 {
    font-size: 28px;
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 17px;
    line-height: 1.3;
}

.offer-lead {
    font-size: 1.19rem;
    font-weight: 400;
    color: var(--midnight-navy);
    margin-bottom: 17px;
    line-height: 1.5;
}

.offer-text p {
    color: var(--midnight-navy);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 21px;
}

.offer-text .btn {
    align-self: flex-start;
    margin-top: 13px;
}

.view-all-section {
    margin-top: 67px;
}

.showcase-btn-large {
    padding: 17px 47px;
    font-size: 18px;
    font-weight: 600;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.content-image-section {
    padding: 89px 0;
    background-color: #fff;
}

.main-title {
    font-size: 43px;
    margin-bottom: 47px;
    color: var(--ocean-blue);
    text-align: center;
    font-weight: 700;
}

.image-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 47px;
    align-items: center;
}

.text-block {
    flex: 1;
    min-width: 320px;
}

.text-block p {
    margin-bottom: 21px;
    color: var(--midnight-navy);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.85;
}

.embed-container {
    flex: 1;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 17px;
    box-shadow: 0 13px 34px var(--shadow-depth);
}

.embed-container-21by9 {
    padding-top: 44.85%;
}

.embed-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform 0.38s ease;
}

.embed-container:hover .embed-item {
    transform: scale(1.05);
}

.testimonials-section {
    padding: 89px 0;
}

.bg-lightgray {
    background-color: #f8f9fa;
}

.testimonial-header {
    margin-bottom: 67px;
}

.testimonial-subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 13px;
    color: var(--accent-warm);
    font-weight: 600;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.testimonial-heading {
    font-size: 43px;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.testimonial-item {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 34px 28px;
    text-align: center;
    border-radius: 17px;
    box-shadow: 0 7px 28px var(--shadow-depth);
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--ocean-blue);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 47px var(--shadow-depth);
    border-top-color: var(--amber-glow);
}

.testimonial-avatar {
    margin-bottom: 21px;
}

.avatar-placeholder {
    width: 67px;
    height: 67px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-warm) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
}

.testimonial-content p {
    margin-bottom: 21px;
    color: var(--midnight-navy);
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-name {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 7px;
    color: var(--ocean-blue);
}

.testimonial-position {
    font-size: 15px;
    color: var(--accent-warm);
    opacity: 0.8;
}

.frequently_area {
    position: relative;
    padding: 89px 0;
    background: white;
}

.workspace-gap {
    padding: 89px 0;
}

.faq-header .main_title {
    margin-bottom: 67px;
    text-align: center;
}

.faq-header .main_title h2 {
    font-size: 97px;
    color: var(--coral-sunset);
    opacity: 0.3;
    margin: 0;
    line-height: 0.6;
    font-weight: 900;
}

.faq-header .main_title h1 {
    color: var(--ocean-blue);
    margin-top: -34px;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 17px;
}

.faq-header .main_title p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--midnight-navy);
    opacity: 0.8;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 47px;
}

.faq-column {
    position: relative;
}

.frequent_inner {
    position: relative;
    overflow: hidden;
}

.frequent_inner:after {
    content: "";
    position: absolute;
    height: 86%;
    border: 1px dashed rgba(var(--ocean-blue), 0.2);
    left: 50%;
    transform: translateX(-50%);
    top: 34px;
}

.frequent_item {
    position: relative;
    padding: 0 21px;
}

.frequent_item h3 {
    font-size: 19px;
    color: var(--ocean-blue);
    padding-top: 34px;
    margin: 0 0 17px 0;
    font-weight: 600;
    line-height: 1.4;
}

.frequent_item p {
    font-weight: 400;
    padding: 0 0 34px 0;
    margin: 0;
    color: var(--midnight-navy);
    opacity: 0.85;
    line-height: 1.6;
    position: relative;
}

.frequent_item p:after {
    content: "";
    position: absolute;
    width: 150%;
    border: 1px dashed rgba(var(--ocean-blue), 0.15);
    left: 0;
    bottom: 0;
}

.frequent_item.last-child p:after {
    display: none;
}

.community-content h2 {
    font-size: 39px;
    font-weight: 700;
      margin-bottom: 21px;
}

.community-content p {
    font-size: 18px;
    opacity: 0.9;
      margin-bottom: 34px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--amber-glow);
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: var(--amber-glow);
    border-color: var(--amber-glow);
}

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.footer-section {
    background: #1a1a1a;
    color: #fff;
      padding: 67px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 47px;
    margin-bottom: 47px;
}

.footer-column h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
      margin-bottom: 21px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
      transition: color 0.28s ease;
}

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

.contact-info .contact-label {
    font-weight: 600;
    color: #fff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
      margin-bottom: 17px;
}

.disclaimer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
      margin-bottom: 17px;
    line-height: 1.6;
}

.regulatory-links {
    display: flex;
      gap: 17px;
}

.regulatory-links img {
    height: 34px;
    width: auto;
      transition: opacity 0.28s ease;
}

.regulatory-links a:hover img {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 28px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 1280px) {
    .container {
          padding: 0 34px;
    }
}

@media (max-width: 890px) {
    .slider-item .overlay {
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
    }
    
    .text {
          padding-left: 21px;
    }
    
    .slider-text h1 {
        font-size: 36px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
          gap: 34px;
    }
    
    .section {
          padding: 56px 0;
    }
    
    .creative-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    
    .about-section .section-header span {
        font-size: 67px;
        left: -34px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .workspace-padding {
        padding: 56px 0 21px;
    }
    
    .showcase-flex {
        flex-direction: column;
    }
    
    .offer-image {
        min-height: 280px;
        order: 1 !important;
    }
    
    .offer-text {
        order: 2 !important;
        padding: 28px 21px;
    }
    
    .offer-text h3 {
        font-size: 24px;
    }
    
    .price-highlight {
        font-size: 1.8rem;
    }
    
    .hotels-offers {
        padding: 56px 0;
    }
    
    .image-text-wrapper {
        flex-direction: column;
        gap: 34px;
    }
    
    .text-block {
        min-width: auto;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 34px;
    }
    
    .content-image-section {
        padding: 56px 0;
    }
    
    .testimonials-section {
        padding: 56px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .testimonial-heading {
        font-size: 32px;
    }
    
    .frequently_area {
        padding: 56px 0;
    }
    
    .faq-header .main_title h2 {
        font-size: 67px;
    }
    
    .faq-header .main_title h1 {
        font-size: 32px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    
    .frequent_inner:after {
        display: none;
    }
    
    .frequent_item p:after {
        display: none;
    }

@media (max-width: 640px) {
    .container {
          padding: 0 17px;
    }
    
    .slider-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hotel-content {
          padding: 21px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
          gap: 34px;
    }
    
    .offer-text {
        padding: 21px 17px;
    }
    
    .offer-text h3 {
        font-size: 21px;
    }
    
    .offer-lead {
        font-size: 1.1rem;
    }
    
    .price-highlight {
        font-size: 1.6rem;
    }
    
    .showcase-btn-large {
        padding: 13px 28px;
        font-size: 16px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    
    .faq-header .main_title h2 {
        font-size: 47px;
    }
    
    .faq-header .main_title h1 {
        font-size: 28px;
    }
    
    .frequent_item {
        padding: 0 13px;
    }
    
    .frequent_item h3 {
        font-size: 17px;
        padding-top: 21px;
    }
    
    .testimonial-card {
        padding: 28px 21px;
    }
    
    .testimonial-heading {
        font-size: 28px;
    }
}