/* Colun Tax - Complete Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Raleway', sans-serif; font-size: 17px; line-height: 1.7; color: #333; }
.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.site-header { background: #fff; padding: 20px 0; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 100px; }
.main-nav ul { display: flex; gap: 35px; list-style: none; }
.main-nav a { font-size: 14px; font-weight: 600; text-transform: uppercase; color: #333; padding: 10px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: #79201c; border-bottom-color: #79201c; }

/* Hero */
.hero-section {
    position: relative;
    height: 840px;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-content {
    position: absolute;
    top: 490px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    background: rgba(134, 53, 50, 0.7);
    padding: 5px 30px 12px;
    margin: 0 0 24px 0;
    display: inline-block;
    line-height: 56px;
    white-space: nowrap;
    text-align: center;
}
.hero-content h2 {
    font-size: 44px;
    font-weight: 700;
    background: rgba(134, 53, 50, 0.7);
    padding: 5px 30px 12px;
    display: inline-block;
    line-height: 56px;
    margin: 0;
}

/* Intro Section */
.intro-section {
    background: #fff;
    padding: 60px 0;
}
.intro-box {
    background: rgba(121, 32, 28, 0.95);
    color: #fff;
    padding: 45px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.intro-box p {
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}

/* Services */
.services-section { padding: 100px 0 80px; }
.section-title { text-align: center; font-size: 2.2rem; font-weight: 600; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.service-card { background: #fcfcfc; padding: 45px 35px; text-align: center; border: 1px solid #f0f0f0; transition: 0.3s; }
.service-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-5px); }
.service-card h3 { font-size: 1.35rem; margin: 20px 0; color: #333; }
.service-card p { color: #666; margin-bottom: 25px; }
.read-more { color: #79201c; font-weight: 600; font-size: 14px; text-transform: uppercase; }

/* Footer */
.site-footer { background: #f8f8f8; padding: 30px 0; border-top: 1px solid #e5e5e5; margin-top: 60px; text-align: center; }
.site-footer p { color: #666; font-size: 14px; margin: 5px 0; }
.site-footer a { color: #79201c; }

/* Page Header */
.page-header { background: #79201c; color: #fff; padding: 60px 0 40px; text-align: center; }
.page-header h1 { font-size: 2.5rem; }

/* Page Banner with Background Image */
.page-banner {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 124, 0.3);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-separator {
    width: 246px;
    height: 11px;
    margin: 0 auto;
    background: repeating-linear-gradient(
        90deg,
        #fff 0,
        #fff 2px,
        transparent 2px,
        transparent 12px
    );
}

/* Two Column Section with Maroon Box */
.two-column-section {
    position: relative;
    padding: 100px 0;
    background-size: contain;
    background-position: 100% 50%;
    background-color: #f7f8fa;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.maroon-box {
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 60px 50px;
    font-size: 18px;
    font-weight: 200;
    line-height: 1.8;
}

.maroon-box p {
    margin-bottom: 25px;
    font-weight: 200;
}

.maroon-box p:last-child {
    margin-bottom: 0;
}

/* Two Column Section With Image */
.two-column-section-with-image {
    padding: 80px 0;
    background: #fff;
}

.two-column-section-with-image .two-column-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: stretch;
}

.two-column-section-with-image .column-left {
    display: flex;
    align-items: center;
}

.two-column-section-with-image .column-right {
    display: flex;
    align-items: stretch;
}

.two-column-section-with-image .content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Abonamente Section - EXACT from original */
.abonamente-section {
    background-size: cover;
    background-position: 50% 50%;
    padding: 100px 0;
    min-height: 600px;
}

.abonamente-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.abonamente-text {
    padding-right: 30px;
}

.maroon-box-abonamente {
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 50px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.maroon-box-abonamente p {
    margin-bottom: 20px;
    font-weight: 200;
}

.maroon-box-abonamente p:last-child {
    margin-bottom: 0;
}

.maroon-box-abonamente strong {
    font-weight: 200;
}

.abonamente-image {
    /* Empty - background shows through */
}

/* Consultanta Section - EXACT from original */
.consultanta-section {
    background-size: cover;
    background-position: 50% 50%;
    padding: 100px 0;
    min-height: 680px;
}

.consultanta-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.consultanta-text {
    padding-right: 30px;
}

.maroon-box-consultanta {
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 50px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.maroon-box-consultanta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maroon-box-consultanta li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
}

.maroon-box-consultanta li:last-child {
    margin-bottom: 0;
}

.maroon-box-consultanta li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.consultanta-image {
    /* Empty - background shows through */
}

/* Revizuiri Section - Text on RIGHT side */
.revizuiri-section {
    background-size: cover;
    background-position: 50% 50%;
    padding: 100px 0;
    min-height: 1006px;
}

.revizuiri-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.revizuiri-image {
    /* Empty - background shows through (woman on LEFT) */
}

.revizuiri-text {
    padding-left: 30px;
}

.maroon-box-revizuiri {
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 50px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.maroon-box-revizuiri ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maroon-box-revizuiri li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.maroon-box-revizuiri li:last-child {
    margin-bottom: 0;
}

.maroon-box-revizuiri li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

/* Asistenta Section - Text on LEFT side */
.asistenta-section {
    background-size: cover;
    background-position: 50% 50%;
    padding: 100px 0;
    min-height: 790px;
}

.asistenta-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.asistenta-text {
    padding-right: 30px;
}

.maroon-box-asistenta {
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 50px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.maroon-box-asistenta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maroon-box-asistenta li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.maroon-box-asistenta li:last-child {
    margin-bottom: 0;
}

.maroon-box-asistenta li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.asistenta-image {
    /* Empty - background shows through */
}

/* Biography Section */
.bio-section {
    padding: 80px 0;
    background: #fff;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.bio-image img {
    width: 100%;
    max-width: 467px;
    height: auto;
    border: 1px solid #e5e5e5;
}

.bio-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.bio-content h4 {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 40px;
}

.bio-timeline {
    margin-top: 30px;
}

.timeline-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #79201c;
}

.timeline-item strong {
    display: block;
    color: #79201c;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-item p {
    color: #666;
    margin: 0;
}

/* Content */
.page-content { padding: 60px 0; }
.page-content h2 { color: #79201c; margin: 40px 0 20px; }

/* Mobile */
@media (max-width: 768px) {
  .main-nav ul { flex-direction: column; }
  .hero-section { height: 500px; }
  .hero-content {
    position: static;
    top: auto;
    left: auto;
    padding: 20px;
    margin-top: 200px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
    padding: 15px 20px;
    max-width: 100%;
    margin: 0 0 15px 0;
  }
  .hero-content h2 {
    font-size: 1.5rem;
    padding: 15px 20px;
    margin-left: 0;
  }
  .intro-box { padding: 30px 25px; }
  .intro-box p { font-size: 16px; line-height: 1.6; }
  .services-grid { grid-template-columns: 1fr; }
  .two-column-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 2rem; }
  .page-banner { height: 250px; }
}


/* Client logos */
.client-logo-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.client-logo-card img {
    max-width: 177px;
    max-height: 177px;
    width: 177px;
    height: 177px;
    object-fit: contain;
}

/* Service icons */
.service-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
}

/* Clients logos section */
.clients-logos-section {
    padding: 120px 0 100px;
    background: #fff;
}

/* Testimonials section */
.testimonials-section {
    background: rgba(121, 32, 28, 0.95);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    font-size: 22px;
    line-height: 28.116px;
    font-style: normal;
    margin-bottom: 30px;
    font-weight: 100;
    color: #fff;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 800;
    margin-top: 12px;
    color: #fff;
}

.carousel-controls {
    margin-top: 40px;
}

.carousel-prev,
.carousel-next {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #fff;
    color: #79201c;
}

/* Contact Page Styles */
.contact-intro-section {
    padding: 60px 0 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #333;
    margin: 0;
}

.contact-main-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    position: relative;
}

.contact-building-wrapper {
    position: relative;
    width: 100%;
}

.contact-building-image {
    width: 100%;
    height: auto;
    display: block;
}

.contact-overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(121, 32, 28, 0.9);
    color: #fff;
    padding: 40px;
    margin: 0;
}

.contact-overlay-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-company-details {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.contact-company-details strong {
    font-weight: 600;
}

.contact-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.contact-person {
    text-align: center;
}

.contact-person-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.contact-person h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.contact-person-mobile,
.contact-person-email {
    font-size: 16px;
    color: #333;
    margin: 8px 0;
}

.contact-person-email a {
    color: #79201c;
    text-decoration: none;
}

.contact-person-email a:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 20px 0 80px;
    background: #fff;
}

.contact-form {
    max-width: 1300px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    border: 1px solid #ddd;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #79201c;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-btn {
    background: #79201c;
    color: #fff;
    padding: 15px 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-submit-btn:hover {
    background: #5a1715;
}

/* ============================================
   NOUTĂȚI FISCALE (NEWS PAGE)
   ============================================ */
.noutati-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.noutati-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1300px;
    margin: 0 auto;
}

.noutati-card {
    background: #fff;
    margin-bottom: 26px;
    transition: box-shadow 0.3s;
}

.noutati-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.noutati-card-image {
    margin-bottom: 20px;
}

.noutati-card-image a {
    display: block;
    text-decoration: none;
    border: none;
}

.noutati-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.noutati-card-image a:hover img {
    opacity: 0.9;
}

.noutati-card-title {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: rgb(34, 34, 34);
    line-height: 28.8px;
    margin-top: 0;
    margin-bottom: 15px;
}

.noutati-card-title a {
    color: rgb(34, 34, 34);
    text-decoration: none;
    transition: color 0.3s;
}

.noutati-card-title a:hover {
    color: rgb(121, 32, 28);
}

.noutati-card-meta {
    margin-bottom: 15px;
}

.noutati-card-author a {
    font-size: 18px;
    font-weight: 500;
    color: rgb(121, 32, 28);
    text-decoration: none;
    transition: color 0.3s;
}

.noutati-card-author a:hover {
    color: rgb(34, 34, 34);
}

.noutati-card-excerpt {
    font-size: 17px;
    font-weight: 200;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: rgb(34, 34, 34);
    line-height: 26px;
    margin-bottom: 20px;
}

.noutati-read-more {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: rgb(34, 34, 34);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.noutati-read-more:hover {
    color: rgb(121, 32, 28);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-content > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .testimonials-carousel {
        min-height: 400px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-overlay-box {
        position: relative;
        margin-top: 20px;
    }
    .noutati-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   BLOG POST PAGES
   ============================================ */
.blog-post-section {
    padding: 80px 0;
    background: #fff;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e5e5;
}

.post-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-author {
    display: inline-block;
}

.post-author {
    font-style: italic;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
}

.post-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #79201c;
    margin: 35px 0 20px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: #79201c;
    text-decoration: underline;
    transition: color 0.3s;
}

.post-content a:hover {
    color: #5a1715;
}

.post-footer-info {
    background: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #79201c;
}

.post-footer-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.post-footer-info p:last-child {
    margin-bottom: 0;
}

.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.back-to-news {
    display: inline-block;
    color: #79201c;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.back-to-news:hover {
    color: #5a1715;
    text-decoration: underline;
}

/* Responsive for blog posts */
@media (max-width: 768px) {
    .post-header h2 {
        font-size: 1.8rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
}
