/* =========================================
   Main Header Section
   ========================================= */
.dental_template_main-header {
    position: relative;
    height: 850px;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%
    ), url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Navigation Bar */
.dental_template_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    width: 100%;
    background: transparent;
    flex-wrap: nowrap;
}

.dental_template_logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    gap: 10px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.dental_template_logo-icon {
    font-size: 32px;
}

/* Navigation Links */
.dental_template_nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0 40px;
    height: 48px;
    border-radius: 50px;
    margin: 0 20px;
    flex-shrink: 0;
    transform: translateZ(0);
}

.dental_template_nav-links li {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dental_template_nav-links li a {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin-top: 15px;
    /* Remove theme overrides for underlines */
    text-decoration: none !important;
    border-bottom: none !important;
}

.dental_template_nav-links li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.dental_template_dropdown-arrow::after {
    content: '\25BC';
    font-size: 8px;
    margin-left: 6px;
}

.dental_template_btn-nav {
    background-color: white;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.dental_template_btn-nav:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

/* Hero Content */
.dental_template_hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 50px;
    width: 100%;
    padding-bottom: 80px;
}

.dental_template_hero-text-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
}

.dental_template_hero-title {
    font-size: 100px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 0;
    flex: 1;
}

.dental_template_hero-description-group {
    max-width: 450px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.dental_template_hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.dental_template_btn-hero {
    background-color: white;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: transform 0.2s ease;
}

.dental_template_btn-hero:hover {
    transform: scale(1.05);
}

/* =========================================
   Main Content Layout
   ========================================= */
.dental_template_main-content {
    position: relative;
    z-index: 10;
    margin-top: -120px;
    padding: 0 50px 80px 50px;
    width: 100%;
}

.dental_template_container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Card: Information */
.dental_template_info-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.dental_template_info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.dental_template_section-headline {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.dental_template_tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dental_template_tag {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #6c5ce7;
    border-radius: 25px;
    color: #6c5ce7;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.dental_template_tag:hover {
    background-color: #6c5ce7;
    color: #fff;
    cursor: default;
}

.dental_template_sub-headline {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.dental_template_avatar-group {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.dental_template_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dental_template_avatar:first-child {
    margin-left: 0;
}

.dental_template_description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Right Card: Services */
.dental_template_services-card-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.dental_template_services-card {
    position: relative;
    border-radius: 30px;
    padding: 50px;
    background-image: linear-gradient(
            to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.6) 100%
    ), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    -webkit-mask-image: radial-gradient(circle at bottom right, transparent 130px, black 130.5px);
    mask-image: radial-gradient(circle at bottom right, transparent 130px, black 130.5px);
}

.dental_template_card-title {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #ffffff;
}

.dental_template_card-text {
    font-size: 18px;
    line-height: 1.5;
    max-width: 85%;
}

.dental_template_btn-cutout-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.dental_template_btn-arrow {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b3be8;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-top: 15px;
    margin-left: 15px;
}

.dental_template_btn-arrow svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5px;
    margin-left: 2px;
}

.dental_template_btn-arrow:hover {
    transform: scale(1.1);
    cursor: pointer;
}