/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Prevent horizontal overflow for all sections */
section, main, header, footer, div {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure all grid containers don't overflow */
[class*="grid"], [class*="__grid"] {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --container-max-width: 1200px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}

.text-accent {
    color: var(--accent-color);
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3),
        0 0 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    color: white;
    box-shadow: var(--shadow-md);
    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.2), transparent);
    transition: left 0.5s ease;
}

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

.btn--primary:hover {
    background: linear-gradient(135deg, #ea580c, #ff6b35);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav__logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Navigation Menu - Mobile First Approach */
.nav__menu {
    display: none;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__item {
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__link--active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Toggle Button */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Menu Active State */
.nav__menu--active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 16px 16px;
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
}

.nav__menu--active .nav__item {
    margin: 0;
    width: 100%;
}

.nav__menu--active .nav__link {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
}

.nav__menu--active .nav__link:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.nav__menu--active .nav__link--active {
    background: var(--accent-color);
    color: white;
}

/* Mobile Toggle Animation */
.nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header Scrolled State */
.header--scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav__menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
    }
    
    .nav__toggle {
        display: none !important;
    }
    
    .nav__item {
        margin: 0;
        width: auto;
    }
    
    .nav__link {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 1rem;
        width: auto;
        text-align: center;
        border: 1px solid transparent;
    }
    
    .nav__link:hover {
        background: var(--bg-light);
        color: var(--accent-color);
        border-color: transparent;
        transform: none;
    }
    
    .nav__link--active {
        background: transparent;
        color: var(--accent-color);
    }
    
    /* Reset mobile-specific styles for desktop */
    .nav__menu--active {
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
    }
    
    .nav__menu--active .nav__item {
        margin: 0;
        width: auto;
    }
    
    .nav__menu--active .nav__link {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 1rem;
        width: auto;
        text-align: center;
        border: 1px solid transparent;
    }
    
    .nav__menu--active .nav__link:hover {
        background: var(--bg-light);
        color: var(--accent-color);
        border-color: transparent;
        transform: none;
    }
    
    .nav__menu--active .nav__link--active {
        background: transparent;
        color: var(--accent-color);
    }
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    overflow-x: hidden;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    max-width: 100%;
}

/* Elemente grafice de fundal pentru hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--accent-color), #ff8c42);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero__cta {
    margin-bottom: 2rem;
}

.hero__cta-note {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.hero__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Hero Gallery Complex Layout */
.hero__gallery {
    position: relative;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

/* Background image pentru hero gallery */
.hero__gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/men.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Elemente grafice decorative - mutat pe ::after pentru că ::before e folosit pentru background */
.hero__gallery::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero__main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero__image-main {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

/* Hero Images Layout - Imagine principală + cercuri rotunde */
.hero__small-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__small-image {
    position: absolute;
    z-index: 6;
    animation: float 6s ease-in-out infinite;
}

.hero__image-small {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.hero__image-small:hover {
    transform: scale(1.1);
}

.hero__small-image--top-left {
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.hero__small-image--top-right {
    top: -40px;
    right: -40px;
    animation-delay: 2s;
}

.hero__small-image--bottom-left {
    bottom: -40px;
    left: -40px;
    animation-delay: 3s;
}

.hero__small-image--bottom-right {
    bottom: -40px;
    right: -40px;
    animation-delay: 5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile text-shadow optimization */
@media (max-width: 767px) {
    .text-accent {
        text-shadow: 
            -0.5px -0.5px 0 rgba(0, 0, 0, 0.25),
            0.5px -0.5px 0 rgba(0, 0, 0, 0.25),
            -0.5px 0.5px 0 rgba(0, 0, 0, 0.25),
            0.5px 0.5px 0 rgba(0, 0, 0, 0.25),
            0 0 2px rgba(0, 0, 0, 0.08);
    }
}

/* Extra Small Mobile */
@media (max-width: 479px) {
    .hero {
        padding: 3rem 0;
        margin: 1rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__content {
        order: 1;
    }
    
    .hero__visual {
        order: 2;
    }
    
    .hero__gallery {
        height: 400px;
        max-width: 280px;
        margin: 2rem auto;
    }
    
    .hero__image-main {
        width: 200px;
        height: 140px;
    }
    
    /* Hero Images - Mobile foarte mic */
    .hero__image-small {
        width: 50px;
        height: 50px;
        border: 2px solid var(--accent-color);
    }
    
    .hero__small-image--top-left {
        top: -25px;
        left: -25px;
    }
    
    .hero__small-image--top-right {
        top: -25px;
        right: -25px;
    }
    
    .hero__small-image--bottom-left {
        bottom: -25px;
        left: -25px;
    }
    
    .hero__small-image--bottom-right {
        bottom: -25px;
        right: -25px;
    }
    
}

/* Standard Mobile */
@media (min-width: 480px) and (max-width: 767px) {
    .hero {
        padding: 4rem 0;
        margin: 1.5rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero__content {
        order: 1;
    }
    
    .hero__visual {
        order: 2;
    }
    
    .hero__gallery {
        height: 450px;
        max-width: 320px;
        margin: 1.5rem auto;
    }
    
    .hero__image-main {
        width: 220px;
        height: 160px;
    }
    
    /* Hero Images - Mobile standard */
    .hero__image-small {
        width: 60px;
        height: 60px;
        border: 2px solid var(--accent-color);
    }
    
    .hero__small-image--top-left {
        top: -30px;
        left: -30px;
    }
    
    .hero__small-image--top-right {
        top: -30px;
        right: -30px;
    }
    
    .hero__small-image--bottom-left {
        bottom: -30px;
        left: -30px;
    }
    
    .hero__small-image--bottom-right {
        bottom: -30px;
        right: -30px;
    }
    
}

/* Tablet Design */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero__gallery {
        height: 500px;
        max-width: 450px;
    }
    
    .hero__image-main {
        width: 300px;
        height: 220px;
    }
    
    /* Hero Images - Tablet */
    .hero__image-small {
        width: 70px;
        height: 70px;
        border: 3px solid var(--accent-color);
    }
    
    .hero__small-image--top-left {
        top: -35px;
        left: -35px;
    }
    
    .hero__small-image--top-right {
        top: -35px;
        right: -35px;
    }
    
    .hero__small-image--bottom-left {
        bottom: -35px;
        left: -35px;
    }
    
    .hero__small-image--bottom-right {
        bottom: -35px;
        right: -35px;
    }
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    .hero__placeholder {
        height: 400px;
    }
    .hero__image {
        max-width: 600px;
        max-height: 400px;
    }
    .nav__logo .logo-img {
        height: 60px;
        max-width: 300px;
    }
    
    .nav__logo .logo-text {
        font-size: 2rem;
    }
    
    .hero__gallery {
        max-width: 650px;
        height: 550px;
    }
    
    .hero__image-main {
        width: 400px;
        height: 280px;
    }
    
    /* Hero Images - Desktop */
    .hero__image-small {
        width: 80px;
        height: 80px;
        border: 3px solid var(--accent-color);
    }
    
    .hero__small-image--top-left {
        top: -40px;
        left: -40px;
    }
    
    .hero__small-image--top-right {
        top: -40px;
        right: -40px;
    }
    
    .hero__small-image--bottom-left {
        bottom: -40px;
        left: -40px;
    }
    
    .hero__small-image--bottom-right {
        bottom: -40px;
        right: -40px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
    padding: 6rem 0 4rem;
    position: relative;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero__description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-hero__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background: white;
}

.philosophy__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.philosophy__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.philosophy__intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.philosophy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.philosophy__item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.philosophy__icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.philosophy__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy__item-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* More Projects Section */
.more-projects {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.more-projects .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.more-projects .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-card-content {
    padding: 1.5rem;
}

.project-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: var(--bg-light);
}

.team__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.team__intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.team__founder {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.team__founder-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.team__founder-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team__founder-quote {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 0;
}

.team__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team__feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.team__feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.team__feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team__feature-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Coverage Section */
.coverage {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.coverage__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.coverage__text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.coverage__cta-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 2rem auto;
    max-width: 600px;
}

.coverage__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    .philosophy__title,
    .team__title,
    .coverage__title {
        font-size: 1.75rem;
    }
    
    .team__founder {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .team__founder-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .coverage__cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Pain Points Section */
.pain-points {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Elemente grafice pentru pain-points */
.pain-points::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    border-radius: 50%;
    opacity: 0.06;
    animation: float 15s ease-in-out infinite;
}

.pain-points__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
    .pain-points__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pain-points__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-point {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.pain-point::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.pain-point:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pain-point__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pain-point__title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.pain-point__description {
    color: var(--text-light);
}

/* Services Section */
.services__cta {
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-card__title {
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card__link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-card__link:hover {
    color: var(--primary-color);
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
}

.why-choose__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.why-choose__cta {
    text-align: center;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature__title {
    margin-bottom: 1rem;
}

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

/* Process Section */
.process__infographic {
    margin: 3rem 0;
    text-align: center;
}

.infographic-svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.step-group {
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-group:hover {
    transform: scale(1.05);
}

.step-group:hover circle {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

/* Infographic animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process__infographic {
    animation: fadeInUp 0.8s ease-out;
}

.step-group {
    animation: fadeInUp 0.6s ease-out;
}

.step-group:nth-child(1) { animation-delay: 0.1s; }
.step-group:nth-child(3) { animation-delay: 0.2s; }
.step-group:nth-child(5) { animation-delay: 0.3s; }
.step-group:nth-child(7) { animation-delay: 0.4s; }

/* Responsive infographic */
@media (max-width: 768px) {
    .infographic-svg {
        transform: scale(0.8);
        margin: -2rem 0;
    }
}

@media (max-width: 480px) {
    .infographic-svg {
        transform: scale(0.6);
        margin: -4rem 0;
    }
}

.process__steps {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 4rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step__number {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step__title {
    margin-bottom: 0.5rem;
}

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

/* Portfolio Section */
.portfolio {
    background: var(--bg-light);
}

.portfolio__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin-bottom: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

.portfolio-item__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.portfolio-item__image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image:hover {
    transform: scale(1.05);
}

.portfolio-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-label--before {
    background: rgba(220, 38, 38, 0.9);
    color: white;
}

.portfolio-label--after {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.portfolio-item__content {
    padding: 0 1.5rem 1.5rem;
}

.portfolio-item__title {
    margin-bottom: 0.5rem;
}

.portfolio-item__description {
    color: var(--text-light);
}

.portfolio__cta {
    text-align: center;
}

/* Portfolio Responsive */
@media (max-width: 767px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-item__images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .portfolio-image {
        height: 220px;
    }
}

/* FAQ Section */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-item__question:hover {
    background: var(--bg-light);
}

.faq-item__icon {
    transition: transform 0.2s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact__content {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact__content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__content h3 {
    margin-bottom: 0.5rem;
}

.contact-item__content a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item__content small {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Form Styles */
.contact__form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form__title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__submit {
    width: 100%;
    margin-bottom: 1rem;
}

.form__note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 2rem;
}

.footer__title {
    color: white;
    margin-bottom: 1rem;
}

.footer__description {
    color: #9ca3af;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer__legal ul {
    list-style: none;
    padding: 0;
}

.footer__legal ul li {
    margin-bottom: 0.5rem;
}

.footer__legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer__legal a:hover {
    color: var(--accent-color);
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    color: #9ca3af;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer__legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.footer__legal-links a:hover {
    color: var(--accent-color);
    background: rgba(249, 115, 22, 0.1);
}

.footer__legal-links span {
    color: #6b7280;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__legal-links {
        justify-content: center;
    }
}

/* Services Page Styles */
.breadcrumbs {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.services-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.services-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-section {
    padding: 5rem 0;
}

.service-section--alt {
    background: var(--bg-light);
}

.service-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-section__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin-bottom: 3rem;
}

.service-card--featured {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-card--featured .service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card--featured .service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card--featured .service-card__description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-section__cta {
    text-align: center;
}

.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    color: var(--accent-color);
}

.faq-item__icon {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    display: none;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer {
    display: block;
}

.faq-item__answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.final-cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.final-cta__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.nav__link--active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero__highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
}

/* Contact Hero Specific Highlights */
.contact-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-highlight-icon {
    background: var(--accent-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.highlight-icon {
    background: var(--accent-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Contact Info Enhancements */
.contact__info-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact__info-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form__subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Mobile Responsive for Contact Hero */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-hero__title {
        font-size: 2rem;
    }
    
    .contact-hero__description {
        font-size: 1.1rem;
    }
    
    .contact-hero__highlights {
        gap: 1rem;
    }
    
    .contact-highlight-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Services Hero Clean */
.services-hero-clean {
    background: #f8fafc;
    padding: 4rem 0;
    text-align: center;
}

.services-hero-clean__content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-clean__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1f2937;
}

.services-hero-clean__description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-hero-clean__highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.highlight-icon {
    color: #f97316;
    font-weight: 700;
    font-size: 1.125rem;
}

.highlight-text {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
}

.services-hero-clean__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-hero-clean__note {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* Services Grid Section */
.services-grid-section {
    padding: 6rem 0;
    background: white;
}

.services-grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-grid-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.service-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__header {
    padding: 2.5rem 2.5rem 0 2.5rem;
    margin-bottom: 2rem;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: #f97316;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card__description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.service-card__features {
    margin-bottom: 2rem;
    padding: 0 2.5rem;
}

.feature-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #f97316;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.service-card__details {
    margin-bottom: 2rem;
    padding: 1.5rem 2.5rem;
    background: #f9fafb;
    border-radius: 0;
}

.service-card__details p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card__details p:last-child {
    margin-bottom: 0;
}

.service-card__details strong {
    color: #1f2937;
    font-weight: 600;
}

.service-card__cta {
    text-align: center;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f97316;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover svg {
    transform: translateX(2px);
}

/* Text Styling Classes */
.text-highlight {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text-emphasis {
    font-weight: 600;
    color: #374151;
    background: linear-gradient(120deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    padding: 2px 4px;
    border-radius: 3px;
}

.text-technical {
    font-weight: 500;
    color: #1e40af;
    font-style: italic;
    border-bottom: 1px dotted #1e40af;
}

.text-guarantee {
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border-left: 3px solid #10b981;
}

/* Service Sections */
.service-section {
    padding: 4rem 0;
}
.service-section:nth-child(even) {
    background-color: var(--bg-light);
}

.service-section__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-section--reverse .service-section__content {
    direction: rtl;
}

.service-section--reverse .service-section__text {
    direction: ltr;
}

.service-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features h3,
.service-process h3,
.service-warranty h3,
.service-benefits h3,
.service-health h3,
.service-technology h3,
.service-durability h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-features__list,
.service-process__list {
    list-style: none;
    padding: 0;
}

.service-features__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features__list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-process__list {
    counter-reset: step-counter;
}

.service-process__list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    counter-increment: step-counter;
}

.service-process__list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-warranty,
.service-benefits,
.service-health,
.service-technology,
.service-durability {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* FAQ Services */
.faq-services {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Services */
.contact-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
}

.contact-services__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-services__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-services__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info__icon {
    font-size: 1.5rem;
}

.contact-info__item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-info__item a,
.contact-info__item p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info__item a:hover {
    color: white;
}

.contact-services__form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.nav__link--active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Service Detailed Description */
.service-detailed-description {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(249, 115, 22, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.service-detailed-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-detailed-description p:last-child {
    margin-bottom: 0;
}

.service-detailed-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Service CTA */
.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.service-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-cta__button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-cta__text {
    flex: 1;
}

.service-cta__arrow {
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.service-cta__button:hover .service-cta__arrow {
    transform: translateX(4px);
}

/* FAQ Expanded */
.faq-expanded {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-expanded-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.faq-expanded__question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.faq-expanded__answer p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-expanded__answer p:last-child {
    margin-bottom: 0;
}

.faq-expanded__answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-clean {
        padding: 3rem 0;
    }
    
    .services-hero-clean__title {
        font-size: 2.5rem;
    }
    
    .services-hero-clean__description {
        font-size: 1rem;
    }
    
    .services-hero-clean__highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid-section {
        padding: 4rem 0;
    }
    
    .services-grid-title {
        font-size: 2rem;
    }
    
    .services-grid-subtitle {
        font-size: 1rem;
    }
    
    .service-card__image {
        height: 200px;
    }
    
    .service-card__header {
        padding: 2rem 2rem 0 2rem;
    }
    
    .service-card__features {
        padding: 0 2rem;
    }
    
    .service-card__icon {
        width: 56px;
        height: 56px;
    }
    
    .service-card__title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .service-card__details {
        padding: 1.25rem 2rem;
    }
    
    .service-card__cta {
        padding: 0 2rem 2rem 2rem;
    }
    
    .service-section {
        padding: 3rem 0;
    }
    
    .service-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-section--reverse .service-section__content {
        direction: ltr;
    }
    
    .service-section__title {
        font-size: 1.75rem;
    }
    
    .service-section__description {
        font-size: 1rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .contact-services {
        padding: 3rem 0;
    }
    
    .contact-services__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-services__title {
        font-size: 1.75rem;
    }
    
    .contact-services__form {
        padding: 1.5rem;
    }
    
    .service-detailed-description {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .service-cta__button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-cta__text {
        text-align: center;
    }
    
    .faq-expanded-item {
        padding: 1.5rem;
    }
    
    .faq-expanded__question {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .services-hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-section__title {
        font-size: 1.75rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card--featured {
        padding: 2rem;
    }
    
    .final-cta__title {
        font-size: 1.75rem;
    }
    
    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.portfolio-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.portfolio-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

.portfolio-hero .hero-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-hero .hero-link:hover {
    color: #ff8c42;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

/* Portfolio Filters */
.portfolio-filters {
    background: var(--bg-light);
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.filter-group {
    text-align: center;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    background: var(--bg-light);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Portfolio Grid */
.portfolio-grid {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.project-card__category {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-card__content {
    padding: 1.5rem;
}

.project-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.project-card__location,
.project-card__type {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-card__excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.project-card__link:hover {
    color: var(--accent-color);
}

.project-card__link .arrow {
    transition: transform 0.2s ease;
}

.project-card__link:hover .arrow {
    transform: translateX(4px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 2rem;
}

.no-results__content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results__content p {
    color: var(--text-light);
}

.reset-filters-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.reset-filters-btn:hover {
    color: var(--accent-color);
}

/* Portfolio CTA */
.portfolio-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 3rem 0;
    }
    
    .portfolio-hero__title {
        font-size: 2rem;
    }
    
    .portfolio-hero__description {
        font-size: 1.1rem;
    }
    
    .filters-container {
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card__meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .portfolio-filters {
        padding: 2rem 0;
    }
    
    .portfolio-grid {
        padding: 3rem 0;
    }
    
    .project-card__content {
        padding: 1rem;
    }
    
    .project-card__title {
        font-size: 1.1rem;
    }
}

/* ========================================
   INDIVIDUAL PROJECT PAGE STYLES
   ======================================== */

/* Project Hero */
.project-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
}

.project-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-hero__category {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-badge,
.location-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-hero__description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Project Summary */
.project-summary {
    padding: 4rem 0;
    background: var(--bg-light);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.summary-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
}

.summary-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-card__value {
    color: var(--text-light);
    line-height: 1.5;
}

.summary-card__value small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Project Sections */
.project-section {
    padding: 4rem 0;
}

.project-section--alt {
    background: var(--bg-light);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.section-content--reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content--reverse .section-text {
    order: 2;
}

.section-content--reverse .section-images {
    order: 1;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Problem Highlights */
.problem-highlights,
.result-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item,
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-icon,
.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
}

.benefit-icon {
    background: rgba(34, 197, 94, 0.1);
}

.problem-content h4,
.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.problem-content p,
.benefit-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Solution Steps */
.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item--featured {
    grid-column: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Project Testimonial */
.project-testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    padding: 4rem 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    quotes: """ """ "'" "'";
}

.testimonial-quote blockquote::before {
    content: open-quote;
    font-size: 2rem;
    color: var(--accent-color);
}

.testimonial-quote blockquote::after {
    content: close-quote;
    font-size: 2rem;
    color: var(--accent-color);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.author-title,
.author-location {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.stars {
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Related Projects */
.related-projects {
    padding: 4rem 0;
    background: var(--bg-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card__image {
    height: 200px;
    overflow: hidden;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card__image img {
    transform: scale(1.05);
}

.related-card__content {
    padding: 1.5rem;
}

.related-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-card__location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-card__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-card__link:hover {
    color: var(--accent-color);
}

/* Project CTA */
.project-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.project-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.project-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-cta .cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design for Project Pages */
@media (max-width: 768px) {
    .project-hero__title {
        font-size: 2rem;
    }
    
    .project-hero__category {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-content,
    .section-content--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content--reverse .section-text,
    .section-content--reverse .section-images {
        order: unset;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-rating {
        align-items: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .project-cta .cta-title {
        font-size: 1.75rem;
    }
    
    .project-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .project-hero {
        padding: 2rem 0;
    }
    
    .project-summary {
        padding: 3rem 0;
    }
    
    .project-section {
        padding: 3rem 0;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .testimonial-quote blockquote {
        font-size: 1.1rem;
    }
}

/* ===== COVERAGE AREA SECTION ===== */
.coverage-area {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.coverage-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.coverage-area__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.coverage-area__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.coverage-area__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-area__zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.zone-group {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.zone-group__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.zone-tag {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.zone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.coverage-area__cta {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
}

.coverage-area__note {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.coverage-area__note strong {
    color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coverage-area {
        padding: 2rem 0;
    }
    
    .coverage-area__title {
        font-size: 1.75rem;
    }
    
    .coverage-area__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .coverage-area__zones {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .zone-group {
        padding: 1.25rem;
    }
    
    .zone-group__title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .zone-tags {
        gap: 0.5rem;
    }
    
    .zone-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .coverage-area__cta {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .coverage-area__note {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    padding: 4rem 0;
    background: var(--bg-light);
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card__icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card__content {
    position: relative;
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-card__unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-left: 0.25rem;
}

.stat-card__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card__period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.statistics__verification {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
}

.verification-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.verification-note svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

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

.testimonial-card__quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-project {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.author-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-card__verification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-card__verification svg {
    color: var(--primary-color);
}

.testimonials__cta {
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== CALCULATOR SECTION ===== */
.calculator {
    padding: 3rem 0;
    background: var(--bg-light);
}

.calculator__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator__form {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    min-height: 500px;
    max-height: 600px;
    overflow-y: auto;
}

.calculator-step {
    display: none;
}

.calculator-step.active {
    display: block;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.option-icon {
    font-size: 1.5rem;
}

.option-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.option-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.area-input {
    max-width: 400px;
}

.area-input label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.area-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.area-help {
    color: var(--text-light);
}

.complexity-options {
    display: grid;
    gap: 1rem;
}

.complexity-option {
    cursor: pointer;
}

.complexity-option input[type="radio"] {
    display: none;
}

.complexity-option .option-content {
    display: block;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.complexity-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.complexity-option .option-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.complexity-option .option-description {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.complexity-option .option-multiplier {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.result-container {
    text-align: center;
}

.price-result {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-range {
    font-size: 1.1rem;
    opacity: 0.8;
}

.result-details {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: var(--text-light);
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.result-disclaimer {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #92400e;
}

.result-cta .cta-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.calculator-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.calculator__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-indicator {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.progress-step:last-child {
    border-bottom: none;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--accent-color);
    color: white;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-label {
    font-weight: 500;
    color: var(--text-dark);
}

.calculator-info {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.calculator-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.calculator-info ul {
    list-style: none;
    padding: 0;
}

.calculator-info li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* ===== TRUST SIGNALS SECTION ===== */
.trust-signals {
    padding: 4rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    gap: 3rem;
}

.trust-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e2e8f0;
}

.trust-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.trust-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.trust-validity {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-footer {
    margin-top: 3rem;
    text-align: center;
}

.trust-summary {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
}

.trust-summary h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.trust-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-weight: 500;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .statistics__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card__number {
        font-size: 2.5rem;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Calculator Mobile Optimizations */
    .calculator {
        padding: 2rem 0;
    }
    
    .calculator__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator__form {
        padding: 1rem;
        min-height: auto;
        max-height: none;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .option-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .option-icon {
        font-size: 1.25rem;
    }
    
    .option-title {
        font-size: 0.9rem;
    }
    
    .option-price {
        font-size: 0.8rem;
    }
    
    .area-input input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .complexity-options {
        gap: 0.5rem;
    }
    
    .complexity-option .option-content {
        padding: 0.75rem;
    }
    
    .price-result {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .result-details {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .calculator-navigation {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .progress-indicator {
        padding: 1rem;
    }
    
    .progress-step {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.9rem;
    }
    
    .calculator-info {
        padding: 1rem;
    }
    
    .calculator-info h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .calculator-info li {
        padding: 0.25rem 0;
        font-size: 0.9rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .trust-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile - Calculator */
@media (max-width: 480px) {
    .calculator {
        padding: 1.5rem 0;
    }
    
    .calculator__form {
        padding: 0.75rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .option-content {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .option-title {
        font-size: 0.85rem;
    }
    
    .option-price {
        font-size: 0.75rem;
    }
    
    .area-input input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .price-result {
        padding: 0.75rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    .price-label {
        font-size: 1rem;
    }
    
    .result-details {
        padding: 0.5rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .progress-indicator {
        padding: 0.75rem;
    }
    
    .calculator-info {
        padding: 0.75rem;
    }
    
    .calculator-info h4 {
        font-size: 0.9rem;
    }
    
    .calculator-info li {
        font-size: 0.8rem;
    }
}

/* ===== PRIVACY POLICY STYLES ===== */
.privacy-policy {
    min-height: 100vh;
}

.privacy-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 80px;
}

.privacy-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.privacy-hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.privacy-content__wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-toc {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.privacy-toc h3 {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc li {
    margin-bottom: 0.5rem;
}

.privacy-toc a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.privacy-toc a:hover {
    color: #2563eb;
}

.privacy-article {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 1rem 0;
}

.privacy-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.info-box,
.warning-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.info-box h4,
.warning-box h4 {
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.purpose-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-card,
.right-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.purpose-card h4,
.right-item h4 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-weight: 600;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cookie-control {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #bbf7d0;
}

.security-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.contact-gdpr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.exercise-rights {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.privacy-updates {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 3rem;
}

.last-updated {
    background: #e5e7eb;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-weight: 500;
    color: #374151;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 0 3rem;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-hero__subtitle {
        font-size: 1.125rem;
    }
    
    .privacy-hero__meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .privacy-content__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-toc {
        position: static;
        order: 2;
    }
    
    .privacy-article {
        padding: 2rem;
        order: 1;
    }
    
    .purpose-grid,
    .rights-grid,
    .cookie-types,
    .security-measures,
    .contact-gdpr {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 3rem 0 2rem;
    }
    
    .privacy-hero h1 {
        font-size: 1.75rem;
    }
    
    .privacy-article {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== END PRIVACY POLICY STYLES ===== */

/* ===== SERVICES LINKS SECTION ===== */
.services-links {
    padding: 3rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.services-links__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-links__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-links__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.service-link__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-link__text {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .services-links {
        padding: 2rem 0;
    }
    
    .services-links__title {
        font-size: 1.5rem;
    }
    
    .services-links__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-links__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-link {
        padding: 1rem 1.25rem;
    }
    
    .service-link__text {
        font-size: 0.9rem;
    }
}

/* ===== LINKCIRCLE WIDGET STYLES ===== */
.linkcircle-footer {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9em;
    background: var(--bg-light);
}

.linkcircle-footer #linkcircle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive pentru LinkCircle Widget */
@media (max-width: 768px) {
    .linkcircle-footer {
        margin: 20px 0;
        padding: 15px 0;
        font-size: 0.85em;
    }
}

/* ===== END LINKCIRCLE WIDGET STYLES ===== */

/* ===== INTERNAL LINKING STYLES - AI OPTIMIZED ===== */
.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.inline-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.inline-link:hover {
    color: var(--accent-color);
}

.inline-link:hover::after {
    width: 100%;
    background: var(--accent-color);
}

/* Variante de culoare pentru inline links */
.inline-link--light {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.inline-link--light:hover {
    color: #ffffff;
}

.inline-link--light::after {
    background: rgba(255, 255, 255, 0.5);
}

.inline-link--light:hover::after {
    background: #ffffff;
}

.inline-link--accent {
    color: var(--accent-color);
    font-weight: 600;
}

.inline-link--accent:hover {
    color: #d65a0e;
}

.inline-link--accent::after {
    background: var(--accent-color);
}

.inline-link--accent:hover::after {
    background: #d65a0e;
}

.inline-link--small {
    font-size: 0.9em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

/* Styling pentru dark backgrounds */
.hero__description .inline-link,
.coverage-area__description .inline-link {
    color: var(--primary-color);
}

.hero__description .inline-link:hover,
.coverage-area__description .inline-link:hover {
    color: var(--accent-color);
}

/* Responsive pentru inline links */
@media (max-width: 768px) {
    .inline-link {
        font-weight: 500;
    }
    
    .inline-link--small {
        font-size: 0.85em;
    }
}

/* Focus states pentru accessibility */
.inline-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.inline-link:focus:not(:focus-visible) {
    outline: none;
}

/* ===== END INTERNAL LINKING STYLES ===== */

/* ===== TRUST BADGES & CERTIFICATIONS STYLES ===== */
.trust-badges {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-badge {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.trust-badge__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
}

.trust-badge__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.trust-badge__description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trust-badge__verified {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #10b981;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Guarantees Section */
.guarantees-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.guarantees-section__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.guarantees__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: scale(1.05);
}

.guarantee-item__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.guarantee-item__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== COMPETITION COMPARISON STYLES ===== */
.competition-comparison {
    padding: 5rem 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.comparison-table__header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    padding: 1.5rem;
    color: white;
}

.comparison-table__cell {
    padding: 1.25rem;
    font-size: 0.95rem;
}

.comparison-table__cell--feature {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table__cell--us {
    text-align: center;
    font-weight: 600;
    color: white;
}

.comparison-table__cell--others {
    text-align: center;
    color: white;
    opacity: 0.9;
}

.comparison-badge {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.comparison-table__row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.comparison-table__row:hover {
    background: #f9fafb;
}

.comparison-table__row:last-child {
    border-bottom: none;
}

.comparison-check {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.comparison-cross {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.comparison-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
}

.comparison-cta__text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Responsive pentru Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        padding: 3rem 0;
    }
    
    .trust-badges__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-badge {
        padding: 1.5rem;
    }
    
    .guarantees-section {
        padding: 2rem 1.5rem;
    }
    
    .guarantees__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-table__header,
    .comparison-table__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comparison-table__cell {
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .comparison-table__cell--feature {
        background: #f9fafb;
        font-weight: 700;
    }
    
    .comparison-table__cell--us {
        background: #ecfdf5;
    }
    
    .comparison-table__cell--others {
        background: #fef2f2;
        color: var(--text-light);
    }
    
    .comparison-cta {
        padding: 2rem 1.5rem;
    }
}

/* ===== END TRUST BADGES & COMPARISON STYLES ===== */

/* ===== PROCESS SECTION ENHANCEMENTS ===== */
.step__benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.step__benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step__benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ===== END PROCESS SECTION ENHANCEMENTS ===== */
