/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    transition: transform 0.3s ease;
}

.header-main.header-hidden {
    transform: translateY(-100%);
}

.header-main.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.header-main .container-fluid {
    padding: 0 20px;
}

/* Menu Toggle Button */
.menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-image {
    height: 52px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Book Button */
.btn-book {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 40px 40px;
    overflow-y: auto;
}

.menu-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Navigation */
.menu-nav {
    max-width: 600px;
    margin: 0 auto;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #e0e0e0;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #666;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: #2c2c2c;
}

/* Mobile Sticky Book Button */
.btn-book-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    color: #000;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    border: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-welcome {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.95;
}

/* ========================================
   SECTION 2 - INNOVATION (Homepage)
   ======================================== */

.section-innovation {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.section-innovation::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dna-pattern.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.section-innovation .container {
    position: relative;
    z-index: 10;
}

.innovation-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.innovation-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}

.innovation-title-italic {
    font-style: italic;
    font-weight: 300;
}

.innovation-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #000;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background-color: #f0f0f0;
    color: #000;
    gap: 20px;
}

.btn-discover svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ========================================
   SECTION 3 - PLANS (Homepage)
   ======================================== */

.section-plans {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.section-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/plans-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-plans::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.section-plans .container {
    position: relative;
    z-index: 10;
}

.plans-content {
    max-width: 700px;
    color: #fff;
}

.plans-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
}

.plans-title-italic {
    font-style: italic;
    font-weight: 300;
}

.plans-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}

.plans-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #000;
    padding: 14px 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-plan:hover {
    background-color: #f0f0f0;
    color: #000;
    gap: 20px;
}

.btn-plan svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ========================================
   SECTION 4 - MISSION (Homepage)
   ======================================== */

.section-mission {
    background-color: #f5f5f5;
    color: #000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/13.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.section-mission .container {
    position: relative;
    z-index: 10;
}

.section-mission .row {
    align-items: center;
}

.mission-column-1 {
    padding-right: 60px;
}

.mission-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #000;
}

.mission-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
}

.mission-column-2 {
    padding-left: 60px;
    display: flex;
    justify-content: center;
}

.mission-wrapper {
    max-width: 400px;
}

.mission-header {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: #000;
    opacity: 0.7;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000;
}

.mission-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-item:hover .mission-icon {
    background-color: rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.mission-icon svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    stroke-width: 2;
}

/* ========================================
   STORY HERO SECTION (Despre Noi)
   ======================================== */

.story-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../images/despre-noi-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
}

.story-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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%);
    z-index: 1;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
    color: #ffffff;
}

.story-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.story-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #ffffff;
}

.story-hero-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

/* ========================================
   PROFESSIONAL TRAINING SECTION
   ======================================== */

.professional-training-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.training-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/training-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.training-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.training-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.training-intro {
    max-width: 700px;
}

.training-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #ffffff;
}

.training-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.9;
}

.training-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
}

.certification-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.certification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.certification-text {
    flex: 1;
}

.certification-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #ffffff;
}

.certification-institution {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.8;
}

/* ========================================
   TEAM SECTION (Echipa)
   ======================================== */

.team-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.team-section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 60px;
}

.team-card-main {
    background-color: #ffffff;
    border: 3px solid #000000;
    overflow: hidden;
    margin-bottom: 40px;
}

.team-header {
    background: linear-gradient(135deg, #2c2c2c, #000000);
    color: #ffffff;
    padding: 40px 30px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 15px;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.team-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
}

.team-content {
    padding: 50px 40px;
}

.team-block {
    margin-bottom: 40px;
}

.team-block:last-child {
    margin-bottom: 0;
}

.team-block-title {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-block-title svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    flex-shrink: 0;
}

.team-timeline {
    border-left: 3px solid #000000;
    padding-left: 25px;
}

.team-timeline p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
}

.team-timeline .highlight {
    color: #000000;
    font-weight: 500;
}

.competence-card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 0;
    height: 100%;
}

.competence-card h6 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.competence-card p {
    font-size: 13px;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    padding: 10px 0;
    font-size: 15px;
    font-weight: 300;
    color: #333333;
    position: relative;
    padding-left: 25px;
}

.team-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 600;
}

.achievement-card {
    background: #000000;
    color: #ffffff;
    padding: 30px 20px;
    border-radius: 0;
    height: 100%;
}

