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

:root {
    --lime-green: #32CD32;
    --lime-green-dark: #28B828;
    --lime-green-light: #7CFC00;
    --lime-green-bright: #39FF14;
    --dark-gray: #0a0a0a;
    --dark-gray-light: #1a1a1a;
    --dark-gray-medium: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --card-gap: 1.5rem;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #e8e8e8;
}

/* Top Bar */
.top-bar {
    background: #e8e8e8;
    padding: clamp(0.5rem, 0.8vw, 0.8rem) 0;
    color: #1a1a1a;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-icon {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    filter: grayscale(0.3) brightness(0.7);
}

.top-bar-text {
    white-space: nowrap;
    color: #1a1a1a;
}

.top-bar-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.top-bar-phone-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.top-bar-address-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.top-bar-address-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.social-icon {
    color: #1a1a1a;
    text-decoration: none;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-icon[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.social-icon[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.social-icon[aria-label="Email"]:hover {
    color: #34A853;
}

/* Header Styles */
.header {
    background: #ffffff;
    padding: clamp(1rem, 1.5vw, 1.5rem) 0 clamp(1.5rem, 2.5vw, 2rem) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Header Features Section */
.header-features {
    width: 100%;
    background: #e8e8e8;
    padding: clamp(1.2rem, 2vw, 1.8rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 60px;
    max-height: 80px;
    height: auto;
}

.header-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime-green), transparent);
    opacity: 0.3;
    z-index: 1;
}

.features-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    height: auto;
    min-height: 60px;
    max-height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.features-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--card-gap, 1.5rem);
    padding: 0 clamp(1rem, 2vw, 2rem);
    white-space: nowrap;
    flex-shrink: 0;
    flex-wrap: nowrap;
    animation: featuresScroll 35s linear infinite;
    will-change: transform;
    position: relative;
    z-index: 2;
    width: max-content;
    min-width: 100%;
    height: 100%;
    overflow: visible;
}

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

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

.feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: #ffffff;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0;
    box-sizing: border-box;
    min-width: fit-content;
    height: auto;
    max-height: 60px;
    line-height: 1.2;
}

/* Hide "Kurumsal Kimlik Tasarımları" card */
.feature-card.hidden-card {
    display: none !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.15);
    border-color: var(--lime-green);
    background: #fafafa;
}

.feature-icon-wrapper {
    width: clamp(36px, 4vw, 42px);
    height: clamp(36px, 4vw, 42px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--lime-green-dark) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(50, 205, 50, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 10px;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.feature-icon {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
}

.feature-text {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.3px;
    line-height: 1.2;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

.feature-card:hover .feature-text {
    color: var(--lime-green-dark);
}

/* Responsive adjustments for header features */
@media (max-width: 768px) {
    :root {
        --card-gap: 1.3rem;
    }

    .features-container {
        gap: var(--card-gap, 1.3rem);
        padding: 0 clamp(0.8rem, 1.5vw, 1.5rem);
    }

    .feature-card {
        padding: 0.6rem 0.9rem;
        gap: 0.65rem;
    }

    .feature-icon-wrapper {
        width: clamp(32px, 3.5vw, 38px);
        height: clamp(32px, 3.5vw, 38px);
    }
}

@media (max-width: 480px) {
    :root {
        --card-gap: 1rem;
    }

    .features-container {
        gap: var(--card-gap, 1rem);
        padding: 0 clamp(0.6rem, 1.2vw, 1rem);
    }

    .feature-card {
        padding: 0.5rem 0.8rem;
        gap: 0.6rem;
    }

    .header-features {
        padding: clamp(1rem, 1.5vw, 1.5rem) 0;
    }
}

@keyframes headerGlow {

    0%,
    100% {
        box-shadow: 0 4px 30px rgba(50, 205, 50, 0.3), 0 0 60px rgba(50, 205, 50, 0.1);
    }

    50% {
        box-shadow: 0 4px 40px rgba(50, 205, 50, 0.5), 0 0 80px rgba(50, 205, 50, 0.2);
    }
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: clamp(50px, 6vw, 70px);
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(50, 205, 50, 0.3));
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 1.8rem);
    flex-wrap: wrap;
    flex: 1;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    transition: var(--transition);
    position: relative;
    padding: clamp(0.3rem, 0.5vw, 0.4rem) clamp(0.6rem, 1vw, 0.8rem);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 0.8px);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    background: none;
    border: none;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    color: #1a1a1a;
    z-index: 10;
}

