/* CSS Variables - Cinematic Dark Glassmorphism */
@font-face {
    font-family: 'Arciform';
    src: url('fonts/Arciform.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #030305;
    --text-main: #EEEEEE;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(0, 159, 227, 0.4);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Inter', sans-serif;
    --max-width: 1100px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFF;
}

h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: #FFF;
    text-transform: none;
    line-height: 1.1;
}

h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: -0.04em;
}

p,
li {
    font-size: 17px;
    line-height: 1.6;
    color: #CCC;
    font-weight: 400;
}

strong,
b {
    color: #FFF;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2.2rem;
    font-family: 'Arciform', var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #FFF;
}

.accent-blue {
    color: #009FE3;
}

.mobile-br {
    display: none;
}

.logo img {
    height: 45px;
    width: auto;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: #FFF;
}

/* Sections */
section {
    padding: 40px 0;
    width: 100%;
    position: relative;
    scroll-margin-top: 100px;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-left: 20px;
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    font-style: normal;
    background: linear-gradient(to bottom, #FFFFFF 20%, #BBBBBB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-section h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 400;
    background: linear-gradient(to right, #FFFFFF 30%, #888888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 40px;
    max-width: 600px;
    letter-spacing: normal;
}

/* Button - Subtle Glass Style */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.3), rgba(0, 159, 227, 0.1));
    color: #FFF;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 159, 227, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-button span {
    margin-left: 8px;
    transition: transform 0.2s;
}

.cta-button:hover span {
    transform: translateX(4px);
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.5), rgba(0, 159, 227, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Services */
.services-section {
    position: relative;
    z-index: 2;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-main);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-row.active {
    opacity: 1;
    transform: translateY(0);
}

.service-row:nth-child(even) {
    direction: rtl;
}

.service-row:nth-child(even) .service-content-block {
    direction: ltr;
}

.service-banner {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset,
        0px 0px 20px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1) brightness(0.9);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.service-row:hover .service-banner img {
    transform: scale(1.05);
    filter: saturate(1.1) contrast(1.15) brightness(1);
}

.service-content-block h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #FFF, #AAA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-content-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #888 !important;
}

.service-content-block strong {
    color: #FFF !important;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content h2 {
    text-align: center;
}

.about-content p {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.7);
}

.about-content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

/* About Cards */
.about-content li {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset,
        0px 0px 20px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
}

.about-card-header strong {
    font-size: 1.25rem;
    font-weight: 700;
}

.about-card-body {
    color: #AAA;
    font-size: 1rem;
    line-height: 1.6;
}

.about-icon {
    width: 24px;
    height: 24px;
    stroke: #FFF;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(0, 159, 227, 0.4));
    transition: transform 0.3s ease;
}

.about-content li:hover {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-5px);
}

.about-content li:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    stroke: #009FE3;
}

#about h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: none;
    background: linear-gradient(to right, #FFFFFF 30%, #888888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: transparent;
}

/* Contact Section */
.contact-section {
    padding-bottom: 40px;
}

.contact-card-container {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset,
        0px 0px 20px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 20px;
}

.contact-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-details p {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: bold;
}

.contact-form-column {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-left: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.contact-details h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    background: linear-gradient(to right, #FFF, #AAA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-details ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 24px;
    font-size: 17px;
    color: #AAA;
    padding-left: 24px;
    border-left: 2px solid var(--glass-border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.5;
}

.contact-details li:hover {
    border-left-color: #009FE3;
    padding-left: 32px;
    color: #DDD;
}

.contact-details strong {
    color: #009FE3;
    /* Blue Theme Color */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.8;
}



/* Contact Form */
.contact-form-container {
    /* Reset margins */
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFF;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

.form-group label {
    font-size: 0.9rem;
    color: #AAA;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFF;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009FE3;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.1);
}

.submit-btn {
    margin-top: 10px;
    background: #009FE3;
    color: #FFF;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #007bb0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.3);
}

.submit-btn:disabled {
    background: #444;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn.success {
    background: #28a745;
}

.success-message {
    color: #28a745;
    margin-top: 15px;
    font-size: 0.95rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-map {
    height: 100%;
    min-height: 400px;
    width: 100%;
}

/* Reviews */
#reviews {
    padding: 80px 0;
    overflow: hidden;
    background: #000;
}

#reviews h2 {
    text-align: center;
    margin-bottom: 20px;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #009FE3;
    /* Solid IKB Blue */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 32px;
    width: fit-content;
    margin: 0 auto 50px auto;
    font-family: var(--font-sans);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 159, 227, 0.4);
}

.google-badge:hover {
    background: #0086c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 159, 227, 0.6);
}

.google-logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: #FFF;
}

