/* -------------------- BACKGROUND VIDEO -------------------- */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: -1;
}

/* -------------------- TOP NAVIGATION -------------------- */
.top-nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
}

.address p{
    font-family: 'Poppins', sans-serif;	font-size:12px;
}



.logo {
    font-weight: 600;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links a {
    margin-left: 24px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #C7A25A;
}

/* -------------------- HERO SECTION -------------------- */
.hero {
    width: 90%;
  
    padding-top: 85px;
    padding-left: 80px;
    text-align: left;
}

/* Headline */
.headline {
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-size: 4.8rem;
    color: white;
    margin: 100px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* -------------------- SERVICES TAGS -------------------- */
/* -------------------- SERVICES TAGS FULL WIDTH -------------------- */
.services-tags {
	
    width: 100%;          /* full width */
    padding: 10px 10px;   /* spacing from edges */
    box-sizing: border-box;
    margin-bottom: 30px;
    /*background: rgba(0, 0, 0, 0.25);  optional glass effect */
    backdrop-filter: blur(5px);      /* optional blur effect */
}

.services-tags h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.services-tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.services-tags ul li a {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 5px;
    background: rgba(0,0,0,0.25);
    color: white;
    font-size: 0.75rem;
    transition: all 0.25s ease-in-out;
    white-space: nowrap;
}

.services-tags ul li a:hover {
    background: rgba(199, 162, 90, 0.7);
    color: black;
}

/* -------------------- SEARCH MODULE -------------------- */
.search-module {
	margin-top:100px;
    width: 650px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    border-radius: 12px;
    overflow: hidden;
}

.tabs-row {
    display: flex;
    align-items: stretch;
}

.tab {
    padding: 14px 34px;
    border: none;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
}

.tab.active { background: rgba(0, 79, 69, 0.85); color: white; }

.ai-search-label {
    flex-grow: 1;
    background: rgba(199, 162, 90, 0.7);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 10px;
}

.search-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 25px;
    border-radius: 0 0 12px 12px;
}

.search-box input {
    padding: 14px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 300;
    background: rgba(255,255,255,0.4);
    color: black;
}

.advanced {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: black;
}

.search-btn {
    background: rgba(0,79,69,0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