.search-icon:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.search-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 2px solid var(--lime-green);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 300px;
    animation: searchBoxSlide 0.3s ease-out;
}

.search-box.active {
    display: flex;
}

@keyframes searchBoxSlide {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.search-input {
    border: none;
    outline: none;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #1a1a1a;
    font-family: 'Poppins', 'Inter', sans-serif;
    flex: 1;
    padding: 0.5rem;
    background: transparent;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.search-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.nav-link:hover {
    color: var(--lime-green-dark);
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    display: inline-block;
    transition: var(--transition);
    margin-left: clamp(0.2rem, 0.3vw, 0.3rem);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(clamp(10px, 1.5vw, 15px));
    background: var(--dark-gray);
    list-style: none;
    min-width: clamp(180px, 20vw, 220px);
    padding: clamp(0.8rem, 1vw, 1rem) 0;
    border-radius: clamp(12px, 1.5vw, 15px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 clamp(10px, 1.5vw, 15px) clamp(30px, 4vw, 40px) rgba(0, 0, 0, 0.5), 0 0 clamp(20px, 3vw, 30px) rgba(50, 205, 50, 0.3);
    margin-top: clamp(0.8rem, 1vw, 1rem);
    border: clamp(1px, 0.2vw, 2px) solid rgba(50, 205, 50, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(3px, 0.4vw, 4px);
    height: 100%;
    background: var(--lime-green);
    transform: scaleY(0);
    transition: var(--transition);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover {
    background: rgba(50, 205, 50, 0.15);
    padding-left: clamp(2rem, 2.5vw, 2.5rem);
    color: var(--lime-green-bright);
}

/* Hero Section */
.hero {
    background: #e8e8e8;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}


.hero-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.logo {
    position: relative;
    padding: 3rem;
    text-align: center;
}

.logo-text {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-top: 2rem;
    text-transform: uppercase;
    animation: logoReveal 1.2s ease-out;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

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

.logo-afis {
    color: var(--lime-green);
    display: inline-block;
    position: relative;
    text-shadow:
        0 0 30px rgba(50, 205, 50, 0.8),
        0 0 60px rgba(50, 205, 50, 0.4),
        0 0 90px rgba(50, 205, 50, 0.2);
    animation: textGlow 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes textGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.logo-decoration {
    position: absolute;
    top: -0.25em;
    left: 0.68em;
    display: flex;
    align-items: flex-start;
    gap: 0.25em;
    z-index: 2;
    pointer-events: none;
    transform: translateY(0);
}

.circle {
    border-radius: 50%;
    background: var(--lime-green);
    display: inline-block;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.8), 0 0 30px rgba(50, 205, 50, 0.4);
    flex-shrink: 0;
}

.circle-1 {
    width: 0.12em;
    height: 0.12em;
    margin-top: 0.08em;
}

.circle-2 {
    width: 0.18em;
    height: 0.18em;
    margin-top: 0.05em;
}

.circle-3 {
    width: 0.32em;
    height: 0.32em;
    background: transparent;
    border: 0.06em solid var(--lime-green);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.8), 0 0 40px rgba(50, 205, 50, 0.4);
}

.logo-reklam {
    color: #333333;
    display: inline-block;
    margin-left: 0.3em;
    white-space: nowrap;
}

/* Image Section */
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.slider-container {
    width: 100%;
    max-width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 5vw, 5rem);
    z-index: 2;
}

.slider-content {
    max-width: 600px;
}

.slider-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    animation: slideInLeft 0.8s ease-out;
}

.title-line1,
.title-line2 {
    display: block;
    letter-spacing: clamp(2px, 0.3vw, 4px);
    text-transform: uppercase;
}

.title-line2 {
    font-size: 1.1em;
}

.highlight-green {
    color: var(--lime-green-bright);
    text-shadow:
        0 0 20px rgba(50, 205, 50, 0.8),
        0 0 40px rgba(50, 205, 50, 0.5),
        3px 3px 15px rgba(0, 0, 0, 0.7);
    animation: textGlow 2s ease-in-out infinite;
}

.highlight-yellow {
    color: #FFD700;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        3px 3px 15px rgba(0, 0, 0, 0.7);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.slider-tagline {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    max-width: 500px;
    animation: slideInUp 1s ease-out 0.3s both;
    letter-spacing: 0.5px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Slide specific styles */
.slide1-title .title-line1 {
    animation-delay: 0.1s;
}

.slide2-title .title-line1 {
    animation-delay: 0.1s;
}

.slide3-title .title-line1 {
    animation-delay: 0.1s;
}

.slide4-title .title-line1 {
    animation-delay: 0.1s;
}

.slide5-title .title-line1 {
    animation-delay: 0.1s;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-prev {
    left: 20px;
}

.slider-nav-next {
    right: 20px;
}

.slider-nav span {
    line-height: 1;
    font-weight: bold;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: clamp(1rem, 2vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(0.5rem, 1vw, 0.8rem);
    z-index: 10;
}

.indicator {
    width: clamp(8px, 1vw, 12px);
    height: clamp(8px, 1vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}


.printer-screen {
    width: 85%;
    height: 18%;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green);
    font-size: 1rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(50, 205, 50, 0.3);
    overflow: hidden;
}

.printer-screen::before {
    content: 'READY';
    position: absolute;
    animation: screenBlink 2s ease-in-out infinite;
    text-shadow: 0 0 10px var(--lime-green);
}

@keyframes screenBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.printer-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.2), transparent);
    animation: screenScan 3s ease-in-out infinite;
}

@keyframes screenScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.printer-body {
    width: 95%;
    height: 55%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 15px;
    position: relative;
    border: 4px solid #333;
    margin-bottom: 1.5rem;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 5px 20px rgba(0, 0, 0, 0.5);
}

.printer-ink {
    display: flex;
    gap: 0.8rem;
    width: 95%;
    justify-content: center;
    margin-top: 1.5rem;
}

.ink-cartridge {
    width: 50px;
    height: 70px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 3px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: inkPulse 2s ease-in-out infinite;
}

.ink-cartridge:nth-child(1) {
    animation-delay: 0s;
}

.ink-cartridge:nth-child(2) {
    animation-delay: 0.2s;
}

.ink-cartridge:nth-child(3) {
    animation-delay: 0.4s;
}

.ink-cartridge:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes inkPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8), 0 0 20px currentColor;
    }
}

.ink-1 {
    background: linear-gradient(180deg, #0066ff 0%, #0044cc 100%);
    color: #0066ff;
}

.ink-2 {
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
    color: #00ff00;
}

.ink-3 {
    background: linear-gradient(180deg, #ff6600 0%, #cc4400 100%);
    color: #ff6600;
}

.ink-4 {
    background: linear-gradient(180deg, #ff0066 0%, #cc0044 100%);
    color: #ff0066;
}

.printer-output {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
}

.print-rainbow {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            #0066ff 0%,
            #00ff00 20%,
            #ffff00 40%,
            #ff6600 60%,
            #ff0066 80%,
            #9900ff 100%);
    animation: flow 4s ease-in-out infinite;
    position: relative;
    filter: brightness(1.2);
}

.print-rainbow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.print-rainbow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

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

@keyframes flow {

    0%,
    100% {
        transform: translateX(-15%);
    }

    50% {
        transform: translateX(15%);
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 4rem);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

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

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-intro {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.about-text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: #2c3e50;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 205, 50, 0.2);
}

.about-text strong {
    color: var(--lime-green-dark);
    font-weight: 700;
    position: relative;
}

.about-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lime-green), transparent);
    opacity: 0.5;
}

.about-text strong.highlight-slogan {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 900;
    color: var(--lime-green-dark);
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: clamp(1.2rem, 2.5vw, 2rem);
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.15) 0%, rgba(50, 205, 50, 0.05) 100%);
    border-radius: 15px;
    border-left: 5px solid var(--lime-green);
    border-right: 5px solid var(--lime-green);
    box-shadow:
        0 8px 25px rgba(50, 205, 50, 0.3),
        inset 0 0 20px rgba(50, 205, 50, 0.1);
    text-shadow: 2px 2px 8px rgba(50, 205, 50, 0.3);
    position: relative;
    letter-spacing: 1px;
    line-height: 1.6;
    animation: sloganGlow 3s ease-in-out infinite;
}

