/* ===================================
   Brand Fonts
   =================================== */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Georgia Pro';
    src: url('../fonts/GeorgiaPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Georgia Pro';
    src: url('../fonts/GeorgiaPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   Global Styles & CSS Variables
   =================================== */
:root {
    /* Colors - AHILE Kineto Brand Colors */
    --primary-color: #10d2f4;
    --primary-dark: #0ba8c7;
    --primary-light: #5ee0f7;
    --secondary-color: #10d2f4;
    --accent-color: #0ba8c7;
    --brand-blue-dark: #004e96;

    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --text-dark: #1a252f;

    --bg-color: #ffffff;
    --bg-light: #e6f9fd;
    --bg-gradient: linear-gradient(135deg, #e6f9fd 0%, #d0f3fa 100%);
    --bg-dark: #0a1929;

    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 10px rgba(16, 210, 244, 0.08);
    --shadow-md: 0 8px 30px rgba(16, 210, 244, 0.12);
    --shadow-lg: 0 20px 50px rgba(16, 210, 244, 0.15);
    --shadow-colored: 0 10px 40px rgba(16, 210, 244, 0.2);

    /* Typography - AHILE Kineto Brand
       Note: Gotham font doesn't include Romanian diacritics (ă, â, î, ș, ț),
       so we use Inter as primary — visually similar at heavy weights but full Romanian support. */
    --font-primary: 'Inter', 'Gotham', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-logo: 'Georgia Pro', Georgia, serif;
    
    /* Spacing */
    --header-height: 80px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-gradient);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 210, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 210, 244, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section--bg {
    background: white;
    position: relative;
}

.section--bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-light), white);
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section__header .section__title {
    display: block;
}

.section__description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 210, 244, 0.4);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 210, 244, 0.5);
}

.btn--outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(16, 210, 244, 0.15);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 210, 244, 0.35);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(16, 210, 244, 0.15);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 2px solid rgba(16, 210, 244, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
    text-shadow: 0 2px 10px rgba(16,210,244,0.2);
}

.nav__logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(16, 210, 244, 0.4));
    transition: var(--transition-base);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo:hover .nav__logo-img {
    filter: drop-shadow(0 4px 12px rgba(16, 210, 244, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav__link:hover,
.nav__link.active-link,
.nav__link.active {
    color: var(--secondary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after,
.nav__link.active::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.hero__description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero__features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(16, 210, 244, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 210, 244, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(16, 210, 244, 0.25);
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 15px rgba(16, 210, 244, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 8px 25px rgba(16, 210, 244, 0.4);
}

.feature-card__text {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(16, 210, 244, 0.25);
    transition: var(--transition-base);
}

.hero__image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(16, 210, 244, 0.3);
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 210, 244, 0.15), rgba(16, 210, 244, 0.05));
    z-index: 1;
    opacity: 0;
    transition: var(--transition-base);
}

.hero__image-wrapper:hover::before {
    opacity: 1;
}

.hero__image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(16, 210, 244, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__badge i {
    color: var(--primary-color);
    font-size: 24px;
}

.hero__badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Stats Cards */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 15px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(16, 210, 244, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 210, 244, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 210, 244, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 210, 244, 0.25);
    border-color: var(--primary-color);
}

.stat-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 210, 244, 0.3);
}

.stat-card:hover .stat-card__icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(16, 210, 244, 0.5);
}

.stat-card__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.hero__decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 210, 244, 0.2), rgba(16, 210, 244, 0.1));
    filter: blur(60px);
    animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.decoration-circle--1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.decoration-circle--2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: -4s;
}

/* ===================================
   Despre Section
   =================================== */
.despre__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.despre__image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(16, 210, 244, 0.25);
    transition: var(--transition-base);
}

.despre__image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(16, 210, 244, 0.3);
}

.despre__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.despre__experience {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 35px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(16, 210, 244, 0.45);
    animation: float 3s ease-in-out infinite;
}

