/* ===== 1. VARIABLES & BASE STYLES ===== */
:root {
    /* Primary Colors */
    --primary-color: #0097cf;
    --accent-color: #0082b3;
    --light-color: #ffffff;
    --dark-color: #333333;
    --text-color: #4a4a4a;
    --gray-color: #f5f5f5;
    --footer-bg: #1a1a1a;
    --hotel-bg: #f5f5f599;
    --hotel-inner-bg: #f5f5f5;

    /* Semantic Colors */
    --nav-link-color: var(--light-color);
    --text: var(--light-color);
    --accent: var(--primary-color);
    --footer-text: var(--light-color);
    --footer-secondary: #cccccc;
    --footer-muted: #888888;
    --icon-muted: var(--footer-muted);

    /* Transparent Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-overlay: var(--shadow-dark);
    --gradient-dark: rgba(0, 0, 0, 0.6);
    --header-scrolled: rgba(255, 255, 255, 0.75);
    --gradient-light: var(--border-hover);
    --dropdown-bg: rgba(255, 255, 255, 0.98);
    --dropdown-shadow: var(--shadow-color);
    --dropdown-hover: rgba(0, 151, 207, 0.1);
    --counter-bg: var(--dropdown-hover);

    /* Social Media Colors */
    --social-instagram: #d6249f;
    --social-facebook: #4267B2;
    --social-youtube: #FF0000;
    --social-vk: #4C75A3;
    --instagram-gradient-1: #fdf497;
    --instagram-gradient-2: #fd5949;
    --instagram-gradient-3: #285AEB;
	
	--primary-blue: #1E90FF;
            --primary-blue-dark: #1873CC;
            --text-dark: #2c3e50;
            --text-muted: #5a6c7d;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-mono: 'Chivo Mono', monospace;

    /* Font Sizes - Desktop */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 2rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 3rem;

    /* Font Sizes - Tablet */
    --text-lg-tablet: 1.75rem;
    --text-xl-tablet: 1.125rem;
    --text-2xl-tablet: 1.375rem;
    --text-3xl-tablet: 2.5rem;

    /* Font Sizes - Mobile */
    --text-lg-mobile: 1.5rem;
    --text-xl-mobile: 1rem;
    --text-2xl-mobile: 1.25rem;
    --text-3xl-mobile: 2rem;

    /* Font Sizes - Small Mobile */
    --text-lg-small: 1.25rem;
    --text-xl-small: 0.875rem;
    --text-2xl-small: 1.125rem;
    --text-3xl-small: 1.75rem;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing - Desktop */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Spacing - Mobile */
    --space-xs-mobile: 0.2rem;
    --space-sm-mobile: 0.4rem;
    --space-md-mobile: 0.75rem;
    --space-lg-mobile: 1.25rem;
    --space-xl-mobile: 1.5rem;
    --space-2xl-mobile: 2rem;

    /* Grid & Layout */
    --container-padding: 2rem;
    --grid-gap: 2rem;
    --grid-columns-lg: 4;
    --grid-columns-md: 3;
    --hotel-image-width: 160px;

    /* Grid & Layout - Tablet */
    --container-padding-tablet: 1.5rem;
    --grid-gap-tablet: 1.5rem;
    --grid-columns-tablet: 2;
    --hotel-image-width-tablet: 140px;

    /* Grid & Layout - Mobile */
    --container-padding-mobile: 1rem;
    --grid-gap-mobile: 1rem;
    --grid-columns-mobile: 1;
    --hotel-image-width-mobile: 120px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-light);
    line-height: var(--line-height-normal);
    color: var(--dark-color);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    line-height: var(--line-height-tight);
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.color-primary{
    color: var(--primary-color);
}
.font-mono {
    font-family: var(--font-mono) !important;
    letter-spacing: -0.5px;
}

.pretitle {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: var(--font-normal);
    line-height: var(--line-height-normal);
}

.section-description {
    font-size: var(--text-base);
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: var(--font-light);
    line-height: var(--line-height-normal);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    text-align: center;
    font-weight: var(--font-semibold);
    line-height: var(--line-height-tight);
}

/* 2. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(255 255 255 / 45%);
    backdrop-filter: blur(10px);
}
.topbar{
     opacity: 0;
  height: 0;
  overflow: hidden;
  background: #f6f6f6;
  transition: opacity 0.3s ease, height 0.3s ease;
}
.header.scrolled .topbar{
    opacity: 1;
    height:38px;
}
.topbar .container{
    max-width: 1400px;
    height: 100%;
    display: flex;
    padding-top: 5px;
    padding-bottom: 10px;
    
	justify-content: flex-end;
}
.topbar a{
    color:#333;
    text-decoration:none;
    font-weight:300;
}
.topbar .phone{
    margin-left:15px;
}
.topbar a i{
	margin-right:5px;
}
.navbar {
    height: 90px;
    transition: var(--transition);
    will-change: transform;
    transform: translateZ(0);
}

.navbar .container {
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    flex: 0 0 auto;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}
.page .navbar-brand .logo {
    filter: brightness(0) invert(1);
}
.page .header.scrolled .logo{
    filter:none;
}
.navbar-collapse {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.navbar-nav .dropdown>ul>li>a,.navbar-nav .dropdown>ul>li>span{
	font-weight:700;
}
.navbar-nav .dropdown>ul>li>ul>li>a{
	font-weight:400;
}
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header.scrolled {
    background: var(--header-scrolled);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.header.scrolled .navbar {
    height: 70px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-overlay), var(--gradient-dark));
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 0 2px 4px var(--shadow-dark);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: var(--font-light);
    text-shadow: 0 1px 2px var(--shadow-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Indicator Styles */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--light-color);
            border-radius: 12px;
            position: relative;
            margin: 0 auto 8px;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: var(--light-color);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll-wheel 2s infinite;
        }

        .scroll-text {
            color: var(--light-color);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px var(--shadow-dark);
            font-weight: var(--font-light);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes scroll-wheel {
            0% {
                opacity: 1;
                top: 6px;
            }
            50% {
                opacity: 0.5;
                top: 14px;
            }
            100% {
                opacity: 0;
                top: 22px;
            }
        }

        /* Hover effect */
        .scroll-indicator:hover {
            transform: translateX(-50%) scale(1.1);
            transition: transform 0.3s ease;
        }
.subheader-bg{
    position:relative;
    background-size: cover;
    background-position: center center;
}
.subheader-bg:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: #0097cfbf;
}
.subheader-bg h1{
    color:#fff;
}
.subheader-bg .container-fluid{
    position:relative;
    z-index:1;
}
.breadcrumb-item a{
    color: #fff;
    text-decoration: none;

}
.breadcrumb-item.active{
    color: #fff;
    text-decoration: none;

}
/* 3. Rooms Section */
.rooms {
    padding-top: 5rem;
    background-color: var(--light-color);
}