.about-text strong.highlight-slogan::after {
    display: none;
}

.about-text strong.highlight-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.2), transparent);
    border-radius: 15px;
    animation: sloganShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sloganGlow {

    0%,
    100% {
        box-shadow:
            0 8px 25px rgba(50, 205, 50, 0.3),
            inset 0 0 20px rgba(50, 205, 50, 0.1);
    }

    50% {
        box-shadow:
            0 12px 35px rgba(50, 205, 50, 0.5),
            inset 0 0 30px rgba(50, 205, 50, 0.2);
    }
}

@keyframes sloganShine {
    0% {
        transform: translateX(-100%);
    }

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

/* Mission & Vision Section */
.mission-vision-container {
    margin: clamp(4rem, 8vw, 6rem) 0;
    padding: 0 clamp(1rem, 2vw, 2rem);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--lime-green-bright);
    border-radius: 30px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
    box-shadow: 0 20px 60px rgba(50, 205, 50, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-vision-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.mission-card,
.vision-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mv-divider {
    width: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: clamp(2rem, 4vw, 3rem) 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mv-icon {
    width: clamp(90px, 12vw, 120px);
    height: clamp(90px, 12vw, 120px);
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(2rem, 4vw, 2.5rem);
    color: var(--lime-green-bright);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(50, 205, 50, 0.3);
    position: relative;
    transition: var(--transition);
    border: 3px solid var(--lime-green-bright);
}

.mv-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 205, 50, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.mission-card:hover .mv-icon::before,
.vision-card:hover .mv-icon::before {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.mv-icon svg {
    width: 55%;
    height: 55%;
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.9));
    stroke: var(--lime-green-bright);
}

.mv-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 1);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: clamp(3px, 0.5vw, 5px);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.mv-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 12vw, 120px);
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.mv-content {
    text-align: left;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.mv-content p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    text-align: left;
    display: block;
    width: 100%;
    letter-spacing: 0.3px;
}

