:root {
    --primary-color: #059669; /* Emerald */
    --primary-dark: #047857;
    --accent-color: #3b82f6; /* Blue */
    --bg-color: #f8fafc;
    --text-color: #374151;
    --text-muted: #6b7280;
    --gold: #f59e0b;
    --white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary-color) !important; }
.text-warning { color: var(--gold) !important; }
.text-success { color: var(--primary-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.font-weight-bold { font-weight: 700 !important; }
.bg-light { background-color: var(--bg-color) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-gold { background-color: var(--gold) !important; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.rounded { border-radius: .25rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }
.rounded-top { border-top-left-radius: .25rem; border-top-right-radius: .25rem; }
.rounded-bottom { border-bottom-left-radius: .25rem; border-bottom-right-radius: .25rem; }
.border { border: 1px solid #dee2e6 !important; }
.border-top-0 { border-top: 0 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.position-absolute { position: absolute !important; }
.top-0 { top: 0 !important; }
.right-0 { right: 0 !important; }
.w-100 { width: 100% !important; }

/* Margins & Paddings (Bootstrap-like) */
.m-3 { margin: 1rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-auto { margin-left: auto !important; }

.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.d-flex { display: flex !important; }
.d-block { display: block !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }

.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-md-3, .col-md-5, .col-md-7, .col-lg-5, .col-lg-6, .col-lg-8 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }

/* Grid setup for medium+ devices */
@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .flex-md-row-reverse { flex-direction: row-reverse !important; }
}
@media (min-width: 992px) {
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .offset-lg-1 { margin-left: 8.333333%; }
    .mx-auto { margin-right: auto !important; margin-left: auto !important; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.5rem; color: #111827; }
.display-4 { font-size: 2.5rem; font-weight: 800; }
.h3 { font-size: 1.75rem; }
.h4 { font-size: 1.5rem; }
.h5 { font-size: 1.25rem; }
.h6 { font-size: 1rem; }
.lead { font-size: 1.25rem; font-weight: 400; }
.small { font-size: 0.875em; }
.text-uppercase { text-transform: uppercase !important; }
a { color: var(--primary-color); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
ul.list-unstyled { list-style: none; padding-left: 0; }

/* Marquee */
.usp-marquee {
    background: #111827;
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-content span {
    margin-right: 15px;
}
.marquee-content .dot {
    color: var(--primary-color);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    text-decoration: none !important;
}
.brand-logo svg {
    color: var(--primary-color);
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.main-nav a {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none !important;
}
.main-nav a:hover {
    color: var(--primary-color);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #111827;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none !important;
    border: 2px solid transparent;
}
.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline-primary { border-color: var(--primary-color); color: var(--primary-color); background: transparent; }
.btn-outline-primary:hover { background: var(--primary-color); color: var(--white); }
.btn-outline-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: #111827; }
.btn-light { background: var(--white); color: var(--primary-color); }
.btn-light:hover { background: #f3f4f6; color: var(--primary-dark); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.25rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}
.hero-title { font-size: 3.5rem; color: var(--white); margin-bottom: 20px;}
.hero-subtitle { font-size: 1.25rem; max-width: 800px; margin: 0 auto; color: #f3f4f6; }

/* Cards & Grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.card-img-wrapper { position: relative; height: 200px; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.badge-popular { background: var(--gold); color: #111827; }

/* Why grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.why-card { transition: 0.3s; }
.why-card:hover { transform: translateY(-5px); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.testimonial-text { font-style: italic; color: #4b5563; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-control {
    display: block; width: 100%; padding: 0.75rem; font-size: 1rem; line-height: 1.5; color: #495057;
    background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da; border-radius: 0.25rem; transition: border-color .15s;
    font-family: var(--font-body);
}
.form-control:focus { border-color: var(--primary-color); outline: 0; box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25); }

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-top: 2rem;
}
.footer-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-desc { color: #6b7280; margin-bottom: 1.5rem; }
.footer-col h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: #111827; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: #6b7280; text-decoration: none; }
.footer-col ul li a:hover { color: var(--primary-color); }
.social-links a { color: #9ca3af; margin-right: 15px; }
.social-links a:hover { color: var(--primary-color); }
.footer-bottom { padding: 1.5rem 0; text-align: center; color: #9ca3af; font-size: 0.875rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #111827; color: white;
    padding: 15px 0; z-index: 9999;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-content p { margin: 0; font-size: 14px; }
.cookie-content a { color: var(--gold); text-decoration: underline; }
.hidden { display: none !important; }

/* About and Legal */
.content-wrapper h2 { margin-top: 2rem; }
.content-wrapper p { margin-bottom: 1.5rem; }
.team-member img { object-fit: cover; }

/* Image placeholders style */
.placeholder-img {
    background-color: #e5e7eb;
}
.img-fluid { max-width: 100%; height: auto; }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .main-nav {
        display: none;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--white); padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 15px; }
    .burger-menu { display: block; }
    .hidden-mobile { display: none !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
}

/* Animations */
.fade-in { animation: fadeIn 1s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