.room-card {
    position: relative;
    margin-bottom: 2rem;
    background: var(--light-color);
}

.room-card .room-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.room-card .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.room-card .room-image .image-main {
    opacity: 1;
}

.room-card .room-image .image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-image .image-main {
    opacity: 0;
}

.room-card:hover .room-image .image-hover {
    opacity: 1;
}

.room-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.room-info a {
    text-decoration:none;
}

.room-info h3 {
    font-size: var(--text-2xl);
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    transition: color 0.3s ease;
}

.room-info:hover h3 {
    color: var(--accent-color);
}

.room-info p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    height: 4.8em;
    line-height: var(--line-height-normal);
}

.rooms-header {
    text-align: center;
    position: relative;
}


.room-facilities{
    display:flex;
}
.room-facilities .facility-item{
        display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px 0px;
    padding-right: 15px;
    margin-right: 15px;
}
.room-facilities .facility-item i{

font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.section-navigation {
    position: absolute;
    right: 0;
    top: 35px;
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.section-navigation .swiper-button-prev,
.section-navigation .swiper-button-next {
    position: static;
    width: 35px;
    height: 35px;
    margin: 0;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.section-navigation .swiper-button-prev:hover,
.section-navigation .swiper-button-next:hover {
    color: var(--accent-color);
}

.section-navigation .swiper-button-prev::after,
.section-navigation .swiper-button-next::after {
    font-size: 30px;
    font-weight: normal;
}

.rooms-slider .swiper-pagination {
    display: none;
}

.rooms-slider {
    position: relative;
    padding: 1rem;
    margin: -1rem;
}

.swiper-slide {
    height: auto;
}

.title-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.room-card .btn-room-1,
.room-card .btn-room-2,
.room-card .btn-room-3,
.room-card .btn-room-4,
.room-card .btn-room-5 {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: color 0.3s ease;
    z-index: 1;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    display: inline-block;
    transform: translateZ(0);
    will-change: transform;
}

.room-card .btn-room-1::before,
.room-card .btn-room-2::before,
.room-card .btn-room-3::before,
.room-card .btn-room-4::before,
.room-card .btn-room-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: transform 0.3s ease;
    z-index: -1;
}

.room-card .btn-room-1:hover,
.room-card .btn-room-2:hover,
.room-card .btn-room-3:hover,
.room-card .btn-room-4:hover,
.room-card .btn-room-5:hover {
    color: var(--light-color);
}

.room-card .btn-room-1:hover::before,
.room-card .btn-room-2:hover::before,
.room-card .btn-room-3:hover::before,
.room-card .btn-room-4:hover::before,
.room-card .btn-room-5:hover::before {
    transform: translateX(100%);
}

.btn-reservation,
.scrolled .btn-reservation {
    background: var(--primary-color);
}

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

.btn-reservation {
    position: relative;
    color: var(--light-color);
    transition: all 0.3s ease;
    z-index: 1;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-reservation:hover::before {
    width: 100%;
    left: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* 4. Counter Section */
.counter-section {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--border-color) 0%, var(--gradient-light) 100%);
    pointer-events: none;
}

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

.counter-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: var(--primary-color);
}

.counter-item i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--primary-color);
}

.counter-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-light);
    line-height: var(--line-height-tight);
    color: var(--dark-color);
    margin-bottom: 0;
}

.counter-label {
    font-size: var(--text-sm);
    font-weight: var(--font-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: var(--text-color);
}

/* 5. Explore Section */
.explore {
    padding: 5rem 0 4rem;
    background-color: var(--light-color);
}

.explore-slider {
    overflow: hidden;
}
.explore-slider .section-navigation{
    top:242px;
    width:100%;
    padding:0px 10px;
    justify-content: space-between;
}
.explore-slider .section-navigation .swiper-button-prev, .explore-slider .section-navigation .swiper-button-next{
    background: #ffffff;
    border-radius: 50%;
}
.explore-slider .section-navigation .swiper-button-prev::after, .explore-slider .section-navigation .swiper-button-next::after {
    font-size: 15px;
    font-weight: bold;
}
.explore .room-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.explore .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.explore .room-info {
    text-align: center;
    padding: 2rem 0 0;
}

.explore .room-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
}

