:root {
    --primary-yellow: #dcc24c;
    --primary-black: #000000;
    --dark-grey: #1a1a1a;
    --card-grey: #3a3a3a;
    --text-white: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.logo-yellow {
    color: var(--primary-yellow);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ccc;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

nav a:hover {
    color: var(--primary-yellow);
}

.btn-nav {
    background-color: var(--primary-yellow);
    color: var(--primary-black) !important;
    padding: 8px 15px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #fff;
    color: #000 !important;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('/img/body.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 300;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-yellow:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn-black {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 2px solid var(--primary-yellow);
    backdrop-filter: blur(5px);
}

.btn-black:hover {
    background-color: var(--primary-yellow);
    color: #000;
    transform: translateY(-2px);
}

.features-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    padding: 35px 0;
    z-index: 3;
    border-top: 3px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.feature-item {
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.feature-item:hover i {
    color: var(--primary-yellow);
}

.feature-item span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #ddd;
}

.why-us {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #222 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

.section-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.why-us h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.separator {
    width: 100px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.subtitle {
    font-size: 20px;
    color: #bbb;
    font-weight: 300;
}

.subtitle strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(50, 50, 50, 0.7);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(220, 194, 76, 0.3);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.icon-box {
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover .icon-box {
    transform: scale(1.2);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stat-card span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    background-color: #0f0f0f;
    padding: 80px 0 20px 0;
    color: #aaa;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-col i {
    color: var(--primary-yellow);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
    font-size: 13px;
    color: #555;
}

#backToTop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

#backToTop:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 42px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-bar {
        position: relative;
        border-top: none;
        background-color: #111;
    }

    .why-us {
        padding: 60px 0;
    }

    .why-us h2 {
        font-size: 34px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col ul li a:hover {
        transform: none; 
    }
}

.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: url('../img/header-bg.jpg') no-repeat center center/cover; 
    background-color: #222; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; 
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.page-header p {
    font-size: 18px;
    color: #ddd;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--dark-grey);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.separator-left {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin-bottom: 25px;
}

.contact-intro {
    color: #aaa;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 194, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-yellow);
    font-size: 20px;
    transition: 0.3s;
}

.info-item:hover .icon-circle {
    background-color: var(--primary-yellow);
    color: #000;
}

.info-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.info-text a, .info-text p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: #000;
}

.contact-form-box {
    background-color: #222;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-form-box h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #fff;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #151515;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    transition: 0.3s;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: #1a1a1a;
    box-shadow: 0 0 10px rgba(220, 194, 76, 0.1);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gdpr-note {
    color: #555;
    font-size: 12px;
}

nav a.active {
    color: var(--primary-yellow);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-box {
        text-align: center;
    }
    
    .separator-left {
        margin: 0 auto 25px auto;
    }
    
    .info-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-box {
        padding: 25px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.services-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-intro h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
}

.section-intro .text-yellow {
    color: var(--primary-yellow);
}

.section-intro p {
    color: #aaa;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 40px 30px;
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-7px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 25px;
}

.service-box h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-box p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-list {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.service-list li {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--primary-yellow);
    margin-right: 10px;
    font-size: 12px;
}

.process-section {
    padding: 80px 0;
    background-color: #111;
    border-top: 1px solid #222;
    text-align: center;
}

.process-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #333;
        z-index: 1;
    }
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #222;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    transition: 0.3s;
}

.step:hover .step-number {
    background-color: var(--primary-yellow);
    color: #000;
}

.step h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: #888;
    font-size: 14px;
}

.cta-banner {
    background-color: var(--primary-yellow);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: #000;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    color: #333;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.pricing-intro {
    background-color: var(--dark-grey);
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.intro-box {
    display: flex;
    align-items: center;
    background-color: rgba(220, 194, 76, 0.1);
    border: 1px solid var(--primary-yellow);
    padding: 20px;
    border-radius: 6px;
    color: #ddd;
}

.intro-box i {
    font-size: 24px;
    color: var(--primary-yellow);
    margin-right: 20px;
}

.intro-box a {
    color: var(--primary-yellow);
    text-decoration: underline;
    font-weight: 600;
}

.pricing-cards-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background-color: #151515;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #555;
}

.pricing-card.featured {
    background-color: #1a1a1a;
    border: 2px solid var(--primary-yellow);
    padding: 60px 30px;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.recommended {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    color: #000;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.card-header .category {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    margin: 30px 0;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.price-tag .from {
    font-size: 16px;
    color: #aaa;
    vertical-align: middle;
    font-weight: 400;
}

.price-tag .unit {
    font-size: 16px;
    color: #aaa;
    font-weight: 400;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.pricing-card .features li {
    margin-bottom: 15px;
    color: #bbb;
    font-size: 14px;
}

.pricing-card .features li i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #555;
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-yellow);
    background-color: var(--primary-yellow);
    color: #000;
}

.pricing-details {
    padding: 60px 0 80px 0;
    background-color: var(--dark-grey);
}

.pricing-details h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
}

.table-responsive {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #151515;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.custom-table th, 
.custom-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.custom-table th {
    background-color: #000;
    color: var(--primary-yellow);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.custom-table td {
    color: #ccc;
    font-size: 15px;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background-color: #1f1f1f;
    color: #fff;
}

.custom-table td:last-child {
    font-weight: 700;
    color: #fff;
    text-align: right;
}

.vat-note {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: right;
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
        padding: 40px 30px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .intro-box {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-box i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .pricing-details h2 {
        font-size: 26px;
    }
}