:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #ff69b4;
    --text-color: #ffffff;
    --background-color: #121212;
    --card-bg: rgba(45, 45, 45, 0.8);
    --gradient-1: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    --gradient-2: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Navbar Styles */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    height: 80px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 50px;
    margin-left: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    height: 100%;
    align-items: center;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    opacity: 0.8;
    height: fit-content;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    background: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Carousel Styles */
.carousel-section {
    margin-top: 80px;
    position: relative;
    height: 80vh;
    overflow: hidden;
    transform: none !important; /* Prevents parallax effect */
}

.carousel {
    position: relative;
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.carousel-control:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 2rem;
}

.carousel-control.next {
    right: 2rem;
}

.carousel-logo {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    max-width: 126px;
    max-height: 56px;
    width: 21vw;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
    pointer-events: none;
}

.carousel-control:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 2rem;
}

.carousel-control.next {
    right: 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    min-height: auto;
    margin-top: 0;
}

.about-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .container p {
    max-width: 800px;
    margin: 0;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    background: rgba(45, 45, 45, 0.3);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
    font-style: italic;
    height: auto;
    min-height: 0;
}

.about-section .container .paragraphs-wrapper {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.about-section .container .paragraphs-wrapper p {
    flex: 1;
    margin: 0;
}

.about-section p:first-of-type {
    margin-top: 0;
}

.about-section p::first-letter {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent-color);
}

