:root {
    --primary-color: #5D3A1A;
    /* Rich Brown */
    --secondary-color: #8B5E3C;
    /* Warm Earth */
    --accent-color: #A6790A;
    /* Golden Ochre */
    --text-color: #231206;
    /* Ultra-Dark Espresso for readability */
    --text-light: #5D3A1A;
    --light-gray: #F8F4F0;
    /* Cream Dust */
    --white: #ffffff;
    --glass: rgba(10, 14, 23, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.top-right {
    display: flex;
    align-items: center;
}

.social-links {
    margin-right: 25px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.lang-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.lang-selector img {
    width: 20px;
    margin-right: 8px;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 58, 26, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0 4px 20px rgba(93, 58, 26, 0.15);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .main {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    line-height: 1;
}

.logo-text .sub {
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(93, 58, 26, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    color: var(--primary-color);
    opacity: 0.8;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Hero Section Slider Styles */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1.5s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.active .hero-content {
    animation: fadeInUp 1s ease forwards 0.5s;
}

.slide .hero-content {
    opacity: 0;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.tagline {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.hero h1 span {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.hero-btns .btn {
    margin-right: 15px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background: var(--secondary-color);
}

/* Mini Features */
.mini-features {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.mini-features .container {
    display: flex;
    justify-content: space-around;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(166, 121, 10, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .about-text .section-header {
        text-align: center !important;
    }

    .about-text .divider {
        margin: 0 auto !important;
    }
}

/* Services */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.tagline {
    display: inline-block;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    padding: 10px 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-tagline {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(93, 58, 26, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(93, 58, 26, 0.08);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-body {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 20px;
    margin: 0 auto 30px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Chat Widget System */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999 !important;
    font-family: 'Outfit', sans-serif;
}

.chat-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.chat-bubble {
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: var(--transition);
}

.chat-bubble i {
    color: white;
    font-size: 24px;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.chat-label {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 20px);
    background: rgba(10, 14, 23, 0.95) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeInUp 0.4s ease;
    z-index: 1000000 !important;
}

@media (max-width: 768px) {
    .chat-window {
        position: fixed;
        width: 100vw !important;
        height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        z-index: 1000001 !important;
    }
}

.chat-header {
    background: var(--primary-color);
    padding: 30px 25px 40px;
    color: white;
    position: relative;
}

.close-chat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
}

.header-content p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 10px;
}

.chat-body {
    background: var(--secondary-color);
    /* Matches header in the ref image */
    padding: 0 15px 20px;
}

.chat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-card h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 8px;
}

.search-box i {
    color: #999;
    margin-right: 10px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* Search Results Styles */
.search-results {
    margin-top: 15px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.result-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: #f9f9f9;
}

.result-item h5 {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.result-item p {
    font-size: 11px;
    color: #888;
    margin: 0;
}

.no-results {
    font-size: 13px;
    color: #999;
    padding: 10px;
}

.conversation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.conversation-card:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
}

.card-left h4 {
    margin-bottom: 4px;
}

.card-left p {
    font-size: 13px;
    color: #777;
}

.card-right i {
    color: var(--secondary-color);
    font-size: 20px;
}

.chat-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
    background: white;
}

.footer-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.footer-icons i {
    font-size: 22px;
    color: #999;
    cursor: pointer;
}

.footer-icons i.active {
    color: var(--secondary-color);
}

.powered-by {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* New Chat View Styles */
#chatMessagesView {
    display: none;
    flex-direction: column;
    flex-grow: 1;
    min-height: 350px;
    background: #f0f2f5;
}

@media (max-width: 480px) {
    #chatMessagesView {
        height: auto;
    }
}

.messages-container {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.message.bot {
    align-self: flex-start;
    background: white;
    color: var(--text-color);
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.message.user {
    align-self: flex-end;
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 2px;
}

.message-input-area {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
    gap: 8px;
}

.message-input-area input {
    flex-grow: 1;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.message-input-area button {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-input-area button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.chat-body {
    background: var(--secondary-color);
    padding: 0;
    min-height: 100px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#chatHome {
    padding: 20px 15px;
    flex-grow: 1;
    overflow-y: auto;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.item-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.9), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
    transition: var(--transition);
}

.portfolio-item:hover .item-overlay {
    bottom: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.item-overlay h3 {
    color: var(--secondary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
    opacity: 0.5;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: var(--light-gray);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: var(--transition);
    width: 100%;
}

.info-card:hover {
    background: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(93, 58, 26, 0.05);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(93, 58, 26, 0.1);
}

.info-text p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.futuristic-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.half-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.futuristic-form input,
.futuristic-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.futuristic-form input:focus,
.futuristic-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.submit-btn {
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
}

.submit-btn:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

/* Footer Modern Layout */
footer {
    background: linear-gradient(rgba(45, 27, 13, 0.95), rgba(45, 27, 13, 0.95)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #d7ccc8;
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--white);
    margin-bottom: 25px;
}

.about-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* FB Mock Plugin */
.fb-mock-plugin {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 10px;
    color: #333;
    max-width: 300px;
}

.fb-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.fb-logo {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.fb-text {
    display: flex;
    flex-direction: column;
}

.fb-name {
    color: #3b5998;
    font-weight: 700;
    font-size: 14px;
}

.fb-followers {
    font-size: 11px;
    color: #777;
}

.fb-btns {
    display: flex;
    justify-content: space-between;
}

.fb-btns button {
    background: #f5f6f7;
    border: 1px solid #dddfe2;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #4b4f56;
}

.fb-btns button:hover {
    background: #ebedf0;
}

.footer-bottom {
    background: #1a0f08;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
}

/* Comprehensive Responsive Styles */
@media (max-width: 1024px) {

    /* Header & Mobile Nav */
    .top-bar {
        display: none !important;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .top-bar .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }

    .top-bar .top-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 8px;
        width: 100%;
    }

    .top-bar .social-links {
        margin: 0;
    }

    header {
        padding: 5px 0 !important;
        position: sticky;
        top: 0;
        z-index: 10001;
    }

    header .container {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        gap: 10px !important;
    }

    .logo-icon {
        width: 50px !important;
        height: 50px !important;
        margin-right: 0 !important;
    }

    .logo-text .main {
        font-size: 20px !important;
    }

    .logo-text .sub {
        font-size: 8px !important;
        letter-spacing: 2px !important;
    }

    .mobile-toggle {
        display: block;
        cursor: pointer;
        z-index: 10003;
        width: 25px;
        height: 18px;
        position: relative;
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        margin-bottom: 5px;
        transition: var(--transition);
        border-radius: 2px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--secondary-color);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--secondary-color);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10002;
        border-left: 1px solid var(--glass-border);
        box-shadow: -15px 0 45px rgba(93, 58, 26, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 18px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1.5px;
        display: block;
        padding: 10px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(93, 58, 26, 0.03);
        box-shadow: none;
        border: none;
        text-align: center;
        display: none;
        margin-top: 10px;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
        padding: 12px 25px;
    }

    /* Sections */
    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Page Specific */
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .logo-text .main {
        font-size: 20px;
        letter-spacing: -0.5px;
        font-weight: 800;
    }

    .logo-text .sub {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    .hero-btns .btn {
        font-size: 15px;
        padding: 14px 25px;
        border-radius: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* Reviews Section */
.reviews-section {
    background: transparent;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(93, 58, 26, 0.08);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 58, 26, 0.1);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
}

.reviewer-info {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(93, 58, 26, 0.2);
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.reviewer-date {
    font-size: 12px;
    color: #888;
}

/* Add Review Form */
.add-review-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(93, 58, 26, 0.1);
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.add-review-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.add-review-form .form-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.add-review-form .form-header p {
    color: #777;
    font-size: 15px;
}

.add-review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-review-form .form-group {
    margin-bottom: 20px;
}

.add-review-form input,
.add-review-form select,
.add-review-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(93, 58, 26, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #fcfcfc;
    transition: var(--transition);
    color: var(--text-color);
}

.add-review-form input:focus,
.add-review-form select:focus,
.add-review-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(166, 121, 10, 0.1);
    background: white;
}

.add-review-form button {
    width: 100%;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .add-review-form .form-row {
        grid-template-columns: 1fr;
    }

    .add-review-form {
        padding: 25px;
    }
}

/* Booking Section Styles */
.booking-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(93, 58, 26, 0.12);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
}

.half-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .half-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

.booking-section .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.booking-section .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.booking-section .form-group input,
.booking-section .form-group select,
.booking-section .form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
    outline: none;
    color: var(--text-color);
}

.booking-section .form-group input:focus,
.booking-section .form-group select:focus,
.booking-section .form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(166, 121, 10, 0.1);
}

.booking-section .form-group textarea {
    resize: vertical;
}

/* Collapsible Form Styles */
.form-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.form-collapsible.active {
    max-height: 2000px;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    margin-top: 40px;
}

.toggle-form-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(93, 58, 26, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.toggle-form-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(166, 121, 10, 0.25);
}

.toggle-form-btn i {
    transition: var(--transition);
}

.toggle-form-btn.active i {
    transform: rotate(45deg);
}

.form-toggle-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Typing Animation */
.typing {
    display: flex;
    gap: 5px;
    padding: 12px 18px !important;
    width: fit-content;
}

.typing .dot {
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

.message.bot {
    align-self: flex-start;
    background: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 2px;
}

/* --- Premium Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000000;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: loaderScale 2s infinite ease-in-out;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(166, 121, 10, 0.1);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: loaderRotate 1s infinite linear;
}

.loader-text {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    animation: loaderPulse 1.5s infinite;
}

@keyframes loaderScale {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes loaderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* --- Global Premium Background Orbs --- */
.global-bg-anim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background: var(--white);
}


.orb {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(93, 58, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.orb:nth-child(1) {
    top: -150px;
    left: -100px;
    animation-duration: 28s;
}

.orb:nth-child(2) {
    bottom: -200px;
    right: -150px;
    animation-duration: 35s;
    background: radial-gradient(circle, rgba(166, 121, 10, 0.12) 0%, transparent 70%);
}

.orb:nth-child(3) {
    top: 25%;
    right: 15%;
    animation-duration: 25s;
    width: 350px;
    height: 350px;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(120px, 70px) scale(1.2) rotate(10deg);
    }
}