.mv-content p:last-child {
    margin-bottom: 0;
}

.mission-card:hover .mv-icon,
.vision-card:hover .mv-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 50px rgba(50, 205, 50, 0.7), 0 0 0 4px rgba(50, 205, 50, 0.4);
}

.mission-card:hover .mv-title,
.vision-card:hover .mv-title {
    transform: translateY(-3px);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for Mission & Vision */
@media (max-width: 968px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
    }

    .mv-divider {
        display: none;
    }

    .mission-card {
        border-bottom: 2px solid rgba(255, 255, 255, 0.4);
        padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

    .vision-card {
        padding-top: 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    scroll-margin-top: 120px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.2);
    border-color: var(--lime-green);
}

.service-icon {
    width: clamp(80px, 10vw, 100px);
    height: clamp(80px, 10vw, 100px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    color: var(--lime-green-bright);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.service-icon svg {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 0 10px rgba(50, 205, 50, 0.6));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.4);
}

.service-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--lime-green-dark);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lime-green), transparent);
    border-radius: 2px;
}

.service-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #2c3e50;
    padding: clamp(0.6rem, 1vw, 0.8rem) 0;
    border-bottom: 1px solid rgba(50, 205, 50, 0.1);
    position: relative;
    padding-left: clamp(1.5rem, 2vw, 2rem);
    transition: var(--transition);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: bold;
    font-size: 1.2em;
}

.service-list li:hover {
    color: var(--lime-green-dark);
    padding-left: clamp(2rem, 2.5vw, 2.5rem);
}