.explore .room-info p {
    font-size: var(--text-base);
    color: var(--text-color);
    margin: 0;
    line-height: var(--line-height-normal);
	text-align:justify;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

/* 6. Inclusions Section */
.inclusions {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.inclusion-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: 0;
    will-change: transform;
    transform: translateZ(0);
    background: none;
    border: none;
    outline:none;
}

.inclusion-item:hover {
    transform: translateY(-8px) scale(1.03);
    top: 0;
}

.inclusion-item:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.2s;
}

.inclusion-icon {
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.inclusion-icon i {
    font-size: var(--text-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    transform-origin: center;
    color: var(--icon-muted);
    line-height: var(--line-height-tight);
}

.inclusion-item:hover .inclusion-icon i {
    transform: scale(2);
    color: var(--primary-color);
}

.inclusion-title {
    font-size: var(--text-base);
    font-weight: var(--font-light);
    margin: 0;
    color: var(--dark-color);
    font-family: var(--font-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inclusion-item:hover .inclusion-title {
    color: var(--accent-color);
}

/* 7. Hotels Section */
.hotels {
    padding: var(--space-2xl) 0;
    background-color: var(--hotel-bg);
}
.hotels h2{
    font-size:20px;
}

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

.hotel-card {
    display: flex;
    background-color: var(--hotel-inner-bg);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: .5rem;
}

.hotel-card:hover {
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--border-hover);
}

.hotel-image {
    width: 120px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

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

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

.hotel-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.hotel-info {
    margin-bottom: auto;
}

.hotel-name {
    color: var(--dark-color);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    margin: 0 0 0.25rem 0;
    line-height: var(--line-height-tight);
}

.hotel-location {
    color: var(--footer-muted);
    font-size: var(--text-xs);
    font-weight: var(--font-normal);
    display: block;
    line-height: var(--line-height-normal);
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-size: var(--text-xs);
    font-weight: var(--font-normal);
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.hotel-card:hover .detail-link {
    color: var(--primary-color);
}

.hotel-card:hover .detail-link svg {
    transform: translateX(5px);
}

/* 8. Footer */
.footer {
    padding: var(--space-2xl) 0;
    background-color: var(--primary-color);
    color: var(--footer-text);
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    width: 30%;
}
.links{
    width: 46%;
}
.barcodes{
    width: 24%;
}

.footer-description {
    color: var(--footer-secondary);
    line-height: var(--line-height-normal);
    margin-top: 1rem;
}

.footer-heading {
    color: var(--footer-text);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background-color: var(--light-color);
}

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

.footer-link {
    color: var(--light-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-color);
}


.contact-info {
    margin-bottom: 2rem;
}
.contact-info .field-label{
    display:block;
	font-weight:500;
}
.contact-info a{
    text-decoration:none;
	color:#fff;
}
.contact-title {
    color: var(--footer-text);
    font-size: var(--text-sm);
    margin-bottom: 1rem;
}

.contact-address {
    color: var(--footer-secondary);
    line-height: var(--line-height-normal);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--footer-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.contact-info .address{
    display:flex;
}
.contact-info .address i{
    margin-top: 7px;
    margin-right: 6px;
}
    
.contact-info .address-link{
    color:#fff;
    text-decoration:none;
}
.contact-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover .fa-instagram {
    color: var(--light-color);
}

.social-link:hover:has(.fa-instagram) {
    background: var(--social-instagram);
    background: radial-gradient(circle at 30% 107%, var(--instagram-gradient-1) 0%, var(--instagram-gradient-1) 5%, var(--instagram-gradient-2) 45%, var(--social-instagram) 60%, var(--instagram-gradient-3) 90%);
    transform: translateY(-2px);
}

.social-link:hover .fa-google {
    color: var(--light-color);
}

.social-link:hover:has(.fa-google) {
    background: #4285f4;
    transform: translateY(-2px);
}
.social-link:hover .fa-facebook-f {
    color: var(--light-color);
}

.social-link:hover:has(.fa-facebook-f) {
    background: #4267B2;
    transform: translateY(-2px);
}
.social-link:hover .fa-youtube {
    color: var(--light-color);
}

.social-link:hover:has(.fa-youtube) {
    background: var(--social-youtube);
    transform: translateY(-2px);
}

.social-link:hover .fa-comment-dots {
    color: var(--light-color);
}

.social-link:hover:has(.fa-comment-dots) {
    background: #00af87;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--light-color);
    margin: 0;
}

.turkbilisim-link {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.turkbilisim-link:hover {
    color: var(--footer-text);
}

.navbar-toggler {
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    border: none;
    background: var(--primary-color);
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon::after,
.navbar-toggler-icon::before {
    display: none !important;
    content: none !important;
    background-image: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    background-image: none !important;
}

.navbar-toggler .navbar-toggler-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--light-color);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navbar-toggler .navbar-toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler .navbar-toggler-icon span:nth-child(2) {
    top: 7px;
    width: 70%;
}

.navbar-toggler .navbar-toggler-icon span:nth-child(3) {
    top: 14px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.header.scrolled .dropdown-toggle .arrow,
.header.scrolled .language-selector .nav-link .arrow {
    border-color: var(--dark-color);
}

.navbar-toggler:hover .navbar-toggler-icon span {
    background: var(--light-color);
}

.navbar-toggler[aria-expanded="true"]:hover .navbar-toggler-icon span {
    background: var(--light-color);
}

.navbar-collapse {
    transition: transform 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    transform: translateY(-10px);
}

.navbar-collapse.show {
    transform: translateY(0);
}

.nav-link {
    color: var(--light-color);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: 0.5rem 1rem;
    transition: all var(--transition);
}

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

.header.scrolled .nav-link {
    color: var(--dark-color);
}

.header.scrolled .nav-link:hover {
    color: var(--dark-color);
}

.nav-item.dropdown .dropdown-toggle .arrow,
.language-selector .nav-link .arrow {
    border-color: var(--light-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 5px;
    transform: rotate(45deg);
    transition: all var(--transition);
    position: relative;
    top: -2px;
}

.nav-item.dropdown:hover .arrow,
.nav-item.dropdown.show .arrow,
.language-selector:hover .nav-link .arrow,
.language-selector.show .nav-link .arrow {
    transform: rotate(-135deg);
    top: 1px;
}

.header.scrolled .dropdown-toggle .arrow,
.header.scrolled .language-selector .nav-link .arrow {
    border-color: var(--dark-color);
}

.language-selector .nav-link {
    color: var(--light-color);
}

.language-selector .nav-link:hover {
    color: var(--light-color);
}

.header.scrolled .language-selector .nav-link {
    color: var(--dark-color);
}

.header.scrolled .language-selector .nav-link:hover {
    color: var(--dark-color);
}

.font-option-1 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: var(--font-semibold);
}

.font-option-2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.01em;
    font-weight: var(--font-semibold);
}

.font-option-3 {
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    font-weight: var(--font-normal);
}

.font-option-4 {
    font-family: 'Gilda Display', serif;
    letter-spacing: 0.01em;
    font-weight: var(--font-normal);
}

.font-option-5 {
    font-family: 'Unna', serif;
    letter-spacing: 0;
    font-weight: var(--font-bold);
}

.section-title.font-option-1 { 
    color: var(--dark-color); 
}

.language-selector .dropdown-item {
    font-weight: var(--font-normal);
}

.dropdown-item.active {
    color: var(--light-color);
    position: relative;
    padding-right: 2rem;
}

.dropdown-item.active::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid var(--light-color);
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}

.dropdown-item.active:hover {
    color: var(--light-color);
}

.nav-link:focus, .nav-link:hover {
    color: var(--light-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.dropdown-item:active {
    color: var(--dark-color);
}

.language-selector .nav-link::after {
    display: none;
}

.language-selector .nav-link:hover::after {
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.language-selector:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu {
    margin-top: 0;
    padding: 0.35rem;
    background: var(--dropdown-bg);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px var(--dropdown-shadow);
    min-width: 220px;
}

.language-selector .dropdown-menu {
    min-width: 110px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--dark-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--dropdown-hover);
    transition: width 0.3s ease;
}

.dropdown-item:hover::before {
    width: 100%;
}

.dropdown-toggle::after {
    display: none;
}

.nav-item.dropdown .dropdown-toggle .arrow,
.language-selector .nav-link .arrow {
    border: solid var(--nav-link-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 5px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    top: -2px;
}

.nav-item.dropdown:hover .arrow,
.nav-item.dropdown.show .arrow,
.language-selector:hover .nav-link .arrow,
.language-selector.show .nav-link .arrow {
    transform: rotate(-135deg);
    top: 1px;
}

.header.scrolled .dropdown-toggle .arrow,
.header.scrolled .language-selector .nav-link .arrow {
    border-color: var(--dark-color);
}

.nav-item.dropdown:hover .dropdown-menu,
.language-selector:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item.active {
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
    background: transparent;
    color: var(--dark-color);
}

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

.welcome {
    padding: 6rem 0;
    background: var(--light-color);
}

.stats {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--text-sm);
}

.services {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    transition: var(--transition);
}

.service-card i {
    font-size: var(--text-3xl);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: var(--line-height-tight);
}

.service-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

.services .room-card img,.service-detail .room-card img, .galleries .room-card img{
    transition: transform 0.5s ease;
}

/* Gallery Styles */
.gallery {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

.gallery-item {
    display: block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.gallery-inner {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateZ(0);
    loading: lazy;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-inner {
    border-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    
}

@media (max-width: 1200px) {
    
}

@media (max-width: 992px) {
    .gallery-image-container img {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .gallery-image-container img {
        height: 130px;
    }
    
}

@media (max-width: 576px) {
    .gallery-image-container img {
        height: 120px;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.review-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.review-grid::-webkit-scrollbar {
    display: none;
}

.review-card-wrapper {
    flex: 0 0 400px;
    position: relative;
}

.review-card {
    position: relative;
    background: #fff;
    border: 2px solid rgba(0, 151, 207, 0.15);
    padding: 1.75rem;
    transition: all 0.3s ease;
    border-radius: 16px;
    margin-top: 1.5rem;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 151, 207, 0.15);
    transition: all 0.3s ease;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1;
}

.review-card:hover {
    border-color: var(--primary-color);
}

.review-card:hover::after {
    border-top-color: var(--primary-color);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 12px;
    letter-spacing: 1px;
}

.review-stars i {
    margin-right: 1px;
}

.review-content {
    color: var(--text-color);
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
    flex-grow: 1;
}

.review-author {
    margin-left: 25px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--primary-color);
    font-size: var(--text-base);
    margin: 0;
    font-weight: var(--font-medium);
}

.author-location {
    color: var(--text-color);
    font-size: var(--text-sm);
    margin: 0.25rem 0 0;
    opacity: 0.75;
}

@media (max-width: 1200px) {
    .review-card-wrapper {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .review-card-wrapper {
        flex: 0 0 300px;
    }
    
    .review-card {
        padding: 1.5rem;
        height: 240px;
    }
}
.certificates{
    padding-bottom:7rem;
    position:relative;
}
.certificates-header{
    position:relative;
}
.certificate-card{
    padding:0px;
    
}
.certificate-image{
    text-align:center;
    background:url(../images/cert-background.webp) no-repeat center center;
    background-size:contain;
}
.certificate-card img{
    height:55px;
}
.certificate-card a{
    text-decoration:none;
    color:inherit;
        outline: none !important;
}
.cert-title {
    font-size: 16px;
    line-height: 16px;
    font-weight:400;
    margin-top:10px;
    margin-bottom:10px;
    height:48px;
}
.cert-subtitle {
        font-size: 14px;
    line-height: 14px;
    color: #666;
}
/* Login Page */
.login-page label{
    font-weight:500;
}

.login-page .header {
    position: relative;
    display: none;
}

.access-error .icon {
    font-size: 60px;
    line-height: 65px;
    color: #dc3545;
    margin-bottom: 20px;
}
        
.access-error h2 {
    font-size: 28px;
    color: #343a40;
    margin-bottom: 15px;
}
        
.access-error p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.fact-sheets .intro-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #444;
            font-size: 16px;
            line-height: 1.7;
        }
        
.fact-sheets .factsheet-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 50px;
        }
        
.fact-sheets .factsheet-card {
            width: 270px;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
.fact-sheets .factsheet-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 155, 204, 0.2);
        }
        
.fact-sheets .factsheet-header {
            background-color: #0099cc;
            padding: 30px 20px;
            text-align: center;
            color: white;
            position: relative;
        }
        
.fact-sheets .factsheet-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
.fact-sheets .factsheet-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color:#fff;
        }
        
.fact-sheets .factsheet-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }
        
.fact-sheets .factsheet-body {
            padding: 25px;
            text-align: center;
        }
        
.fact-sheets .factsheet-info {
            color: #555;
            font-size: 14px;
            margin-bottom: 20px;
            min-height: 60px;
        }
        
.fact-sheets .file-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-bottom: 20px;
            font-size: 13px;
            color: #777;
        }
        
.fact-sheets .download-btn {
            display: inline-block;
            background-color: #0099cc;
            color: white;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            font-size: 15px;
        }
        
.fact-sheets .download-btn:hover {
    background-color: #007eaa;
    transform: scale(1.05);
}
        
.fact-sheets .language-flag {
    display: inline-block;
    width: 25px;
    height: 17px;
    background-size: cover;
}
        

        
.fact-sheets .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #0099cc;
    margin-bottom: 40px;
    position: relative;
}
        
.fact-sheets .section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #0099cc;
    margin: 15px auto 0;
}
        
.fact-sheets .extra-info {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}
        
.fact-sheets .contact-info {
    text-align: center;
    margin-top: 50px;
}
        
.fact-sheets .contact-title {
    font-size: 22px;
    color: #0099cc;
    margin-bottom: 15px;
}
        
.fact-sheets .contact-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
        
.fact-sheets .contact-btn {
    display: inline-block;
    background-color: transparent;
    color: #0099cc;
    border: 2px solid #0099cc;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}
        
.fact-sheets .contact-btn:hover {
    background-color: #0099cc;
    color: white;
}
        
.fact-sheets .updated-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.fact-sheets .factsheet-container {
        flex-direction: column;
        align-items: center;
    }
            
.fact-sheets .factsheet-card {
        width: 100%;
        max-width: 350px;
    }
            
.fact-sheets .header-gradient {
        height: 200px;
    }
            
.fact-sheets .page-title {
        font-size: 32px;
    }
}



        
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
        
.contact-page .contact-info {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom:0px;
}
        
.contact-page .contact-info h2 {
    color: #0099cc;
    margin-top: 0;
}
        
.contact-page .info-item {
    margin-bottom: 20px;
}
        
.contact-page .info-item h3 {
    margin-bottom: 5px;
}
        
.contact-page .info-item p {
    margin: 5px 0;
}
.contact-page .info-item p a{
      color:inherit;
      text-decoration:none;
} 
.contact-page .info-item p .field-label{
    display: inline-block;
    width: 100px;
    margin-right:10px;
    font-weight:400;
}
.contact-page .info-item p .field-label:after{
    content:':';
    float: right;
}

.contact-page .info-item p a.phone-number{
      font-family: 'Chivo Mono';
}
.contact-page .social-link {
    background:#0097cf;
    color:#fff;
}
        

        
.contact-page .contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
        
.contact-page .contact-form h2 {
    color: #0099cc;
    margin-top: 0;
}
.contact-page .form-group{
    margin-bottom:20px;
}
.contact-page .form-group label{
    font-weight:500;
}
.contact-page .submit-btn {
    background-color: #0099cc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}
        
.contact-page .map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
}
        
.contact-page .map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
        
@media (max-width: 768px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop (1201px and above) */
@media (min-width: 1201px) {
    .rooms-grid { grid-template-columns: repeat(3, 1fr); }
    .hotels-grid { grid-template-columns: repeat(4, 1fr); }
    .inclusions-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Tablet and Below (1200px and below) */
@media (max-width: 1200px) {
    .hero-title { font-size: clamp(2rem, 4vw, 3rem); }
    .section-title { font-size: calc(var(--text-2xl) * 0.9); }
    .hotel-image { 
        width: var(--hotel-image-width-tablet);
        min-width: var(--hotel-image-width-tablet);
    }
    .hotel-name { font-size: var(--text-lg); }
}

@media (max-width: 991px) {
    .navbar { height: 80px;}
    .header.scrolled .navbar{height:70px;padding:4px 0px;}
    .header.scrolled .nav-link,.header.scrolled .nav-link:hover{
    color: var(--light-color);
}
.header.scrolled .nav-link .arrow {
    border-color: var(--light-color);
}
    .navbar-brand .logo {
        height: 53px;
        width: auto;
        transition: var(--transition);
    }
    .header.scrolled .navbar-brand .logo{
        height:40px;
    }
    .navbar-collapse{
        position: fixed;
        top: 80px;
        left: 0px;
        width: 100%;
        z-index: 1000;
        background: rgb(0 151 207);
            flex-direction: column;
            align-items: flex-start;
    }
    .header.scrolled .navbar-collapse{
        top:70px;
    }
    .navbar-collapse .navbar-nav{
        align-items: flex-start;
        width: 100%;
    }
    .navbar-collapse .navbar-nav .dropdown-menu{
        display: block;
        margin-left: 10px;
        background: none;
        box-shadow: none;
    }
    .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item{
        color:#fff;
    }
    .language-selector{
        display:none;
    }
    .btn-reservation{
        margin-top:0;
    }
    .hero-title { font-size: clamp(1.75rem, 3vw, 2.5rem); }
    .section-title { font-size: calc(var(--text-2xl) * 0.8); }
    .room-info h3 { font-size: calc(2rem * 0.9); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .hotels-grid { grid-template-columns: repeat(3, 1fr); }
    .counter-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .counter-item i { font-size: 3rem; }
    .counter-number { font-size: 3.5rem; }
    .explore .room-image { height: 350px; }
    .inclusions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .btn-reservation {
        margin-top: 1rem;
        width: 100%;
        order: 999;
    }
    .navbar-collapse { padding: 1rem 0; }
    .section-navigation{
        width: 100%;
        justify-content: space-between;
        top:50%;
        padding: 0px 15px;
    }
    .section-navigation .swiper-button-prev, .section-navigation .swiper-button-next{
        background: #ffffff99;
        border-radius: 50%;
    }
    .section-navigation .swiper-button-prev::after, .section-navigation .swiper-button-next::after{
         font-size: 15px;
    }
    .rooms,.explore{
        position:relative;
    }
    .rooms-header{
        position:unset;
    }
    
    .certificates-header{
        position:unset;
    }
    .certificate-card{
        padding:0 50px;
    }
    .footer-grid{
        flex-direction: column;
    }
    
    
    .footer-brand,.links,.barcodes{
        width: 100%;
    }
    .links .footer-nav{
        text-align: left;
        padding: 0px 10px;
    }
    .links .footer-nav .footer-heading{
        font-size: 18px;
    }
    .links .footer-nav .footer-link{
        font-size: 12px;
    }
    .social-links{
        justify-content: space-evenly;
    }
    .contact-info .address-link{
        text-align:left;
    }
    .contact-info .address{
        justify-content: center;
    }
    
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .navbar { height: 80px; }
    .hero-title { font-size: clamp(1.5rem, 2vw, 2rem); }
    .section-title { font-size: calc(var(--text-2xl) * 1); }
    .hero-description,
    .section-description { font-size: var(--text-base); }
    .room-info h3 { font-size: calc(2rem * 0.7); }
    .room-info p { font-size: var(--text-base); }
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-item:nth-child(2n)::after { display: none; }
    .counter-item:nth-child(-n+2) { border-bottom: 1px solid var(--primary-color); }
    .explore .room-image { height: 300px; }
    .explore-slider .section-navigation{
        top:125px;
    }
    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .inclusion-item{
        padding: 0.5rem;
    }
    .inclusion-icon i { font-size: var(--text-xl); }
    .inclusion-title { font-size: var(--text-sm); }
    .inclusion-item:hover { transform: translateY(-4px) scale(1.02); }
    .inclusion-item:hover .inclusion-icon i { transform: scale(1.1); }
    .footer-grid { gap: 2rem; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
        margin: 0 auto;
    }
	
	.contact-page .info-item p .field-label{
		display:block;
	}
	
	.topbar .container{
	    flex-direction: row;
        align-items: center;
		justify-content: space-between;
		    
	}
	
	.header.scrolled .topbar {
        opacity: 1;
        height: 54px;
    }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
    .navbar { height: 80px; }
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hotels-grid { grid-template-columns: 1fr; }
    .hotel-card { flex-direction: column; }
    .hotel-image {
        width: 100%;
        height: 180px;
    }
    .hotel-content { padding: 1rem; }
    .hotel-name { font-size: var(--text-lg); }
    .counter-grid { grid-template-columns: 1fr; }
    .counter-item::after { display: none; }
    .counter-item:not(:last-child) { border-bottom: 1px solid var(--primary-color); }
    .explore .room-image { height: 250px; }
    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .inclusion-icon i {
        font-size: var(--text-lg);
        margin-bottom: var(--space-sm-mobile);
    }
    .inclusion-title {
        font-size: var(--text-base);
        line-height: var(--line-height-tight);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand { justify-content: center; }
}



.static-swiper .swiper-wrapper {
    display: flex;
    gap: 10px;
}

.static-swiper .swiper-slide {
    flex: 1;
}

.static-swiper .swiper-pagination,
.static-swiper .swiper-button-next,
.static-swiper .swiper-button-prev {
    display: none !important;
}
.dropdown-menu>li>ul{
	list-style:none;
}

.intro-section .section-title{
	font-size:34px;
}

.services-slider {
    overflow: hidden;
}
.services-slider .section-navigation{
    top:242px;
    width:100%;
    padding:0px 10px;
    justify-content: space-between;
}
.services-slider .section-navigation .swiper-button-prev, .services-slider .section-navigation .swiper-button-next{
    background: #ffffff;
    border-radius: 50%;
}


.document-btn{
	position: relative;
    color: var(--light-color);
	background:var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1;
    padding: 1rem 1.25rem;
    border-radius: 0;
    font-size: var(--text-md);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.reviews .TA_selfserveprop>div{
    width:100% !important;
}

.TA_links{
    display:none;
} 


/* Holiday Garden Social Media Widget - Bootstrap 5 Safe */
.hg-social-follow-section {
  padding: 0 !important;
  text-align: center;
  width: 100% !important;
}

.hg-social-grid {
  display: grid !important;
  grid-template-columns: 50% 50% !important;
  grid-template-rows: 1fr 1fr !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Gradient Border Efekti */
.hg-social-grid::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255,255,255,0.3) 20%, 
    rgba(255,255,255,0.8) 50%, 
    rgba(255,255,255,0.3) 80%, 
    transparent 100%) !important;
  z-index: 10 !important;
  transform: translateY(-50%) !important;
}

.hg-social-grid::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 3px !important;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255,255,255,0.3) 20%, 
    rgba(255,255,255,0.8) 50%, 
    rgba(255,255,255,0.3) 80%, 
    transparent 100%) !important;
  z-index: 10 !important;
  transform: translateX(-50%) !important;
}

.hg-social-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  text-decoration: none !important;
  color: #888 !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: 1.03 !important;
  min-height: 200px !important;
  border: none !important;
  width: 100% !important;
}

.hg-social-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.hg-icon-container {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 15px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  z-index: 2 !important;
}

.hg-icon-container i {
  font-size: 2.2rem !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.hg-social-text {
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Google - Başlangıçta Çok Pastel */
.hg-google {
  background: rgba(66, 133, 244, 0.1) !important;
}

.hg-google::before {
  background: linear-gradient(135deg, #ea4335, #fbbc05) !important;
}

.hg-google .hg-icon-container {
  background: rgba(66, 133, 244, 0.1) !important;
  border: 1px solid rgba(66, 133, 244, 0.2) !important;
}
/* Google - Başlangıçta Çok Pastel */
.hg-facebook {
  background: rgba(66, 103, 178, 0.1) !important;
}

.hg-facebook::before {
  background: linear-gradient(135deg, #4267B2, #fbbc05) !important;
}

.hg-facebook .hg-icon-container {
  background: rgba(66, 103, 178, 0.1) !important;
  border: 1px solid rgba(66, 103, 178, 0.2) !important;
}
.hg-facebook .hg-icon-container i {
  color: rgba(66, 103, 178, 0.4) !important;
}

/* Instagram - Başlangıçta Çok Pastel */
.hg-instagram {
  background: rgba(225, 48, 108, 0.1) !important;
}

.hg-instagram::before {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcaf45) !important;
}

.hg-instagram .hg-icon-container {
  background: rgba(225, 48, 108, 0.1) !important;
  border: 1px solid rgba(225, 48, 108, 0.2) !important;
}

.hg-instagram .hg-icon-container i {
  color: rgba(225, 48, 108, 0.4) !important;
}

/* YouTube - Başlangıçta Çok Pastel */
.hg-youtube {
  background: rgba(255, 0, 0, 0.1) !important;
}

.hg-youtube::before {
  background: linear-gradient(135deg, #ff0000, #cc0000) !important;
}

.hg-youtube .hg-icon-container {
  background: rgba(255, 0, 0, 0.1) !important;
  border: 1px solid rgba(255, 0, 0, 0.2) !important;
}

.hg-youtube .hg-icon-container i {
  color: rgba(255, 0, 0, 0.4) !important;
}

/* TripAdvisor - Başlangıçta Çok Pastel */
.hg-tripadvisor {
  background: rgba(0, 175, 135, 0.1) !important;
}

.hg-tripadvisor::before {
  background: linear-gradient(135deg, #00af87, #34e89e) !important;
}

.hg-tripadvisor .hg-icon-container {
  background: rgba(0, 175, 135, 0.1) !important;
  border: 1px solid rgba(0, 175, 135, 0.2) !important;
}

.hg-tripadvisor .hg-icon-container i {
  color: rgba(0, 175, 135, 0.4) !important;
}

/* Hover Efektleri */
.hg-social-card:hover::before {
  opacity: 1 !important;
}

.hg-social-card:hover .hg-icon-container {
  background: rgba(255,255,255,0.2) !important;
  transform: rotate(360deg) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

.hg-social-card:hover .hg-icon-container i {
  color: white !important;
}

.hg-social-card:hover .hg-social-text {
  color: white !important;
  transform: translateY(-3px) !important;
}

.hg-social-card:hover {
  z-index: 5 !important;
}

/* Platform Hover Renkleri */
.hg-google:hover {
  background: linear-gradient(135deg, #fbbc05, #ea4335, #4285f4, #34a853) !important;
  background-size: 200% 200% !important;
  animation: hg-googleGradient 2s ease infinite !important;
}

.hg-instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80) !important;
  background-size: 300% 300% !important;
  animation: hg-instagramGradient 3s ease infinite !important;
}

.hg-youtube:hover {
  background: linear-gradient(135deg, #ff0000, #cc0000) !important;
}

.hg-tripadvisor:hover {
  background: linear-gradient(135deg, #00af87, #34e89e) !important;
}

/* Gradient Animasyonları */
@keyframes hg-googleGradient {
  0% { background-position: 0% 50% !important; }
  50% { background-position: 100% 50% !important; }
  100% { background-position: 0% 50% !important; }
}

@keyframes hg-instagramGradient {
  0% { background-position: 0% 50% !important; }
  50% { background-position: 100% 50% !important; }
  100% { background-position: 0% 50% !important; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .hg-social-card {
    padding: 30px 15px !important;
    min-height: 150px !important;
  }
  
  .hg-icon-container {
    width: 50px !important;
    height: 50px !important;
  }
  
  .hg-icon-container i {
    font-size: 1.8rem !important;
  }
  
  .hg-social-text {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .hg-social-card {
    padding: 25px 10px !important;
    min-height: 120px !important;
  }
  
  .hg-icon-container {
    width: 40px !important;
    height: 40px !important;
  }
  
  .hg-icon-container i {
    font-size: 1.5rem !important;
  }
  
  .hg-social-text {
    font-size: 0.8rem !important;
  }
}

/* Giriş Animasyonları */
.hg-social-card {
  animation: hg-fadeInScale 0.6s ease forwards !important;
}

.hg-social-card:nth-child(1) { animation-delay: 0.1s !important; }
.hg-social-card:nth-child(2) { animation-delay: 0.2s !important; }
.hg-social-card:nth-child(3) { animation-delay: 0.3s !important; }
.hg-social-card:nth-child(4) { animation-delay: 0.4s !important; }

@keyframes hg-fadeInScale {
  from {
    opacity: 0 !important;
    transform: scale(0.8) !important;
  }
  to {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}

/* Bootstrap 5 Override Protection */
.hg-social-follow-section * {
  box-sizing: border-box !important;
}

.hg-social-card:focus {
  outline: none !important;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25) !important;
}

.hg-social-card:hover {
  text-decoration: none !important;
}

.contact-section {
            background: white;
            color: #333;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,151,207,0.05) 0%, transparent 50%, rgba(0,151,207,0.03) 100%);
            pointer-events: none;
        }
        
        .contact-card {
            background: white;
            border: 1px solid rgba(0,151,207,0.1);
            border-radius: 0;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 20px rgba(0,151,207,0.1);
			margin-bottom:1rem;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0,151,207,0.2);
            box-shadow: 0 15px 35px rgba(0,151,207,0.15);
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-icon {
            font-size: 1.3rem;
            opacity: 0.8;
        }
        
        .contact-card .info-item {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .contact-card  .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .info-icon {
            font-size: 1.1rem;
            margin-top: 2px;
            opacity: 0.7;
            min-width: 20px;
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-label {
            font-weight: 600;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 2px;
        }
        
        .info-value {
            font-size: 1rem;
            line-height: 1.4;
        }
        
        .map-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .map-link {
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 25px;
			color:#333;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .map-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-item i {
            font-size: 1.1rem;
            opacity: 0.7;
            min-width: 25px;
        }
        
        .contact-label {
            font-weight: 600;
            min-width: 120px;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .contact-value {
            font-size: 1rem;
            flex: 1;
        }
        .contact-value a{
			color:#333;
			text-decoration:none;
		}
        .bg-pattern {
            position: absolute;
            top: -50px;
            right: -50px;
            font-size: 200px;
            opacity: 0.05;
            z-index: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 0;
            }
            
            

            
            .contact-card {
                margin-bottom: 1.5rem;
            }
            
            .map-links {
                justify-content: center;
            }
            
            .contact-label {
                min-width: 100px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {         
            .contact-card {
                padding: 1.5rem;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .contact-label {
                min-width: auto;
            }
        }
		
		
		.cookie-consent-wrapper {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 20px;
            background: rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookie-consent-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: none;
            border-top: 4px solid var(--primary-blue);
            max-width: 600px;
            margin: 0 auto;
            overflow: hidden;
        }

        .cookie-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px 24px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .cookie-icon-wrapper {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #00BFFF 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
        }

        .cookie-icon {
            color: white;
            font-size: 20px;
        }

        .cookie-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .cookie-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .cookie-body {
            padding: 20px 24px;
        }

        .cookie-text {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .cookie-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

        .cookie-link:hover {
            color: var(--primary-blue-dark);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-cookie {
            font-weight: 600;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-cookie-accept {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #00BFFF 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
        }

        .btn-cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
            color: white;
        }

        .btn-cookie-decline {
            background: #f8f9fa;
            color: var(--text-muted);
            border: 2px solid #e9ecef;
        }

        .btn-cookie-decline:hover {
            background: #e9ecef;
            border-color: #dee2e6;
            transform: translateY(-2px);
            color: var(--text-muted);
        }

        .btn-cookie-settings {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-cookie-settings:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }

        .demo-container {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
            text-align: center;
        }

        .demo-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #00BFFF 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
        }

        .demo-title {
            color: var(--primary-blue);
            font-size: 28px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .demo-text {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .btn-demo {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #00BFFF 100%);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }

        .btn-demo:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
            color: white;
        }

        .fade-out {
            animation: fadeOut 0.5s ease-out forwards;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateY(100%);
            }
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1060;
            animation: slideInRight 0.4s ease-out;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .cookie-category {
            border-left: 4px solid transparent;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .cookie-category.essential {
            border-left-color: #28a745;
        }

        .cookie-category.marketing {
            border-left-color: #ffc107;
        }

        @media (max-width: 576px) {
            .cookie-buttons {
                flex-direction: column;
            }
            
            .btn-cookie {
                width: 100%;
                justify-content: center;
            }
            
            .cookie-consent-wrapper {
                padding: 15px;
            }
            
            .cookie-header,
            .cookie-body {
                padding: 16px 20px;
            }
        }