.google-g,
.google-o1,
.google-o2,
.google-g2,
.google-l,
.google-e {
    color: #FFF !important;
}

.rating-score {
    font-weight: 700;
    color: #FFF;
    margin-right: 4px;
}

.rating-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 30px;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset,
        0px 0px 20px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 350px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    min-width: 350px;
}

.review-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-name {
    font-weight: 600;
    color: #FFF;
    font-size: 0.95rem;
}

.review-stars {
    color: #009FE3;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAQ Section */
#faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset,
        0px 0px 20px 3px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: linear-gradient(138deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Remove default triangle */
}

/* Remove default marker for Webkit */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #009FE3;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(0deg);
    color: #FFF;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #CCC;
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -10px;
    /* Pull closer to question */
    padding-top: 20px;
}

/* Map Contrast */
.contact-map-full {
    width: 100%;
    height: 450px;
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-map-full #map-container {
    background: #222;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#map-container .leaflet-tile-pane {
    filter: none;
}

.map-marker {
    cursor: pointer;
}

/* Modal for Legal Notice */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #0f0f11;
    margin: 5% auto;
    padding: 60px;
    border: 1px solid var(--glass-border);
    width: 80%;
    max-width: 800px;
    border-radius: 16px;
    /* Matched to cards */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    background: linear-gradient(138deg, rgba(20, 20, 30, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.close-modal {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 25px;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
    text-decoration: none;
}

/* Legal Text Formatting */
#legal-text {
    color: #CCC;
    font-size: 0.95rem;
    line-height: 1.6;
}

#legal-text h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

#legal-text h3:first-child {
    margin-top: 0;
}

#legal-text h4 {
    color: #009FE3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

#legal-text p {
    margin-bottom: 16px;
    color: #CCC;
}

#legal-text strong {
    color: #FFF;
    font-weight: 600;
}

#legal-text a {
    color: #009FE3;
    text-decoration: underline;
}

#legal-text a:hover {
    color: #FFF;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer Redesign */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 40px 0;
    background: #050507;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Background Glow for Footer */
footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Brand Column */
.brand-col .logo {
    margin-bottom: 20px;
}

.footer-logo {
    align-items: center;
}

.footer-logo .desktop-text {
    line-height: 1.1;
    display: block;
}

.footer-logo .logo-img {
    height: 75px;
    /* Proportionally adjusted to match two lines of text */
}

@media (max-width: 900px) {
    .footer-logo {
        justify-content: center;
    }

    .footer-logo .desktop-text {
        font-size: 1.4rem;
    }

    .footer-logo .logo-img {
        height: 60px;
    }
}

.footer-tagline {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #AAA;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #009FE3;
    transform: translateX(4px);
}

/* Copyright */
.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    font-size: 0.95rem;
    /* ~15px */
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
    footer {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-col h3 {
        margin-bottom: 16px;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* Responsive & Mobile */
.mobile-text {
    display: none;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 900px) {
    header {
        height: 85px;
        padding: 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 100%;
    }

    .logo {
        font-size: 1.1rem;
        gap: 10px;
        line-height: 1.1;
    }

    .mobile-br {
        display: block;
        height: 0;
    }

    .desktop-text {
        display: block;
    }

    .mobile-text {
        display: none;
    }

    .logo-img {
        height: 55px;
    }

    /* Hamburger / Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        gap: 6px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #FFF;
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
        position: relative;
        transform-origin: center;
    }

    /* Cross State */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        top: 0;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        top: 0;
    }

    .nav-links {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        padding-top: 90px;
        padding-left: 20px;
        padding-right: 20px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1001;
    }

    .nav-links.nav-open {
        transform: translateX(0);
    }

    .nav-links a {
        display: block;
        font-size: 2rem;
        margin-bottom: 30px;
        font-weight: 700;
        color: #FFF;
        text-align: left;
        background: linear-gradient(to right, #FFFFFF 30%, #888888 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        width: fit-content;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-banner {
        height: 200px;
    }

    .about-content ul {
        grid-template-columns: 1fr;
    }

    .contact-card-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
        min-height: 300px;
    }

    .contact-details {
        padding: 30px;
    }

    .reviews-card {
        width: 300px;
        min-width: 300px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}