.achievement-card h4 {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.team-subsection-title {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 30px;
}

.association-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 0;
    margin-bottom: 25px;
}

.leadership-card {
    background: #ffffff;
    border-left: 4px solid #000000;
    padding: 25px;
    border-radius: 0;
    height: 100%;
}

.leadership-card h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}

.leadership-card p {
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 8px;
}

.leadership-card p.small {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.expertise-card {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 25px;
    border-radius: 0;
    position: relative;
    margin-bottom: 20px;
}

.expertise-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    padding: 0 12px;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.expertise-card h6 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 8px;
}

.expertise-card > p {
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 15px;
}

.expertise-info {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 0;
    margin-bottom: 15px;
}

.expertise-info p {
    font-size: 13px;
    margin: 0;
    color: #333333;
}

.expertise-card p.small {
    font-size: 12px;
    color: #666666;
}

.personal-message {
    background: #000000;
    color: #ffffff;
    padding: 40px;
    border-radius: 0;
    margin-top: 20px;
}

.personal-message h5 {
    font-size: 22px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.personal-message p {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 20px;
}

.personal-message .signature {
    text-align: right;
    margin: 0;
    font-size: 15px;
}

.team-card-secondary {
    background-color: #ffffff;
    border: 2px solid #cccccc;
    padding: 40px 30px;
    text-align: center;
}

.team-avatar-secondary {
    width: 120px;
    height: 120px;
    background: #000000;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-secondary svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
}

.team-card-secondary h3 {
    font-size: 26px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
}

.team-card-secondary .role {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 15px;
}

.team-card-secondary .credentials {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}

.team-card-secondary .description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ========================================
   ETHICS SECTION (Despre Noi)
   ======================================== */

.ethics-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.ethics-block {
    margin-bottom: 60px;
}

.ethics-block:last-child {
    margin-bottom: 0;
}

.ethics-block-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #000000;
}