.about-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.about-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-section .container .paragraphs-wrapper {
        flex-direction: column;
    }

    .about-section .container p {
        font-size: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .carousel-control {
        display: none;
    }

    .carousel-logo {
        max-width: 84px;
        max-height: 35px;
        width: 35vw;
        bottom: 1.4rem;
        right: 1.4rem;
    }

    .navbar {
        height: 70px;
    }

    .logo {
        margin-left: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        margin-right: 1rem;
    }

    .carousel-section {
        margin-top: 70px;
        height: 60vh;
    }

    main {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-section .container p {
        font-size: 0.9rem;
        padding: 1rem;
        margin: 0 0.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.3;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.service-item {
    padding: 4rem 3rem;
    background: var(--card-bg);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.2);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.1);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible::before {
    transform: scaleY(1);
}

.service-item h3 {
    margin: -4rem -3rem 2rem -3rem;
    padding: 2rem 3rem;
    color: var(--text-color);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    background: var(--gradient-1);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-item h3::before {
    content: '→';
    color: var(--text-color);
    font-size: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover h3::before {
    transform: translateX(8px);
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-left: 0;
    font-weight: 300;
}

/* Contact Card Section */
.contact-card-section {
    padding: 6rem 0;
    background: var(--gradient-2);
    margin-top: 0;
}

.contact-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-form {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(30,30,30,0.8);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--accent-color);
}

.contact-form button {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.contact-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .contact-info h3 {
        font-size: 1.4rem;
    }
}

/* Footer */
footer {
    background: var(--gradient-2);
    padding: 4rem 0 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.sitemap h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sitemap ul {
    list-style: none;
}

.sitemap a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0.8rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.sitemap a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes pipeWrap {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

.pipe-animation {
    position: relative;
    height: 1vh;
    overflow: hidden;
    margin: 0;
    background: var(--gradient-2);
    opacity: 0.3;
}

.pipe-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--gradient-1);
    animation: pipeWrap 4s linear infinite;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
        margin: 1rem 0;
        padding: 0.5rem 1rem;
    }

    .hamburger {
        display: block;
    }

    .services-section {
        padding: 6rem 0;
    }

    .services-section h2 {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .service-item {
        padding: 3rem 2rem;
    }

    .service-item h3 {
        margin: -3rem -2rem 2rem -2rem;
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .about-section .container p {
        font-size: 1rem;
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .about-section .container p:first-of-type {
        margin-top: 0;
    }

    .carousel-section {
        height: 60vh;
    }

    .carousel-item img {
        object-position: center;
    }

    .services-grid-image {
        height: 60vh;
        min-height: 60vh;
    }

    main {
        margin-top: 70px;
    }
}

@media (max-width: 1400px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-hero-section {
    width: 100vw;
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.services-hero-row {
    display: flex;
    flex-direction: row;
    width: 100vw;
    min-height: 350px;
    height: 45vh;
    align-items: stretch;
    justify-content: stretch;
}

.services-hero-row.reverse-row {
    flex-direction: row-reverse;
}

.services-hero-image.small-image {
    flex: 0 0 35%;
    max-width: 35vw;
    min-width: 250px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.services-hero-image.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.services-hero-content {
    flex: 1 1 0;
    background: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
    min-width: 0;
}

.services-hero-content.only-title {
    justify-content: center;
    align-items: center;
    display: flex;
}

.services-hero-content.only-title h2 {
    margin: 0;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #222;
    text-transform: uppercase;
    line-height: 1.1;
    word-break: break-word;
    width: 100%;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 75%;
    max-width: none;
    font-size: 1.04rem;
    background: var(--background-color);
}

.services-list li {
    font-size: 1.04rem;
    font-weight: 500;
    color: #fff;
    background: var(--background-color);
    border-left: none;
    margin-bottom: 1.2rem;
    padding: 0.58rem 1.2rem;
    border-radius: 6px;
    text-align: left;
    transition: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li:hover {
    background: var(--gradient-1);
    color: #fff;
}

.services-list li strong {
    color: #222;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.services-list li span {
    color: #444;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .services-hero-row {
        flex-direction: column;
        height: auto;
        min-height: unset;
    }
    .services-hero-row.reverse-row {
        flex-direction: column;
    }
    .services-hero-image.small-image {
        max-width: 100vw;
        width: 100vw;
        min-width: 0;
        height: 220px;
    }
    .services-hero-content, .services-hero-content.only-title {
        padding: 2rem 1rem;
        min-height: 120px;
    }
    .services-hero-content.only-title h2 {
        font-size: 2rem;
    }
}

.services-2x2-grid {
    width: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.services-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(50vh, auto) minmax(50vh, auto);
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    height: auto;
    background: var(--background-color);
}

.services-grid-image {
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 60vh;
}

.services-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.services-grid-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222;
    text-align: center;
    padding: 1.38rem;
    min-height: 50vh;
    height: 100%;
    box-sizing: border-box;
}

.services-grid-title h2 {
    font-size: 2.38rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #222;
    text-transform: uppercase;
    line-height: 1.1;
    word-break: break-word;
    width: 100%;
    text-align: center;
}

.services-grid-list {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 1.1rem;
    min-height: 40vh;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 75%;
    max-width: none;
    font-size: 1.04rem;
    background: var(--background-color);
}

.services-list li {
    font-size: 1.04rem;
    font-weight: 500;
    color: #fff;
    background: var(--background-color);
    border-left: none;
    margin-bottom: 1.2rem;
    padding: 0.88rem 1.2rem;
    border-radius: 6px;
    text-align: left;
    transition: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.services-list li strong {
    color: #fff;
    font-size: 1.04rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.services-list li span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li:hover,
.services-list li:hover strong,
.services-list li:hover span {
    background: var(--background-color);
    color: #fff;
}

/* Grid positioning */
.services-grid-image.top-image {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.services-grid-title {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}
.services-grid-list {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}
.services-grid-image.bottom-image {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

@media (max-width: 1100px) {
    .services-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 60vh);
        min-height: unset;
        height: auto;
    }

    .services-grid-image.top-image,
    .services-grid-title,
    .services-grid-list,
    .services-grid-image.bottom-image {
        grid-column: 1 / 2;
        min-height: 60vh;
        height: 60vh;
    }

    .services-grid-image.top-image {
        grid-row: 1 / 2;
    }

    .services-grid-title {
        grid-row: 2 / 3;
    }

    .services-grid-list {
        grid-row: 3 / 4;
    }

    .services-grid-image.bottom-image {
        grid-row: 4 / 5;
    }

    .services-grid-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .services-grid-title h2 {
        font-size: 2rem;
    }

    .services-list {
        width: 90%;
        max-height: 100%;
        overflow-y: auto;
    }

    .services-list li {
        font-size: 0.92rem;
        padding: 0.6rem 0.5rem;
    }

    .services-list li strong {
        font-size: 0.98rem;
    }

    .services-list li span {
        font-size: 0.88rem;
    }
}

@media (max-width: 600px) {
    .carousel-logo {
        max-width: 120px;
        max-height: 50px;
        width: 50vw;
        bottom: 2vh;
    }
}

.fade-in-service {
    opacity: 0;
    animation: fade-in-service 1.5s ease forwards;
}

@keyframes fade-in-service {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-card-3col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-logo {
    width: 80%;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.18));
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    .contact-card-3col {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .contact-logo {
        width: 60%;
        max-width: 60%;
        min-width: 0;
    }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .carousel-section {
        height: 50vh;
    }

    .carousel-logo {
        max-width: 120px;
    }

    .about-section .container p {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .services-grid-image {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-logo {
        width: 60%;
        max-width: 60%;
    }
}

/* Improved image loading and performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .carousel-section,
    .contact-card-section,
    footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Hide all links and code in preview */
a {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

code, pre {
    display: none !important;
}

/* Hide source code */
script, style {
    display: none !important;
}

/* Add margin to main content to account for fixed navbar */
main {
    margin-top: 80px;
} 