:root {
    --primary-color: #B5915D;
    --primary-hover: #9e7d4d;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navbar Styles */
.navbar {
    background-color: var(--bg-light);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    color: #1a1a1a;
}
.logo-sub {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    color: #333;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
}
.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.nav-links li a:hover {
    color: var(--primary-color);
}
.nav-links li a i {
    font-size: 10px;
    margin-left: 5px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-login {
    background-color: var(--primary-color);
    color: var(--text-light);
    gap: 10px;
}
.btn-login:hover {
    background-color: var(--primary-hover);
}
/* Hero Styles */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/images/medical_scanner_background_1774084118398.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0px;
    margin-left: calc(10% + 160px);
    margin-right: auto;
}
.hero-text {
    max-width: 1000px;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.05;
    margin-bottom: 50px;
}
.hero-text p {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 300px;
    padding: 16px 45px;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
}
/* Sidebar Container */
.sidebar-container {
    position: absolute;
    left: 160px;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
}
/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 10;
    width: 60px;
    align-items: center;
}
.social-sidebar a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 200;
    opacity: 0.6;
    transition: var(--transition);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    padding: 10px 5px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.social-sidebar a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
/* Sidebar lines */
.sidebar-lines {
    position: relative;
    display: flex;
    height: 100%;
}
.sidebar-lines .line {
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.15);
}
.sidebar-lines .line:nth-child(1) { margin-left: 0; }
.sidebar-lines .line:nth-child(2) { margin-left: 80px; }

/* Floating Info */
.floating-info {
    position: absolute;
    z-index: 10;
    text-align: center;
}
.top-right {
    top: 40px;
    right: 160px;
}
.bottom-right {
    bottom: 10px;
    right: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.phone-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid rgb(155, 155, 154);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.phone-box i {
    font-size: 18px;
    background: rgba(0, 0, 0, 0.4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.rating-box {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 200;
    font-size: 22px;
    text-align: center;
}
.rating-box i {
    color: #FFD700;
    font-size: 26px;
}
.avatar-group {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 20px;
    border-radius: 5px;
    border: 1px solid white;
    display: flex;
    align-items: center;
}
.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}
.avatar-group img:first-child {
    margin-left: 0;
}
.avatar-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid white;
    font-size: 14px;
}
/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Simple mobile menu handling for now */
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .social-sidebar, .hero::before, .hero::after {
        display: none;
    }
    
    .top-right, .bottom-right {
        position: static;
        margin-top: 20px;
        align-items: flex-start;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
}
