/* Introduction Section Styles */
        .intro-section {
            position: relative;
            overflow: hidden;
        }

        .section-subtitlex {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        @media (min-width: 992px) {
            .section-subtitlex {
                flex-direction: row;
                justify-content: flex-start;
            }
        }

        .section-subtitlex .icon {
            background-color: rgba(189, 148, 90, 0.1);
            margin-right: 0;
            margin-bottom: 10px;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            color: #BD945A;
            font-size: 17px;
            text-align: center;
            vertical-align: middle;
            justify-content: center;
            align-items: center;
            display: flex;
            transition: all 0.3s ease;
        }

        @media (min-width: 992px) {
            .section-subtitlex .icon {
                margin-right: 10px;
                margin-bottom: 0;
            }
        }

        .section-subtitlex .icon:hover {
            background-color: rgba(189, 148, 90, 0.2);
            transform: rotate(15deg);
        }

        .section-subtitlex span:last-child {
            font-family: "Urbanist", sans-serif;
            font-weight: 600;
            margin-bottom: 0;
            color: #BD945A;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .feature-box {
            padding: 25px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #BD945A;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .feature-box:hover:before {
            transform: scaleY(1);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #BD945A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            background: #141414;
            transform: scale(1.1);
        }

        .feature-box h5 {
            font-family: "Gilda Display", serif;
            font-size: 20px;
            margin-bottom: 10px;
            color: #141414;
            position: relative;
        }

        .feature-box p {
            font-size: 15px;
            line-height: 24px;
            margin-bottom: 0;
            color: #707070;
        }

        /* Desktop Image Gallery Styles */
        .intro-image-gallery {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Main Large Circle */
        .main-circle-image {
            width: 420px;
            height: 420px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 10px solid #fff;
            transition: all 0.5s ease;
            z-index: 1;
        }

        .main-circle-image:hover {
            transform: scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .main-circle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .main-circle-image:hover img {
            transform: scale(1.1);
        }

        /* Small Circles Group - Overlapping on Right */
        .small-circles-group {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: -60px;
        }

        .small-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            border: 8px solid #fff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
            position: relative;
        }

        .small-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .small-circle:hover {
            transform: scale(1.15) translateX(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
            z-index: 10;
        }

        .small-circle:hover img {
            transform: scale(1.1);
        }

        /* Individual circle positioning for overlapping effect */
        .circle-1 {
            z-index: 5;
            margin-bottom: -70px;
        }

        .circle-2 {
            z-index: 4;
            margin-left: 30px;
            margin-bottom: -70px;
        }

        .circle-3 {
            z-index: 3;
            margin-left: -20px;
        }

        /* Mobile Grid Layout */
        .mobile-image-grid {
            display: none;
            padding: 0 10px;
            margin-top: 30px;
        }

        .mobile-grid-row {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .mobile-grid-row:last-child {
            margin-bottom: 0;
        }

        .mobile-grid-item {
            flex: 1;
            aspect-ratio: 1 / 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-grid-item:active {
            transform: scale(0.98);
        }

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

        /* Button Styles */
        .button {
            display: inline-block;
            padding: 12px 30px;
            background: #BD945A;
            color: #fff;
            border-radius: 30px;
            font-family: "Urbanist", sans-serif;
            font-size: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid #BD945A;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #fff;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .button:hover:before {
            width: 100%;
        }

        .button:hover {
            color: #BD945A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(189, 148, 90, 0.2);
        }

        /* Responsive Styles */
        @media (max-width: 991px) {

            /* Hide desktop circular layout on mobile/tablet */
            .intro-image-gallery {
                display: none;
            }

            /* Show mobile grid layout */
            .mobile-image-grid {
                display: block !important;
            }
        }

        @media (max-width: 767px) {
            .section-title {
                font-size: 32px;
                line-height: 1.2;
            }

            .mobile-image-grid {
                padding: 0 8px;
            }

            .mobile-grid-row {
                gap: 8px;
                margin-bottom: 8px;
            }

            .mobile-grid-item {
                border-radius: 12px;
            }
        }

        @media (max-width: 575px) {
            .mobile-image-grid {
                padding: 0 5px;
            }

            .mobile-grid-row {
                gap: 6px;
                margin-bottom: 6px;
            }

            .mobile-grid-item {
                border-radius: 10px;
            }
        }
        /* Instagram Section Styles */
        .instagram-section {
            background-color: #f8f6f4;
            position: relative;
        }

        .section-title {
            font-family: "Gilda Display", serif;
            font-weight: 400;
            font-size: 40px;
            line-height: 50px;
            color: #141414;
            position: relative;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title span {
            color: #BD945A;
        }

        .section-subtitle {
            font-family: "Urbanist", sans-serif;
            font-weight: 400;
            margin-bottom: 10px;
            color: #BD945A;
            font-size: 15px;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .instagram-feed {
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            position: relative;
        }

        .instagram-item {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0;
            position: relative;
        }

        .instagram-image {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            width: 100%;
            padding-bottom: 100%;
            /* Creates 1:1 aspect ratio */
            height: 0;
        }

        .instagram-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(189, 148, 90, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-item:hover .instagram-image img {
            transform: scale(1.05);
        }

        .instagram-icon {
            color: #fff;
            font-size: 24px;
        }

        /* Multiple pages carousel indicator */
        .carousel-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-family: "Urbanist", sans-serif;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .carousel-indicator i {
            font-size: 14px;
        }

        /* Navigation buttons */
        .instagram-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-btn:hover {
            background: #BD945A;
            color: #fff;
        }

        .nav-btn.prev {
            margin-left: -25px;
        }

        .nav-btn.next {
            margin-right: -25px;
        }

        .instagram-handle {
            margin-top: 30px;
            font-size: 17px;
            color: #141414;
        }

        .instagram-handle a {
            color: #BD945A;
            text-decoration: none;
            font-weight: 700;
        }

        /* Responsive styles */
        @media (max-width: 991px) {
            .instagram-item {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .section-title {
                font-size: 36px;
                line-height: 42px;
            }
        }

        @media (max-width: 767px) {
            .instagram-item {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .section-padding {
                padding: 80px 0;
            }

            .section-title {
                font-size: 30px;
                line-height: 36px;
            }

            .nav-btn.prev {
                margin-left: 10px;
            }

            .nav-btn.next {
                margin-right: 10px;
            }
        }/* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Urbanist", sans-serif;
            font-size: 17px;
            font-weight: 400;
            line-height: 30px;
            color: #707070;
            overflow-x: hidden;
            letter-spacing: 0.03px;
            background: #fafafa;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Gilda Display", serif;
            font-weight: 400;
            line-height: 1.25em;
            margin: 0 0 15px 0;
            color: #141414;
        }

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

        .section-padding {
            padding: 80px 0;
        }

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

        /* Dining Section */
        .dining-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 50%, #faf8f5 100%);
            position: relative;
            overflow: hidden;
        }

        .dining-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: radial-gradient(ellipse at top, rgba(189, 148, 90, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .section-header {
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .section-label {
            font-family: "Urbanist", sans-serif;
            font-weight: 500;
            color: #BD945A;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
            padding: 0 30px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #BD945A);
        }

        .section-label::before {
            left: 0;
        }

        .section-label::after {
            right: 0;
            background: linear-gradient(90deg, #BD945A, transparent);
        }

        .section-heading {
            font-family: "Gilda Display", serif;
            font-size: 56px;
            line-height: 64px;
            color: #141414;
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 18px;
            line-height: 32px;
            color: #707070;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Dining Items */
        .dining-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .dining-item::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(189, 148, 90, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .dining-item.restaurant::before {
            top: -50px;
            right: -50px;
        }

        .dining-item.cafe::before {
            bottom: -50px;
            left: -50px;
        }

        /* Restaurant: Content Left, Image Right */
        .dining-item.restaurant {
            grid-template-columns: 1fr 1fr;
        }

        /* Cafe: Image Left, Content Right */
        .dining-item.cafe {
            grid-template-columns: 1fr 1fr;
        }

        .dining-item.cafe .dining-image-wrapper {
            order: -1;
        }

        /* Image Slider Container */
        .dining-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

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

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

        .dining-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #BD945A 0%, #a07d4a 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(189, 148, 90, 0.35);
            backdrop-filter: blur(10px);
        }

        .image-overlay-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
            z-index: 5;
            pointer-events: none;
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

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

        .dot.active {
            background: #BD945A;
            width: 32px;
            border-radius: 5px;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        /* Content Side */
        .dining-content {
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .dining-subtitle {
            color: #BD945A;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 3.5px;
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .dining-title {
            font-family: "Gilda Display", serif;
            font-size: 38px;
            line-height: 46px;
            color: #141414;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .dining-tagline {
            color: #BD945A;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: "Urbanist", sans-serif;
        }

        .dining-description {
            font-size: 16px;
            line-height: 26px;
            color: #707070;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .dining-highlights {
            display: none;
        }

        .highlight-item {
            display: none;
        }

        .highlight-icon {
            display: none;
        }

        .dining-features {
            display: none;
        }

        .feature-tag {
            background: linear-gradient(135deg, rgba(189, 148, 90, 0.08) 0%, rgba(189, 148, 90, 0.04) 100%);
            color: #141414;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 13px;
            border: 1.5px solid rgba(189, 148, 90, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: rgba(189, 148, 90, 0.12);
            border-color: rgba(189, 148, 90, 0.4);
            transform: translateY(-2px);
        }

        .feature-tag i {
            color: #BD945A;
            font-size: 14px;
        }

        .dining-cta {
            display: flex;
            gap: 18px;
            margin-top: 20px;
        }

        .btn {
            padding: 18px 38px;
            border: none;
            border-radius: 6px;
            font-family: "Urbanist", sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #BD945A 0%, #a07d4a 100%);
            color: #fff;
            box-shadow: 0 12px 35px rgba(189, 148, 90, 0.25);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #a07d4a 0%, #8d6a3d 100%);
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(189, 148, 90, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: #BD945A;
            border: 2px solid #BD945A;
        }

        .btn-secondary:hover {
            background: #BD945A;
            color: #fff;
            border-color: #BD945A;
        }

        .btn i {
            position: relative;
            z-index: 1;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        /* Info Grid */
        .dining-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
            color: #fff;
            padding: 70px 60px;
            border-radius: 12px;
            margin-top: 100px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .dining-info-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #BD945A, transparent);
        }

        .info-block {
            border-left: 3px solid #BD945A;
            padding-left: 30px;
            position: relative;
        }

        .info-block::before {
            content: '';
            position: absolute;
            left: -3px;
            top: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, #BD945A, transparent);
            transition: height 0.6s ease;
        }

        .info-block:hover::before {
            height: 100%;
        }

        .info-block h3 {
            color: #BD945A;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 20px;
            font-family: "Urbanist", sans-serif;
            font-weight: 600;
        }

        .info-block p {
            font-size: 15px;
            line-height: 28px;
            color: #d0d0d0;
            font-weight: 300;
        }

        .info-block strong {
            color: #fff;
            font-weight: 600;
        }

        .info-block a {
            color: #BD945A;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .info-block a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #BD945A;
            transition: width 0.3s ease;
        }

        .info-block a:hover {
            color: #fff;
        }

        .info-block a:hover::after {
            width: 100%;
        }

        /* Decorative Elements */
        .accent-line {
            position: absolute;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #BD945A 0%, transparent 100%);
            top: 60px;
            left: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .section-padding {
                padding: 100px 0;
            }

            .dining-item {
                grid-template-columns: 1fr;
                gap: 50px;
                margin-bottom: 80px;
            }

            .dining-item.restaurant {
                grid-template-columns: 1fr;
            }

            .dining-item.restaurant .dining-image-wrapper {
                order: -1;
            }

            .dining-item.cafe {
                grid-template-columns: 1fr;
            }

            .dining-item.cafe .dining-image-wrapper {
                order: -1;
            }

            .dining-image-wrapper {
                height: 450px;
            }

            .dining-content {
                padding: 40px 20px;
            }

            .section-heading {
                font-size: 42px;
                line-height: 50px;
            }

            .dining-info-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }

            .section-header {
                margin-bottom: 70px;
            }

            .section-heading {
                font-size: 32px;
                line-height: 40px;
            }

            .dining-title {
                font-size: 36px;
                line-height: 44px;
            }

            .dining-image-wrapper {
                height: 350px;
            }

            .dining-content {
                padding: 30px 0;
            }

            .dining-cta {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .dining-info-grid {
                padding: 45px 25px;
                gap: 35px;
            }

            .dining-item.restaurant .dining-image-wrapper {
                order: -1;
            }

            .dining-item.cafe .dining-image-wrapper {
                order: -1;
            }

            .dining-highlights {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-heading {
                font-size: 28px;
                line-height: 36px;
            }

            .dining-title {
                font-size: 30px;
                line-height: 38px;
            }

            .dining-image-wrapper {
                height: 280px;
            }

            .dining-badge {
                top: 20px;
                right: 20px;
                padding: 10px 20px;
                font-size: 11px;
            }

            .btn {
                padding: 16px 30px;
                font-size: 12px;
            }
        }
         /* Image-Oriented Amenities Section */
            .amenities {
                padding: 70px 0;
                background-color: #f4f1ed;
                position: relative;
            }

            .amenities .section-subtitle {
                font-family: "Urbanist", sans-serif;
                font-weight: 500;
                margin-bottom: 8px;
                color: #BD945A;
                font-size: 13px;
                text-transform: uppercase;
                letter-spacing: 3.5px;
            }

            .amenities .section-title {
                font-family: "Gilda Display", serif;
                font-weight: 400;
                font-size: 38px;
                line-height: 46px;
                color: #141414;
                margin-bottom: 0;
                text-transform: uppercase;
            }

            .amenities-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
                margin-top: 15px;
            }

            .amenity-card {
                position: relative;
                overflow: hidden;
                border-radius: 10px;
                height: 280px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .amenity-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .amenity-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg,
                        rgba(20, 20, 20, 0.75) 0%,
                        rgba(20, 20, 20, 0.65) 50%,
                        rgba(189, 148, 90, 0.4) 100%);
                z-index: 1;
            }

            .amenity-content {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                width: 90%;
                z-index: 2;
            }

            .amenity-icon {
                width: 65px;
                height: 65px;
                background: linear-gradient(135deg, rgba(189, 148, 90, 0.9) 0%, rgba(189, 148, 90, 0.8) 100%);

                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 18px;
                backdrop-filter: blur(10px);
            }

            .amenity-icon i {
                font-size: 28px;
                color: #fff;
            }

            .amenity-card h5 {
                font-family: "Gilda Display", serif;
                font-size: 21px;
                line-height: 28px;
                color: #fff;
                margin-bottom: 10px;
                font-weight: 400;
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }

            .amenity-card p {
                font-family: "Urbanist", sans-serif;
                font-size: 14px;
                line-height: 22px;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 0;
                font-weight: 400;
                text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
            }

            /* Decorative Corner Accent */
            /* .amenity-card::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 50px 50px 0;
                border-color: transparent rgba(189, 148, 90, 0.7) transparent transparent;
                z-index: 3;
            } */

            /* Bottom Accent Line */
            .amenity-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;

                z-index: 3;
            }

            /* Responsive */
            @media (max-width: 1200px) {
                .amenities-grid {
                    grid-template-columns: repeat(4, 1fr);
                    gap: 18px;
                }

                .amenity-card {
                    height: 260px;
                }
            }

            @media (max-width: 992px) {
                .amenities {
                    padding: 60px 0;
                }

                .amenities .section-title {
                    font-size: 34px;
                    line-height: 42px;
                }

                .amenities-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 16px;
                }

                .amenity-card {
                    height: 240px;
                }

                .amenity-icon {
                    width: 58px;
                    height: 58px;
                    margin-bottom: 15px;
                }

                .amenity-icon i {
                    font-size: 24px;
                }

                .amenity-card h5 {
                    font-size: 19px;
                    line-height: 26px;
                }

                .amenity-card p {
                    font-size: 13px;
                    line-height: 20px;
                }
            }

            @media (max-width: 768px) {
                .amenities {
                    padding: 50px 0;
                }

                .amenities .section-title {
                    font-size: 30px;
                    line-height: 38px;
                }

                .amenities-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 14px;
                }

                .amenity-card {
                    height: 220px;
                }

                .amenity-icon {
                    width: 55px;
                    height: 55px;
                    margin-bottom: 12px;
                }

                .amenity-icon i {
                    font-size: 22px;
                }

                .amenity-card h5 {
                    font-size: 18px;
                    margin-bottom: 8px;
                }

                .amenity-card p {
                    font-size: 12px;
                    line-height: 19px;
                }
            }

            @media (max-width: 480px) {
                .amenities {
                    padding: 45px 0;
                }

                .amenities .section-title {
                    font-size: 26px;
                    line-height: 34px;
                }

                .amenities-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 12px;
                }

                .amenity-card {
                    height: 200px;
                }

                .amenity-icon {
                    width: 50px;
                    height: 50px;
                }

                .amenity-icon i {
                    font-size: 20px;
                }

                .amenity-card h5 {
                    font-size: 17px;
                }

                .amenity-card p {
                    font-size: 11px;
                    line-height: 18px;
                }
            }
             /* Meetings & Functions Section Styles */
        .meetings-section {
            background-color: #f8f6f4;
            position: relative;
        }

        .meetings-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: 0 -15px;
        }

        .meetings-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }

        .meetings-image {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }

        .section-subtitle {
            font-family: "Urbanist", sans-serif;
            font-weight: 400;
            margin-bottom: 10px;
            color: #BD945A;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .section-title {
            font-family: "Gilda Display", serif;
            font-weight: 400;
            font-size: 40px;
            line-height: 50px;
            color: #141414;
            position: relative;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title span {
            color: #BD945A;
        }

        .meetings-description {
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 30px;
            color: #707070;
        }

        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }

        .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .image-container:hover img {
            transform: scale(1.03);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            color: #fff;
        }

        .overlay-content h3 {
            font-family: "Gilda Display", serif;
            font-size: 24px;
            color: #fff;
            margin-bottom: 5px;
        }

        .overlay-content p {
            font-family: "Urbanist", sans-serif;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        /* Responsive styles */
        @media (max-width: 991px) {

            .meetings-text,
            .meetings-image {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .meetings-text {
                margin-bottom: 60px;
            }

            .section-title {
                font-size: 36px;
                line-height: 42px;
            }
        }

        @media (max-width: 767px) {
            .section-padding {
                padding: 80px 0;
            }

            .section-title {
                font-size: 30px;
                line-height: 36px;
            }
        }