html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #d4af37;
    --text-color: #e0e0e0;
    --text-dark: #1a1a1a;
    --light-bg: #2a2a2a;
    --white: #FFFFFF;
    --dark-bg: #0f0f0f;
    --card-bg: #1e1e1e;
    --border-color: #333;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease-in-out;
    --transition-fast: all 0.2s ease-in-out;
}

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

body {
    font-family: Circular,
        -apple-system,
        BlinkMacSystemFont,
        Roboto,
        Helvetica Neue,
        sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 15, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    max-width: 98vw;
    max-height: 98vh;
    margin: auto;
}

.modal-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-button svg {
    width: 44px;
    height: 44px;
    display: block;
    filter: drop-shadow(0 6px 6px #000);
}

.modal-close-button:hover,
.modal-close-button:focus {
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px),
(aspect-ratio < 1) {
    .modal-content {
        flex-direction: column;
        padding: 0;
        min-width: 100vw;
        min-height: 100vh;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
        background: #111;
    }

    .modal-header {
        font-size: x-large;
        padding: 18px 0;
    }
}

/* Header & Navigation */
.header {
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)),
        url('images/header-bg.jpg') center/cover;
    min-height: 100vh;
    color: var(--white);
    background-attachment: fixed;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 12px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.lang-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 18px;
    padding: 4px 18px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    line-height: 1.2;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-color), #b8941f);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8941f, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

.label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--dark-bg);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    cursor: pointer;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #b8941f);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--light-bg);
}

.portfolio h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 48, 71, 0.9));
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-tile {
    cursor: pointer;
    width: 320px;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.portfolio-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
    border-radius: 0;
}

.portfolio-tile-img.hovered {
    transform: scale(1.04);
}

.portfolio-tile-caption {
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-weight: 700;
    font-size: 1.2em;
    padding: 15px 20px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-bg);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 16px 18px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 24px;
    cursor: pointer;
    font-size: larger;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

.submit-button:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-color);
    font-size: 1.08em;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    word-break: break-all;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--dark-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #b8941f);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
}

.author-info h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: var(--dark-bg);
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--card-bg);
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1.5px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #b8941f);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.partner-card img {
    width: 180px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.partner-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.partner-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Portfolio Carousel Modal */
.carousel-arrow {
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    cursor: pointer;
    opacity: 0.92;
    transition: opacity 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
    position: absolute;
    transform: translateY(-50%);
}

.carousel-arrow svg {
    display: block;
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
    transition: filter 0.2s;
}

.carousel-arrow:hover,
.carousel-arrow:focus,
.carousel-arrow:active {
    opacity: 1;
    background: transparent;
}

.carousel-arrow:hover {
    opacity: 1;
    color: var(--accent-color);
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

#carousel-desc {
    text-align: center;
    margin: 10px 10px 0 10px;
    font-size: 1.1em;
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonials-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .carousel-img-desc-wrapper {
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        min-width: 100vw;
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        display: flex;
        flex-direction: column;
    }

    .carousel-img {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        align-items: stretch;
        justify-content: stretch;
        display: flex;
        position: relative;
        background: #111;
        padding: 0;
        margin: 0;
    }

    #carousel-img {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        object-fit: cover;
        border-radius: 0;
        display: block;
        background: #111;
        margin: 0;
        padding: 0;
    }

    #carousel-desc {
        font-size: 1em;
        padding: 10px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero h1,
.hero p,
.cta-button {
    animation: fadeIn 1s ease-out forwards;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Common image styles */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Carousel: arrow alignment and image with caption */
.carousel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.carousel-img-desc-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    max-width: 98vw;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
}

#carousel-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 44px 10px 28px 0;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 30%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.45) 75%, rgba(0, 0, 0, 0.0) 100%);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 1px 0 #fff, 0 0 2px #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    pointer-events: none;
}

#loading-overlay {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(45, 48, 71, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s;
}

.spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.epoxy-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0 25%, var(--secondary-color) 25% 50%, var(--primary-color) 50% 75%, #fff 75% 100%);
    animation: epoxy-spin 1.2s linear infinite;
    margin-bottom: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

@keyframes epoxy-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-text {
    color: var(--accent-color);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.portfolio-tiles {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.carousel-img-desc-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#carousel-desc {
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 1.1em;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notification-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-modal.show {
    opacity: 1;
}

.notification-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.notification-modal.show .notification-content {
    transform: scale(1);
}

.notification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.notification-icon.success {
    background: #4CAF50;
    color: white;
}

.notification-icon.error {
    background: #f44336;
    color: white;
}

.notification-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.notification-content p {
    margin: 0 0 25px 0;
    color: var(--text-color);
    line-height: 1.5;
}

.notification-btn {
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.notification-btn:hover {
    background: var(--white);
    color: var(--accent-color);
}

.lang-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 18px;
    padding: 4px 18px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    line-height: 1.2;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
}

.service-modal-content {
    max-width: 520px;
    width: 96vw;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 38px 0 32px 0;
    border-radius: 16px;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: auto;
}

.service-modal-body {
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

#service-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

#service-modal-desc {
    font-size: 1rem;
    color: #fff;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.service-modal-body p {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    margin-top: 0.5em;
    text-align: justify;
}

.service-modal-body .modal-header {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    margin-top: 0;
}

@media (max-width: 600px) {
    .service-modal-content {
        max-width: 100vw;
        width: 100vw;
        padding: 24px 0 18px 0;
    }

    #service-modal-title {
        font-size: 1.1rem;
    }

    #service-modal-desc {
        font-size: 0.98rem;
    }

    .service-modal-body {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Service Modal Carousel */
.service-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    width: 100%;
    position: relative;
    padding: 0;
}

.service-carousel .carousel-img-wrapper {
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 320px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    padding: 0;
    box-sizing: border-box;
}

.service-carousel .carousel-img-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    background: #181818;
    display: block;
    margin: 0 auto;
}

.service-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: transparent;
    color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.92;
    transition: opacity 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
}

.service-carousel .carousel-arrow.left {
    left: 8px;
    right: auto;
}

.service-carousel .carousel-arrow.right {
    right: 8px;
    left: auto;
}

.service-carousel .carousel-arrow:hover {
    opacity: 1;
    background: var(--accent-color);
    color: var(--dark-bg);
}

@media (max-width: 600px) {
    .service-carousel .carousel-img-wrapper {
        max-width: 98vw;
        max-height: 70vw;
        height: 70vw;
    }

    .service-carousel .carousel-img-wrapper img {
        width: 100%;
        height: auto;
        max-width: 98vw;
        max-height: 70vw;
        min-height: 120px;
    }

    .service-carousel .carousel-arrow.left {
        left: 2px;
    }

    .service-carousel .carousel-arrow.right {
        right: 2px;
    }
}

/* Portfolio modal image */
.modal-img {
    max-width: 98vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}