.service-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: #2c3e50;
    text-align: left;
    margin: 0;
}

/* Responsive adjustments for About Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: left;
        padding: 1.5rem;
    }
}

/* References Section */
.references-section {
    background: var(--lime-green-bright);
    padding: clamp(5rem, 10vw, 7rem) clamp(2rem, 4vw, 4rem);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.references-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.references-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: clamp(4px, 0.8vw, 8px);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', 'Poppins', sans-serif;
    position: relative;
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.references-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(120px, 20vw, 200px);
    height: 5px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.5);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.reference-item {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.3rem, 0.8vw, 0.6rem);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(50, 205, 50, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(50, 205, 50, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 0;
}

.reference-logo:hover::before {
    width: 150%;
    height: 150%;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.reference-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--lime-green-bright), transparent, var(--lime-green-bright));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.reference-logo:hover::after {
    opacity: 0.6;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

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

.logo-placeholder {
    color: #1a1a1a;
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.reference-image {
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.reference-logo:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow:
        0 20px 60px rgba(50, 205, 50, 0.5),
        0 0 0 5px rgba(50, 205, 50, 0.6),
        inset 0 0 30px rgba(50, 205, 50, 0.15);
    background: #f8f8f8;
}

.reference-logo:hover .logo-placeholder {
    color: var(--lime-green-bright);
    text-shadow:
        0 0 15px rgba(50, 205, 50, 0.8),
        0 0 30px rgba(50, 205, 50, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.reference-logo:hover .reference-image {
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(50, 205, 50, 0.4));
}

/* Responsive adjustments for References Section */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.2rem, 2.5vw, 2rem);
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .references-section {
        padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2rem);
    }

    .references-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .reference-logo {
        padding: 0.6rem;
    }

    .logo-placeholder {
        font-size: 0.65rem;
    }
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
    padding: clamp(5rem, 10vw, 7rem) clamp(2rem, 4vw, 4rem);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 0.5vw, 5px);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 15vw, 150px);
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green), var(--lime-green-dark));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.3);
}

.contact-description {
    max-width: 800px;
    margin: clamp(2rem, 4vw, 2.5rem) auto 0;
    text-align: center;
}

.contact-description p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
}

.contact-description p:last-child {
    margin-bottom: 0;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    background: #ffffff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green), var(--lime-green-dark), var(--lime-green));
    border-radius: 20px 20px 0 0;
}

.form-left-column {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 1.5rem);
}

.form-right-column {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group-textarea {
    flex: 1;
}

.form-label {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: clamp(0.9rem, 1.3vw, 1.1rem) clamp(1rem, 1.5vw, 1.3rem);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--lime-green);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 200px;
    line-height: 1.6;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: clamp(1rem, 1.5vw, 1.3rem) clamp(2rem, 3vw, 2.5rem);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 700;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    align-self: flex-end;
    margin-top: auto;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 205, 50, 0.3), transparent);
    transition: var(--transition);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, var(--lime-green-dark) 0%, var(--lime-green) 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: var(--transition);
}

.form-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive adjustments for Contact Form */
@media (max-width: 968px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .form-submit-btn {
        align-self: stretch;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2rem);
    }

    .contact-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .contact-form {
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem) 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3rem, 6vw, 4rem);
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo-icon svg {
    width: 60%;
    height: 60%;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
}

.footer-brand-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-brand-subtitle {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--lime-green-bright) 0%, var(--lime-green) 50%, var(--lime-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    align-items: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 500;
    max-width: 600px;
}