.ethics-block-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background-color: #fff;
    color: #2c2c2c;
    padding: 80px 40px 40px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top-row {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* Footer Logo - UPDATED */
.footer-logo {
    display: inline-block;
    flex-shrink: 0;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-column {
    flex-shrink: 0;
}

.footer-column-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links-list li a:hover {
    color: #2c2c2c;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-copyright {
    font-size: 11px;
    color: #999;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.footer-copyright a {
    color: #999;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #666;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: #000;
    transform: scale(1.1);
}

.footer-social-icons svg {
    width: 18px;
    height: 18px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ========================================
   PLANS HERO SECTION (Pachete/Servicii)
   ======================================== */

.plans-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-image: url('../images/plans-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plans-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.plans-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 8%;
}

.plans-hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #ffffff;
}

.plans-hero-title-italic {
    font-style: italic;
    font-weight: 300;
}

.btn-discover-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #000;
    padding: 14px 35px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-discover-more:hover {
    background-color: #f0f0f0;
    color: #000;
    gap: 20px;
}

.btn-discover-more svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ========================================
   PLAN DETAILS SECTION (Servicii)
   ======================================== */

.plan-details-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.plan-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/plan-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.plan-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.plan-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.plan-intro {
    max-width: 700px;
}

.plan-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.plan-price {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.plan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1000px;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.plan-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.plan-feature-text {
    flex: 1;
}

.plan-feature-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.plan-feature-full {
    max-width: 1000px;
}

.plan-extensiv .plan-bg-container {
    background-image: url('../images/plan-extensiv-bg.jpg');
}

.plan-segmentat .plan-bg-container {
    background-image: url('../images/plan-segmentat-bg.jpg');
}

/* Plan Segmentat - Background alb, text negru */
.plan-segmentat {
    background-color: #ffffff;
}

.plan-segmentat .plan-bg-container {
    background-image: none;
    background-color: #ffffff;
}

.plan-segmentat .plan-bg-overlay {
    background: #ffffff;
}

.plan-segmentat .plan-title {
    color: #000000;
}

.plan-segmentat .plan-price {
    color: #000000;
}

.plan-segmentat .plan-feature-icon img {
    filter: brightness(0);
}

.plan-segmentat .plan-feature-text p {
    color: #333333;
}

.plan-feature-subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Pentru plan segmentat - TEXT NEGRU */
.plan-segmentat .plan-feature-subtitle {
    color: #000000;
}

/* ========================================
   CHOOSE PLAN SECTION (Servicii)
   ======================================== */

.choose-plan-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.choose-plan-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-card-image img {
    transform: scale(1.05);
}

.plan-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
}

.plan-card-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.plan-card-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.plan-card-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ========================================
   RESURSE HERO SECTION
   ======================================== */

.resurse-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resurse-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resurse-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.resurse-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.resurse-hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #ffffff;
}

.resurse-hero-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

/* ========================================
   GHIDURI SECTION
   ======================================== */

.ghiduri-section {
    background-color: #000000;
    padding: 100px 0;
}

.ghiduri-main-title {
    font-size: 56px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
}

.ghiduri-column {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 0;
    height: 100%;
}

.ghiduri-column-title {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.ghiduri-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #2a2a2a;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ghiduri-item:hover {
    background-color: #333333;
    transform: translateX(5px);
}

.ghiduri-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghiduri-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ghiduri-content {
    flex: 1;
}

.ghiduri-item-title {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.ghiduri-item-description {
    font-size: 14px;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 15px;
}

.ghiduri-link {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ghiduri-link:hover {
    color: #cccccc;
    transform: translateX(5px);
}

/* ========================================
   COMUNICATE SECTION
   ======================================== */

.comunicate-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.comunicate-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
}

.comunicate-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

.comunicat-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comunicat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comunicat-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.comunicat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comunicat-card:hover .comunicat-image img {
    transform: scale(1.05);
}

.comunicat-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comunicat-date {
    font-size: 12px;
    font-weight: 300;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.comunicat-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.comunicat-description {
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.comunicat-link {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.comunicat-link:hover {
    color: #666666;
    transform: translateX(5px);
}

/* ========================================
   ALTE SERVICII MEDICALE SECTION
   ======================================== */

.alte-servicii-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.alte-servicii-title {
    font-size: 56px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 80px;
}

.servicii-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.serviciu-item {
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.serviciu-item:hover {
    background-color: #f8f9fa;
    padding-left: 35px;
}

.serviciu-item:last-child {
    border-bottom: none;
}

.serviciu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.serviciu-name {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    flex: 1;
}

.serviciu-price {
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    white-space: nowrap;
}

.serviciu-item-special {
    background-color: #f5f5f5;
    padding: 30px;
    margin-top: 20px;
}

.serviciu-item-special .serviciu-content {
    flex-direction: column;
    align-items: flex-start;
}

.serviciu-item-special .serviciu-name {
    margin-bottom: 15px;
    font-size: 22px;
}

.serviciu-description {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */

.contact-info-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dna-pattern.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.contact-info-section .container {
    position: relative;
    z-index: 10;
}

.contact-info-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke-width: 2;
}

.contact-info-content {
    color: #ffffff;
}

.contact-info-card-title {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info-address {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-info-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.contact-info-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.contact-form-title {
    font-size: 38px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 15px;
}

.contact-form-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #000000;
    background-color: #ffffff;
    box-shadow: none;
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-check {
    margin-bottom: 30px;
}

.contact-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid #cccccc;
    border-radius: 0;
    cursor: pointer;
}

.contact-form .form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}

.contact-form .form-check-label {
    font-size: 13px;
    font-weight: 300;
    color: #666666;
    margin-left: 8px;
    cursor: pointer;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background-color: #ffffff;
    color: #000000;
    gap: 20px;
}

.btn-submit-contact svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Contact Details Wrapper */
.contact-details-wrapper {
    background-color: #000000;
    padding: 50px 40px;
    height: 100%;
}

.contact-details-title {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke-width: 2;
}

.contact-detail-content h4 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-detail-content p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: #ffffff;
}

.contact-social {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-social-icons svg {
    width: 20px;
    height: 20px;
}

/* Contact Map Section */
.contact-map-section {
    padding: 0;
    position: relative;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.contact-map-wrapper:hover {
    filter: grayscale(0%);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Map Overlay Button */
.map-overlay-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    color: #ffffff;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-directions svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.terms-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/terms-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 80px;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.terms-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.terms-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.terms-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.terms-hero-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

.terms-content-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.terms-document {
    background-color: #f8f9fa;
    padding: 60px;
    border-left: 4px solid #000000;
}

.terms-intro {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 3px solid #000000;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.terms-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.terms-section ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.terms-section ul li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
}

.terms-section strong {
    font-weight: 500;
    color: #000000;
}

.contact-info-box {
    background-color: #ffffff;
    padding: 25px;
    border-left: 3px solid #000000;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.terms-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #000000;
    background-color: #ffffff;
    padding: 40px 30px;
}

.terms-footer p {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 10px;
}

.terms-footer p strong {
    font-weight: 500;
    color: #000000;
}

/* ========================================
   POLITICA DE CONFIDENTIALITATE PAGE STYLES
   ======================================== */

.privacy-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/privacy-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 80px;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.privacy-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.privacy-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.privacy-hero-description {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

.privacy-content-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.privacy-document {
    background-color: #f8f9fa;
    padding: 60px;
    border-left: 4px solid #000000;
}

.privacy-intro {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 3px solid #000000;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 12px;
}

.privacy-section p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-section ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-section ul li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
}

.privacy-section strong {
    font-weight: 500;
    color: #000000;
}

.operator-info-box {
    background-color: #ffffff;
    padding: 25px;
    border-left: 3px solid #000000;
    margin-top: 20px;
}

.operator-info-box p {
    margin-bottom: 8px;
    font-size: 15px;
}

.operator-info-box a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

.operator-info-box a:hover {
    text-decoration: underline;
}

.storage-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.storage-item {
    background-color: #ffffff;
    padding: 20px;
    border-left: 3px solid #000000;
}

.storage-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}

.storage-item p {
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 8px;
}

.storage-item p:last-child {
    margin-bottom: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.right-card {
    background-color: #ffffff;
    padding: 25px;
    border-left: 3px solid #000000;
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.right-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.right-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #000000;
    background-color: #ffffff;
    padding: 40px 30px;
}

.privacy-footer p {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 10px;
}

.privacy-footer p strong {
    font-weight: 500;
    color: #000000;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
	
	    .terms-hero-section,
    .privacy-hero-section {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }
    
    .terms-hero-title,
    .privacy-hero-title {
        font-size: 42px;
    }
    
    .terms-content-section,
    .privacy-content-section {
        padding: 80px 0;
    }
    
    .terms-document,
    .privacy-document {
        padding: 40px 30px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .storage-periods {
        grid-template-columns: 1fr;
    }
    .contact-hero-section {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }
    
    .contact-hero-title {
        font-size: 42px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .contact-form-title {
        font-size: 32px;
    }
    
    .contact-details-wrapper {
        padding: 40px 30px;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .contact-info-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .plan-feature-subtitle {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .alte-servicii-section {
        padding: 80px 0;
    }

    .alte-servicii-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .serviciu-name {
        font-size: 18px;
    }

    .serviciu-price {
        font-size: 22px;
    }

    .resurse-hero-title {
        font-size: 52px;
    }

    .resurse-hero-description {
        font-size: 16px;
    }

    .ghiduri-section {
        padding: 80px 0;
    }

    .ghiduri-main-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .ghiduri-column {
        padding: 30px;
        margin-bottom: 30px;
    }

    .comunicate-section {
        padding: 80px 0;
    }

    .comunicate-title {
        font-size: 42px;
    }
    
    .choose-plan-section {
        padding: 80px 0;
    }

    .choose-plan-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .plan-card-image {
        height: 220px;
    }

    .plan-details-section {
        padding: 80px 0;
    }

    .plan-content-wrapper {
        padding: 0 30px;
        gap: 50px;
    }

    .plan-title {
        font-size: 38px;
    }

    .plan-price {
        font-size: 28px;
    }

    .plan-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-innovation {
        padding: 60px 0;
        min-height: auto;
    }

    .section-innovation::after {
        opacity: 0.1;
    }

    .innovation-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .innovation-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .section-plans {
        min-height: auto;
        padding: 80px 0;
    }

    .section-plans::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .plans-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .plans-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .plans-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-plan {
        width: 100%;
        justify-content: space-between;
        padding: 16px 25px;
        font-size: 12px;
    }

    .section-mission {
        padding: 80px 0;
    }

    .section-mission::before {
        opacity: 0.2;
    }

    .mission-column-1,
    .mission-column-2 {
        padding-left: 0;
        padding-right: 0;
    }

    .mission-column-1 {
        margin-bottom: 50px;
    }

    .mission-column-2 {
        justify-content: flex-start;
    }

    .mission-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mission-header {
        margin-bottom: 25px;
    }

    .mission-item {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .story-hero-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 90%;
    }
    
    .story-hero-title {
        font-size: 42px;
    }
    
    .story-hero-description {
        font-size: 16px;
    }

    .professional-training-section {
        padding: 60px 0;
    }

    .training-content-wrapper {
        padding: 0 30px;
        gap: 50px;
    }
    
    .training-title {
        font-size: 38px;
    }
    
    .training-description {
        font-size: 16px;
    }
    
    .training-certifications {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .team-content {
        padding: 40px 30px;
    }

    .team-block {
        margin-bottom: 35px;
    }
    
    .ethics-section {
        padding: 60px 0;
    }

    .ethics-block {
        margin-bottom: 50px;
    }

    .ethics-block-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .ethics-block-description {
        font-size: 16px;
    }

    .plans-hero-content {
        padding: 20px 5%;
    }

    .plans-hero-title {
        font-size: 56px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
	
	  .terms-hero-title,
    .privacy-hero-title {
        font-size: 36px;
    }
    
    .terms-hero-description,
    .privacy-hero-description {
        font-size: 16px;
    }
    
    .terms-content-section,
    .privacy-content-section {
        padding: 60px 0;
    }
    
    .terms-document,
    .privacy-document {
        padding: 30px 20px;
    }
    
    .terms-intro,
    .privacy-intro {
        padding: 20px;
        font-size: 16px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .terms-section h3,
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .terms-section p,
    .privacy-section p,
    .terms-section ul li,
    .privacy-section ul li {
        font-size: 15px;
    }
    .map-overlay-button {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
    }
    
    .btn-directions {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .contact-map-wrapper {
        height: 400px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 15px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-details-wrapper {
        padding: 30px 20px;
    }
    
    .contact-details-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .contact-info-title {
        font-size: 32px;
    }
    
    .contact-info-card-title {
        font-size: 22px;
    }
    
    .contact-info-address {
        font-size: 15px;
    }
    
    .contact-info-phone {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .choose-plan-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .plan-card-image {
        height: 200px;
    }

    .plan-card-content {
        padding: 25px;
    }

    .plan-card-title {
        font-size: 22px;
    }
    
    .plans-hero-title {
        font-size: 42px;
        margin-bottom: 35px;
    }
    
    .menu-content {
        padding: 60px 20px 20px;
    }

    .menu-close {
        top: 20px;
        left: 20px;
    }

    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }

    .hero-welcome {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-book-mobile {
        display: block !important;
    }
}

@media (max-width: 576px) {
	  .terms-hero-section,
    .privacy-hero-section {
        min-height: 40vh;
        padding: 90px 15px 50px;
    }
    
    .terms-hero-label,
    .privacy-hero-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .terms-hero-title,
    .privacy-hero-title {
        font-size: 28px;
    }
    
    .terms-hero-description,
    .privacy-hero-description {
        font-size: 14px;
    }
    
    .terms-content-section,
    .privacy-content-section {
        padding: 50px 0;
    }
    
    .terms-document,
    .privacy-document {
        padding: 25px 15px;
    }
    
    .terms-intro,
    .privacy-intro {
        padding: 15px;
        font-size: 15px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .terms-section h3,
    .privacy-section h3 {
        font-size: 17px;
    }
    
    .terms-section p,
    .privacy-section p,
    .terms-section ul li,
    .privacy-section ul li {
        font-size: 14px;
    }
    
    .contact-info-box,
    .operator-info-box {
        padding: 20px 15px;
    }
    
    .right-card,
    .storage-item {
        padding: 20px 15px;
    }
    
    .terms-footer,
    .privacy-footer {
        padding: 30px 20px;
    }
    .map-overlay-button {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .btn-directions {
        padding: 12px 18px;
        font-size: 12px;
        gap: 10px;
    }
    
    .btn-directions svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-map-wrapper {
        height: 300px;
    }
    
    .contact-hero-section {
        min-height: 40vh;
        padding: 90px 15px 50px;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-details-wrapper {
        padding: 25px 15px;
    }
    
    .btn-submit-contact {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
    }
    
    .contact-info-section {
        padding: 50px 0;
    }
    
    .contact-info-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-card-title {
        font-size: 20px;
    }
    
    .plan-feature-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .alte-servicii-section {
        padding: 60px 0;
    }

    .alte-servicii-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .serviciu-item {
        padding: 20px 15px;
    }

    .serviciu-item:hover {
        padding-left: 20px;
    }

    .serviciu-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .serviciu-name {
        font-size: 16px;
    }

    .serviciu-price {
        font-size: 20px;
        align-self: flex-end;
    }

    .serviciu-item-special {
        padding: 25px 15px;
    }

    .serviciu-item-special .serviciu-name {
        font-size: 18px;
    }

    .serviciu-description {
        font-size: 14px;
    }
    
    .resurse-hero-section {
        min-height: 80vh;
    }

    .resurse-hero-content {
        padding: 20px;
    }

    .resurse-hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .resurse-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .ghiduri-section {
        padding: 60px 0;
    }

    .ghiduri-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .ghiduri-column {
        padding: 20px;
    }

    .ghiduri-column-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .ghiduri-item {
        padding: 20px;
    }

    .ghiduri-icon {
        width: 32px;
        height: 32px;
    }

    .ghiduri-item-title {
        font-size: 16px;
    }

    .comunicate-section {
        padding: 60px 0;
    }

    .comunicate-title {
        font-size: 32px;
    }

    .comunicat-content {
        padding: 25px;
    }

    .comunicat-card-title {
        font-size: 18px;
    }
    
    .choose-plan-section {
        padding: 60px 0;
    }

    .choose-plan-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .plan-card-image {
        height: 180px;
    }

    .plan-card-content {
        padding: 20px;
    }

    .plan-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .plan-card-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .plan-card-button {
        padding: 10px 25px;
        font-size: 11px;
    }
    
    .plan-details-section {
        padding: 60px 0;
    }

    .plan-content-wrapper {
        padding: 0 20px;
        gap: 40px;
    }

    .plan-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .plan-price {
        font-size: 24px;
    }

    .plan-features {
        gap: 25px;
    }

    .plan-feature-icon {
        width: 32px;
        height: 32px;
    }

    .plan-feature-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .plans-hero-section {
        min-height: 500px;
    }

    .plans-hero-content {
        padding: 20px;
    }

    .plans-hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .btn-discover-more {
        padding: 12px 28px;
        font-size: 11px;
    }

    .btn-discover-more svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-title {
        font-size: 26px;
    }

    .hero-welcome {
        font-size: 10px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .footer {
        padding: 60px 20px 100px;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        text-align: center;
        width: 100%;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .story-hero-section {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .story-hero-content {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .story-hero-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .story-hero-title {
        font-size: 32px;
    }
    
    .story-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .professional-training-section {
        padding: 50px 0;
    }
    
    .training-content-wrapper {
        padding: 0 20px;
        gap: 40px;
    }
    
    .training-title {
        font-size: 28px;
    }
    
    .training-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .training-certifications {
        gap: 25px;
    }
    
    .certification-icon {
        width: 32px;
        height: 32px;
    }
    
    .certification-title {
        font-size: 16px;
    }
    
    .certification-institution {
        font-size: 13px;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .team-header {
        padding: 30px 20px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-name {
        font-size: 24px;
    }

    .team-badge {
        font-size: 11px;
        padding: 6px 15px;
    }

    .team-content {
        padding: 30px 20px;
    }

    .team-block {
        margin-bottom: 30px;
    }

    .team-block-title {
        font-size: 18px;
    }

    .team-timeline {
        padding-left: 20px;
    }

    .achievement-card {
        padding: 25px 15px;
    }

    .achievement-card h4 {
        font-size: 28px;
    }

    .personal-message {
        padding: 30px 20px;
    }

    .personal-message h5 {
        font-size: 18px;
    }

    .personal-message p {
        font-size: 14px;
    }

    .team-card-secondary {
        padding: 30px 20px;
    }
    
    .ethics-section {
        padding: 50px 0;
    }

    .ethics-block {
        margin-bottom: 40px;
    }

    .ethics-block-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .ethics-block-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-welcome {
        font-size: 9px;
    }

    .hero-subtitle {
        font-size: 12px;
    }
}