/* ===== CSS Variables ===== */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF8A65;
    --background-color: #F9FAFB;
    --dark-color: #1E1E2F;
    --accent-color: #C0E8E0;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-mist: linear-gradient(135deg, rgba(192, 232, 224, 0.3), rgba(108, 99, 255, 0.1));
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    margin-left: 0.5rem;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(30, 30, 47, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(30, 30, 47, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

.animated-logo {
    animation: float 3s ease-in-out infinite;
    color: var(--accent-color);
}

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

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

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

.cloud-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><filter id="blur"><feGaussianBlur stdDeviation="2"/></filter></defs><g filter="url(%23blur)"><circle cx="200" cy="100" r="40" fill="rgba(255,255,255,0.1)" opacity="0.6"><animate attributeName="cx" values="200;800;200" dur="20s" repeatCount="indefinite"/></circle><circle cx="600" cy="150" r="30" fill="rgba(255,255,255,0.08)" opacity="0.4"><animate attributeName="cx" values="600;100;600" dur="25s" repeatCount="indefinite"/></circle><circle cx="400" cy="80" r="50" fill="rgba(255,255,255,0.06)" opacity="0.3"><animate attributeName="cx" values="400;900;400" dur="30s" repeatCount="indefinite"/></circle></g></svg>') repeat-x;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.mist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(192, 232, 224, 0.1) 70%);
    animation: mistFlow 8s ease-in-out infinite alternate;
}

@keyframes mistFlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== Booking Bar ===== */
.booking-bar {
    padding: 2rem 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 10px;
    border: 2px solid rgba(108, 99, 255, 0.1);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ===== Featured Rooms ===== */
.featured-rooms {
    padding: 5rem 0;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

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

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

.room-buttons .btn {
    margin: 0 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.room-content {
    padding: 1.5rem;
}

.room-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.room-content p {
    color: #666;
    margin-bottom: 1rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

/* ===== Amenities ===== */
.amenities {
    padding: 5rem 0;
}

.amenity-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.amenity-item h5 {
    color: var(--dark-color);
    font-weight: 600;
}

/* ===== Gallery Carousel ===== */
.gallery-carousel {
    padding: 5rem 0;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

/* ===== Reviews ===== */
.reviews {
    padding: 5rem 0;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.reviewer h6 {
    margin-bottom: 0;
    color: var(--dark-color);
}

.reviewer small {
    color: #666;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color) !important;
    color: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    border: none;
    background: var(--gradient-primary);
}

/* ===== Floating Elements ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-form-container {
        padding: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .booking-form .row > div {
        margin-bottom: 1rem;
    }
}

/* ===== Loading Animation ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-clouds {
    display: flex;
    align-items: center;
}

.cloud {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 1.4s ease-in-out infinite both;
}

.cloud:nth-child(1) { animation-delay: -0.32s; }
.cloud:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ===== Glassmorphism Effects ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* ===== Parallax Effects ===== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===== Contact Page Styles ===== */
.contact-header {
    background: linear-gradient(rgba(30, 30, 47, 0.7), rgba(108, 99, 255, 0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%236C63FF;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23FF8A65;stop-opacity:0.1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad1)"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-detail {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-hours {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ===== Contact Form Styles ===== */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.form-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating.focused label {
    color: var(--primary-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.booking-details {
    background: rgba(108, 99, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-loading {
    display: none;
}

/* ===== Contact Sidebar Styles ===== */
.contact-sidebar .quick-contact-card,
.contact-sidebar .business-hours-card,
.contact-sidebar .social-media-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateX(5px);
}

.quick-contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.quick-contact-item div {
    flex: 1;
}

.quick-contact-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.quick-contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.service-open {
    color: #28a745;
}

.hours-item.service-closed {
    color: #dc3545;
}

.social-links {
    /* display: flex; */
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.45rem;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    width: 25px;
    text-align: center;
}

/* ===== Map Styles ===== */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    transition: all 0.3s ease;
}

.map-container.map-active iframe {
    filter: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.map-info-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.map-info-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

/* ===== FAQ Styles ===== */
.accordion-item {
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: rgba(108, 99, 255, 0.02);
    color: #666;
    line-height: 1.8;
}

/* ===== CTA Section Styles ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ===== Success Modal Styles ===== */
.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 20px 20px 0 0;
}

.modal-body {
    padding: 2rem;
}

/* ===== Live Chat Button ===== */
.live-chat-float {
    position: fixed;
    bottom: 140px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.live-chat-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

/* ===== Page Header Styles ===== */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(30, 30, 47, 0.6); */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===== Floating Clouds Animation ===== */
.floating-clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-clouds .cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.6;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: float-cloud 20s ease-in-out infinite;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 60%;
    right: 20%;
    animation: float-cloud 25s ease-in-out infinite reverse;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 40%;
    left: 70%;
    animation: float-cloud 30s ease-in-out infinite;
}

@keyframes float-cloud {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(-10px) translateY(5px);
    }
    75% {
        transform: translateX(15px) translateY(-5px);
    }
}

/* ===== Brand Icon Animation ===== */
.brand-icon {
    animation: float 3s ease-in-out infinite;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.brand-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
}

/* ===== Additional Responsive Styles ===== */
@media (max-width: 992px) {
    .contact-form-container {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-sidebar {
        margin-top: 2rem;
    }
    
    .map-info-card {
        position: relative;
        margin-top: 1rem;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        padding: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .floating-elements {
        right: 15px;
    }
    
    .whatsapp-float,
    .scroll-to-top,
    .live-chat-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .live-chat-float {
        bottom: 120px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}


/* team image */

.team-image img {
    height: 300px;
    width: 300px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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