.footer-contact-icon {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-contact-text {
    text-align: left;
    line-height: 1.6;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-social-link {
    width: clamp(45px, 6vw, 55px);
    height: clamp(45px, 6vw, 55px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
    border-color: var(--lime-green);
}

.footer-social-link svg {
    width: 60%;
    height: 60%;
}

/* Footer Zigzag Pattern */
.footer-zigzag {
    width: 100%;
    height: 25px;
    background: #ffffff;
    position: relative;
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            0 100%,
            0 50%,
            2% 40%,
            4% 50%,
            6% 40%,
            8% 50%,
            10% 40%,
            12% 50%,
            14% 40%,
            16% 50%,
            18% 40%,
            20% 50%,
            22% 40%,
            24% 50%,
            26% 40%,
            28% 50%,
            30% 40%,
            32% 50%,
            34% 40%,
            36% 50%,
            38% 40%,
            40% 50%,
            42% 40%,
            44% 50%,
            46% 40%,
            48% 50%,
            50% 40%,
            52% 50%,
            54% 40%,
            56% 50%,
            58% 40%,
            60% 50%,
            62% 40%,
            64% 50%,
            66% 40%,
            68% 50%,
            70% 40%,
            72% 50%,
            74% 40%,
            76% 50%,
            78% 40%,
            80% 50%,
            82% 40%,
            84% 50%,
            86% 40%,
            88% 50%,
            90% 40%,
            92% 50%,
            94% 40%,
            96% 50%,
            98% 40%,
            100% 50%,
            100% 100%,
            0 100%);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #4a2c5a;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    position: relative;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

.footer-nav-link:hover {
    color: #ffffff;
    opacity: 1;
}

.scroll-to-top {
    width: clamp(45px, 5.5vw, 55px);
    height: clamp(45px, 5.5vw, 55px);
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -25px;
    right: clamp(2rem, 4vw, 3rem);
    z-index: 1001;
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
    width: 45%;
    height: 45%;
    stroke: #2c3e50;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-contact-text {
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem) 0;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-contact-item {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
    }

    .footer-nav-link {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-container {
        max-width: 1000px;
    }

    .nav-list {
        gap: 2.5rem;
    }

    .footer-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .top-bar-left,
    .top-bar-center {
        justify-content: center;
    }

    .nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .header-logo {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .logo-image {
        height: clamp(60px, 8vw, 100px);
    }

    .nav-list {
        gap: 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        font-size: clamp(0.7rem, 1vw, 0.9rem);
        padding: 0.4rem 0.6rem;
    }

    .slider-overlay {
        padding-left: clamp(1rem, 3vw, 2rem);
    }

    .slider-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .slider-subtitle {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }


    .footer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-phone {
        font-size: 1.4rem;
        padding: 1rem 2rem;
    }

    .footer-text {
        font-size: 1.05rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-item {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 75vh;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-nav-prev {
        left: 10px;
    }

    .slider-nav-next {
        right: 10px;
    }

}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
        gap: 1rem;
    }

    .logo-image {
        height: 80px;
    }

    .nav-list {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }


    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 2rem;
    }

    .footer-nav {
        justify-content: center;
    }

    .scroll-to-top {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto 0;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .slider-nav-prev {
        left: 5px;
    }

    .slider-nav-next {
        right: 5px;
    }
}

/* Purple Footer Section */
.purple-footer {
    background: linear-gradient(135deg, #5B9BD5 0%, #4682B4 50%, #5B9BD5 100%);
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem) 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.purple-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3rem, 6vw, 4rem);
}

/* Purple Footer Logo */
.purple-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.purple-footer-logo-image {
    height: clamp(80px, 12vw, 120px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.purple-footer-logo-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.purple-footer-logo-icon svg {
    width: 60%;
    height: 60%;
}

.purple-footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
}

.purple-footer-brand-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.purple-footer-brand-subtitle {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--lime-green-bright) 0%, var(--lime-green) 50%, var(--lime-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* Purple Footer Contact Info */
.purple-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    align-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.purple-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
    color: #ffffff;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 500;
    width: 100%;
    padding: clamp(0.8rem, 1.5vw, 1rem);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.purple-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.purple-footer-contact-icon {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    margin-top: 0.2rem;
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-footer-contact-text {
    text-align: left;
    line-height: 1.8;
    color: #ffffff;
    flex: 1;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.purple-footer-contact-link {
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
    display: inline-block;
}

.purple-footer-contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

/* Address item with map */
.purple-footer-address-item {
    flex-direction: column;
    align-items: stretch;
}

.purple-footer-address-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
}

.purple-footer-map-container {
    width: 100%;
    margin-top: clamp(0.8rem, 1.5vw, 1rem);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.purple-footer-map-iframe {
    width: 100%;
    height: clamp(200px, 30vw, 300px);
    border: none;
    display: block;
    transition: var(--transition);
    border-radius: 12px;
}

.purple-footer-map-container:hover .purple-footer-map-iframe {
    transform: scale(1.02);
}

.purple-footer-map-link {
    display: block;
    text-align: center;
    padding: clamp(0.6rem, 1vw, 0.8rem);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    transition: var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: -4px;
}

.purple-footer-map-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: none;
}

/* Purple Footer Social Links */
.purple-footer-social {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.purple-footer-social-link {
    width: clamp(45px, 6vw, 55px);
    height: clamp(45px, 6vw, 55px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.purple-footer-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
    border-color: var(--lime-green);
}

.purple-footer-social-link svg {
    width: 60%;
    height: 60%;
}

/* Purple Footer Zigzag Pattern */
.purple-footer-zigzag {
    width: 100%;
    height: 25px;
    background: #e8e8e8;
    position: relative;
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            0 100%,
            0 50%,
            2% 40%,
            4% 50%,
            6% 40%,
            8% 50%,
            10% 40%,
            12% 50%,
            14% 40%,
            16% 50%,
            18% 40%,
            20% 50%,
            22% 40%,
            24% 50%,
            26% 40%,
            28% 50%,
            30% 40%,
            32% 50%,
            34% 40%,
            36% 50%,
            38% 40%,
            40% 50%,
            42% 40%,
            44% 50%,
            46% 40%,
            48% 50%,
            50% 40%,
            52% 50%,
            54% 40%,
            56% 50%,
            58% 40%,
            60% 50%,
            62% 40%,
            64% 50%,
            66% 40%,
            68% 50%,
            70% 40%,
            72% 50%,
            74% 40%,
            76% 50%,
            78% 40%,
            80% 50%,
            82% 40%,
            84% 50%,
            86% 40%,
            88% 50%,
            90% 40%,
            92% 50%,
            94% 40%,
            96% 50%,
            98% 40%,
            100% 50%,
            100% 100%,
            0 100%);
}

/* Light Footer Bottom */
.light-footer-bottom {
    background: #e8e8e8;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    position: relative;
}

.light-footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.light-footer-copyright {
    color: #1a1a1a;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.light-footer-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    align-items: center;
}

.light-footer-nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

.light-footer-nav-link:hover {
    color: var(--lime-green-dark);
    opacity: 1;
}

.scroll-to-top-light {
    width: clamp(45px, 5.5vw, 55px);
    height: clamp(45px, 5.5vw, 55px);
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -25px;
    right: clamp(2rem, 4vw, 3rem);
    z-index: 1001;
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-light:hover {
    background: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top-light svg {
    width: 45%;
    height: 45%;
    stroke: #2c3e50;
}

/* Responsive Purple Footer */
@media (max-width: 768px) {
    .purple-footer-contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: clamp(0.8rem, 1.5vw, 1rem);
    }

    .purple-footer-address-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .purple-footer-address-content {
        flex: 1;
    }

    .purple-footer-map-container {
        margin-top: clamp(0.6rem, 1vw, 0.8rem);
    }

    .purple-footer-map-iframe {
        height: clamp(150px, 30vw, 200px);
    }

    .purple-footer-contact-text {
        text-align: left;
    }

    .purple-footer-contact-icon {
        margin-top: 0;
    }

    .light-footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .light-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .scroll-to-top-light {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        position: relative;
        top: auto;
    }
}

@media (max-width: 480px) {
    .purple-footer {
        padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem) 0;
    }

    .purple-footer-brand {
        flex-direction: column;
        gap: 0.3rem;
    }

    .purple-footer-contact-item {
        font-size: 0.9rem;
    }

    .purple-footer-social {
        gap: 0.8rem;
    }

    .purple-footer-social-link {
        width: 45px;
        height: 45px;
    }

    .light-footer-nav-link {
        font-size: 0.8rem;
    }
}
}