.despre__experience::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.despre__experience:hover::before {
    opacity: 1;
}

.despre__experience h3 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.despre__experience p {
    font-size: 14px;
    line-height: 1.4;
}

.despre__text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.despre__text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.despre__intro {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-bottom: 20px !important;
}

.despre__cta {
    margin-top: 40px;
    text-align: center;
}

.despre__features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(16, 210, 244, 0.35);
    transition: var(--transition-base);
    position: relative;
}

.feature__icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.feature:hover .feature__icon {
    transform: rotate(5deg) scale(1.1);
}

.feature:hover .feature__icon::before {
    opacity: 1;
}

.feature__content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature__content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Servicii Section
   =================================== */
.servicii__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(16, 210, 244, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 210, 244, 0.08), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 210, 244, 0.18);
    border-color: var(--primary-color);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(16, 210, 244, 0.35);
    transition: var(--transition-base);
    position: relative;
}

.service-card__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-card__icon {
    transform: rotateY(360deg);
}

.service-card:hover .service-card__icon::after {
    opacity: 1;
}

.service-card__title {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card__description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.service-card__list i {
    color: var(--secondary-color);
    font-size: 16px;
}

.service-card__cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.service-card__cta i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__cta i {
    transform: translateX(5px);
}

/* ===================================
   Beneficii Section
   =================================== */
.beneficii__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(16, 210, 244, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 210, 244, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.benefit-card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 210, 244, 0.18);
}

.benefit-card__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(16, 210, 244, 0.2), rgba(16, 210, 244, 0.1));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 28px;
    position: relative;
    transition: var(--transition-base);
}

.benefit-card__icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-base);
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.15) rotateZ(10deg);
    color: white;
}

.benefit-card:hover .benefit-card__icon::before {
    opacity: 1;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact__intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__item-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(16, 210, 244, 0.35);
    transition: var(--transition-base);
}

.contact__item:hover .contact__item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.contact__item-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact__item-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__item-text a {
    color: var(--text-light);
}

.contact__item-text a:hover {
    color: var(--primary-color);
}

.contact__social h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.social__links {
    display: flex;
    gap: 12px;
}

.social__link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.social__link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact__form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
}

.contact__form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-color);
    transition: var(--transition-base);
    background: white;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.form__message {
    padding: 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form__message.success {
    background: rgba(0, 200, 150, 0.1);
    color: var(--secondary-color);
    display: block;
}

.form__message.error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 210, 244, 0.6), 
        rgba(16, 210, 244, 0.6),
        transparent
    );
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 210, 244, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer__logo i {
    font-size: 28px;
}

.footer__description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer__section {
    max-width: 100%;
}

.footer__section h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: white;
    padding-left: 5px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 35px rgba(16, 210, 244, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    cursor: pointer;
}

.scroll-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 45px rgba(16, 210, 244, 0.55);
}

.scroll-top:hover::before {
    opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section__title {
        font-size: 36px;
    }

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

    .hero__title {
        font-size: 42px;
    }

    .hero__image-wrapper img {
        height: 450px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        min-height: 145px;
    }

    .stat-card__text {
        font-size: 14px;
    }

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

    .servicii__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficii__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: var(--transition-base);
        z-index: 100;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav__link {
        font-size: 16px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .nav__toggle {
        display: block;
    }

    .nav__actions .btn {
        display: none;
    }

    /* Sections */
    .section {
        padding: 70px 0;
    }

    .section__title {
        font-size: 32px;
    }

    .section__description {
        font-size: 16px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 50px);
        padding-bottom: 70px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 16px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__features {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .feature-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }

    .hero__image-wrapper img {
        height: 350px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-card {
        padding: 25px 15px;
        min-height: 140px;
    }

    .stat-card__icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .stat-card__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .servicii__grid {
        grid-template-columns: 1fr;
    }

    .beneficii__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Tablet Responsive */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .section__title {
        font-size: 28px;
    }

    .stat__number {
        font-size: 28px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}