/* ==================== ROOT & RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #3f1713;
    background-color: #ffffff;
    line-height: 1.6;
}

/* ==================== FONT AWESOME ==================== */
i, [class*="fa-"] {
    display: inline-block;
}

svg[data-icon] {
    display: inline-block;
    vertical-align: middle;
}

/* ==================== VARIABLES ==================== */
:root {
    --primary-color: #E14E12;
    --text-dark: #3f1713;
    --text-light: #666666;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(225, 78, 18, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    position: relative;
}

.nav-logo img {
    height: 55px;
    width: auto;
    display: none;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b2a 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 300;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 78, 18, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c13d0a 0%, #e63d1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 78, 18, 0.45);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #E14E12 0%, #ff7a3d 50%, #E14E12 100%);
    background-size: 400% 400%;
    padding: 120px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    color: white;
    margin-bottom: 25px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-left p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-right {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.about-card h3 {
    margin-bottom: 15px;
}

.about-card p {
    font-size: 15px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 100px 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-thumb {
    width: 100%;
    height: 170px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 18px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.service-image {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 13px;
    margin-bottom: 15px;
    word-break: break-word;
    line-height: 1.2;
}

.service-item p {
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 60px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 5px;
    color: #c13d0a;
}

.read-more-all {
    text-align: center;
}

/* ==================== CASE STUDIES ==================== */
.case-studies-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.case-item {
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.case-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.case-item p {
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== HOW WE WORK ==================== */
.how-we-work-section {
    padding: 100px 40px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-item {
    text-align: center;
    position: relative;
}

.how-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.how-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.how-item p {
    font-size: 15px;
}

/* ==================== CONTACT CTA ==================== */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d94410 100%);
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.contact-cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Banner for About & Other Pages */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
    padding: 70px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.banner-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 20px 60px;
    font-size: 18px;
}

/* ==================== eFAKTURA SECTION ==================== */
.efaktura-section {
    padding: 100px 40px;
}

.efaktura-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.efaktura-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.efaktura-content .btn {
    margin-top: 20px;
}

/* ==================== VIDEO EMBED ==================== */
.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-actions {
    margin-top: 20px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #3f1713;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding: 0 40px;
}

.footer-col h4,
.footer-col h5 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid #444444;
    text-align: center;
    color: #999999;
    font-size: 14px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        gap: 0;
        z-index: 200;
    }

    .nav-menu.active li {
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        display: block;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .about-grid,
    .services-container,
    .case-grid,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .service-item {
        padding: 25px 20px;
    }

    .service-thumb {
        height: 150px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-section,
    .about-section,
    .services-section,
    .case-studies-section,
    .how-we-work-section,
    .contact-cta-section,
    .efaktura-section {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .about-grid,
    .services-container,
    .case-grid,
    .how-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-item {
        padding: 20px 15px;
    }

    .service-thumb {
        height: 130px;
        margin-bottom: 12px;
    }

    .service-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 13px;
        min-height: 50px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-card i {
        font-size: 40px;
    }

    .case-item {
        padding: 30px 20px;
    }

    .case-item i {
        font-size: 36px;
    }

    .how-item {
        padding: 25px 15px;
    }

    .how-number {
        font-size: 28px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn {
        padding: 16px 40px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .footer-bottom {
        padding: 30px 15px 0;
    }

    .footer-col h4,
    .footer-col h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 13px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* About Page Styles */
.about-mission {
    padding: 80px 40px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    color: #999;
    font-size: 14px;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Team Section - About Me */
.team-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.about-me-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(225, 78, 18, 0.15);
}

.about-me-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-me-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-me-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

.about-me-content p:last-of-type {
    margin-bottom: 30px;
}

.about-me-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.skill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skill i {
    color: var(--primary-color);
    font-size: 18px;
}

.skill span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Values Section */
.values-section {
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(225, 78, 18, 0.05) 0%, rgba(225, 78, 18, 0.02) 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    display: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: white;
    border-radius: 50%;
    transition: all 0.25s ease;
    font-size: 16px;
}

.social-links a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
.social-links a.fb {
    background: #1877F2;
}

.social-links a.ig {
    background: linear-gradient(135deg, #fd5949 0%, #d6249f 50%, #285AEB 100%);
}

/* Mobile Styles for About Page */
@media (max-width: 768px) {
    .about-me-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
        rotate: 90deg;
    }

    .about-me-skills {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 60px 30px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .btn-lg {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        font-size: 36px;
    }

    .about-me-content h2 {
        font-size: 28px;
    }

    .about-me-content p {
        font-size: 14px;
    }

    .cta-banner {
        padding: 50px 20px;
    }

    .banner-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }
}

/* ================ HERO SECTIONS ================ */
.hero-section-simple {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
    padding: 100px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section-simple::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section-simple::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section-simple .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section-simple h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.hero-section-simple p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}
/* Services Detailed Section */
.services-detailed {
    padding: 80px 40px;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(225, 78, 18, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-modern h3 {
    font-size: 22px;
    color: #333;
    margin: 25px 20px 15px;
    font-weight: 700;
}

.service-card-modern p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.service-highlights {
    margin: 20px 20px;
    padding: 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.highlight i {
    color: var(--primary-color);
    font-size: 16px;
}

.service-price {
    color: var(--primary-color);
    font-size: 16px;
    margin: 15px 20px 20px !important;
    font-weight: 700;
}

.service-card-modern .btn {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
    font-size: 14px;
    padding: 12px 20px;
}

/* eFaktura Section */
.efaktura-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b2a 100%);
    color: white;
    text-align: center;
}

.efaktura-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.efaktura-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 200px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .service-card-modern h3 {
        font-size: 18px;
        margin: 20px 15px 12px;
    }

    .service-card-modern p {
        font-size: 14px;
        margin: 0 15px 15px;
    }

    .service-price {
        margin: 12px 15px 15px !important;
    }

    .service-card-modern .btn {
        margin: 0 15px 15px 15px;
        width: calc(100% - 30px);
    }

    .hero-section-simple {
        padding: 70px 30px;
    }

    .hero-section-simple h1 {
        font-size: 36px;
    }

    .hero-section-simple p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
    }

    .service-card-modern h3 {
        font-size: 18px;
    }

    .highlight {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-section-simple {
        padding: 50px 20px;
    }

    .hero-section-simple h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-section-simple p {
        font-size: 15px;
    }
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-item .news-date {
    padding: 0 25px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
}

.news-item h3 {
    padding: 0 25px;
    margin: 15px 0;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-dark);
}

.news-item p {
    padding: 0 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-item .read-more {
    display: inline-block;
    padding: 0 25px 25px 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-item .read-more:hover {
    color: #ff6b2a;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-item h3 {
        font-size: 16px;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: white;
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(225, 78, 18, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(225, 78, 18, 0.15);
    border-color: var(--primary-color);
}

.contact-info-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: #555;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #ff6b2a;
}

.contact-info-card .small {
    font-size: 11px;
    color: #999;
    margin-top: 12px;
    line-height: 1.3;
}

.contact-note {
    background: linear-gradient(135deg, rgba(225, 78, 18, 0.1) 0%, rgba(225, 78, 18, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* New Contact Main two-column layout */
.contact-main-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-main-left .contact-info-grid {
    grid-template-columns: 1fr;
}

.contact-main-right .contact-form {
    max-width: none;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(225, 78, 18, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.additional-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin-top: 60px;
}

.additional-info-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(225, 78, 18, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #E14E12;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #ff6b2a;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.info-card ul li {
    margin-bottom: 8px;
}

.info-card ul li a {
    font-weight: normal;
    font-size: 13px;
}

/* Hours List Styling */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item .day {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 13px;
}

.hour-item .time {
    color: #E14E12;
    font-weight: 600;
    font-size: 13px;
}

.hour-item.closed .time {
    color: #999;
}

/* Document List */
.doc-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.doc-list li {
    margin-bottom: 12px;
}

.doc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E14E12;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 10px;
    border-radius: 6px;
}

.doc-list a:hover {
    background: rgba(225, 78, 18, 0.1);
    padding-left: 15px;
}

.doc-list a i {
    font-size: 12px;
}

/* Social Link */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E14E12 0%, #ff6b2a 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(225, 78, 18, 0.3);
}

.social-link i {
    font-size: 16px;
}

/* Inline social links group */
.social-links-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Brand variants */
.social-link.fb {
    background: #1877F2; /* Facebook brand color */
}

.social-link.ig {
    background: linear-gradient(135deg, #fd5949 0%, #d6249f 50%, #285AEB 100%);
}

@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-card i {
        font-size: 28px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .hours-list {
        gap: 10px;
    }

    .hour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
