/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #2d7a71;
    --blue: #3bbdd1;
    --light-blue: #5ad8d4;
    --dark-blue-alt: #2d7a9a;
    --light-blue-bg: #e0f4f8;
    --orange: #f97316;
    --orange-light: #fb923c;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
.header {
    background-color: #efefef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-content .logo,
.header-content .nav-menu {
    display: flex;
    align-items: center;
}

.header-content .logo {
    margin-right: 0;
}

.header-content .nav-menu {
    flex: 0 0 auto;
}

.header-content .contact-info {
    margin-left: 0;
}

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

.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-box .logo-image {
    max-height: 80px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.logo-subtext {
    font-size: 12px;
    color: var(--dark-blue);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--blue);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    /* Active highlighting removed - keeping same color as default */
    color: var(--dark-blue);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
}

.contact-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 4px 0;
    position: relative;
    text-align: center;
}

.contact-link .phone-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
}

.contact-link .contact-text {
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--blue);
    transform: translateY(-2px);
}

.contact-link:hover .phone-icon {
    transform: rotate(15deg) scale(1.1);
}

.contact-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: #e0f4f8;
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
    will-change: opacity;
}

.hero-background-1.visible,
.hero-background-2.visible {
    opacity: 1;
}

.hero::after {
    display: none;
}

.hero .container,
.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.hero-title span {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.502);
}

.hero-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.slider-arrow:hover {
    transform: scale(1.2);
    color: var(--blue);
}

.slider-image {
    flex: 1;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark-blue);
    transition: all 0.4s ease;
    cursor: pointer;
}

.slider-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(26, 77, 71, 0.4);
}

.slider-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    padding: 4px;
    margin: -4px;
}

.dot.active {
    background-color: var(--white);
}

.dot:hover {
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icon {
    color: var(--white);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--blue);
}

/* Services Section */
.services {
    background-color: var(--white);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--blue));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 10px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark-blue);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(26, 77, 71, 0.4);
}

.service-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.service-image:hover .image-placeholder {
    transform: scale(1.1);
    color: var(--white);
}

.service-image-dementia {
    background-image: url('images/dementia.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-dementia::before {
    display: none;
}

.service-image-dementia .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-night {
    background-image: url('images/night.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-night::before {
    display: none;
}

.service-image-night .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-palliative {
    background-image: url('images/palliative.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-palliative::before {
    display: none;
}

.service-image-palliative .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-hygiene {
    background-image: url('images/hygiene.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-hygiene::before {
    display: none;
}

.service-image-hygiene .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-physio {
    background-image: url('images/physio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-physio::before {
    display: none;
}

.service-image-physio .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-art {
    background-image: url('images/art.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-art::before {
    display: none;
}

.service-image-art .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-medical {
    background-image: url('images/medical.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-medical::before {
    display: none;
}

.service-image-medical .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-image-massage {
    background-image: url('images/massage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-image-massage::before {
    display: none;
}

.service-image-massage .image-placeholder {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.4;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.service-item:hover .service-title::after {
    width: 100%;
}

/* About Section */
.about {
    background-color: var(--light-blue-bg);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: stretch;
    max-width: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('images/about.jpg');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: stretch;
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(26, 77, 71, 0.45);
}

.about-image::before {
    display: none;
}

.about-image .image-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.about-image:hover .image-placeholder {
    transform: scale(1.15);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: space-between;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 10px;
    align-items: start;
}

.value-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.value-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--dark-blue);
    border-radius: 50%;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.value-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
    background-color: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 10px 25px rgba(26, 77, 71, 0.4);
}

.value-item:hover .value-icon::before {
    opacity: 1;
}

.value-icon .image-placeholder {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.value-icon svg {
    fill: var(--white);
    color: var(--white);
}

.value-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.value-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.value-item:hover .value-text {
    color: var(--dark-blue);
    transform: translateX(5px);
}

.value-item:hover .value-text::after {
    width: 100%;
}

/* Process Section */
.process {
    background-color: var(--white);
    padding: 80px 0;
}

.process-title {
    color: var(--blue);
    margin-bottom: 60px;
}

.process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.process-arrow.process-arrow-down {
    display: none;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.process-box {
    width: 250px;
    height: 180px;
    border: none;
    border-radius: 8px;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.process-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-box:hover {
    background-color: var(--blue);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(26, 77, 71, 0.45);
}

.process-box:hover::before {
    opacity: 1;
}

.process-box .image-placeholder {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.process-box-daily {
    background-image: url('images/clock.png');
    background-size: auto 75%;
    background-position: center;
    background-repeat: no-repeat;
}

.process-box-nursing {
    background-image: url('images/nursing.png');
    background-size: auto 75%;
    background-position: center;
    background-repeat: no-repeat;
}

.process-box-companion {
    background-image: url('images/companion.png');
    background-size: auto 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.process-box-meal {
    background-image: url('images/meal.png');
    background-size: auto 75%;
    background-position: center;
    background-repeat: no-repeat;
}

.process-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.process-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.process-step:hover .process-text {
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.process-step:hover .process-text::after {
    width: 100%;
}

.process-arrow {
    display: none;
}

.process-arrow-down {
    transform: rotate(90deg);
    width: 100%;
    text-align: center;
    flex-basis: 100%;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-blue-bg);
    padding: 80px 0;
}

.testimonials-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.testimonial-arrow {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-arrow:hover {
    background-color: var(--blue);
    transform: scale(1.1);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

.testimonial-card {
    background-color: var(--dark-blue);
    border-radius: 12px;
    padding: 100px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 77, 71, 0.4);
    background-color: var(--blue);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.15) rotate(10deg);
    background-color: var(--light-blue);
    box-shadow: 0 10px 25px rgba(26, 77, 71, 0.4);
}

.testimonial-card:hover .testimonial-avatar::before {
    opacity: 1;
}

.testimonial-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--white);
    font-size: 20px;
}

.testimonial-author {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonial-author::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.testimonial-card:hover .testimonial-author::after {
    width: 100%;
}

.testimonial-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 0 20px;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--dark-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-indicator.active {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    width: 12px;
    height: 12px;
}

/* Footer */
.footer-upper {
    background: linear-gradient(135deg, #227475 50%, #00302c 100%);
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 280px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo-text:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.footer-about:hover .footer-description {
    color: rgba(255, 255, 255, 1);
}

.footer-title {
    font-size: 24px;
    border-radius: 5px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.footer-title:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.footer-title:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer-social .social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    color: var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-social .social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-social .social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.back-to-top {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: var(--dark-blue);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    touch-action: manipulation;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(45, 122, 113, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover::before {
    width: 300px;
    height: 300px;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--light-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover .footer-column-title {
    color: var(--light-blue);
}

.footer-column:hover .footer-column-title::after {
    width: 60px;
}

.footer-services-list,
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-services-list li,
.footer-links-list li {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-services-list li::before,
.footer-links-list li::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--light-blue);
}

.footer-services-list li:hover::before,
.footer-links-list li:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-services-list li:hover,
.footer-links-list li:hover {
    padding-left: 10px;
}

.footer-services-list a,
.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.footer-services-list a::after,
.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.footer-services-list a:hover,
.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-services-list a:hover::after,
.footer-links-list a:hover::after {
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--light-blue);
    transition: all 0.3s ease;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.contact-item:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-item:hover svg {
    transform: scale(1.2) rotate(5deg);
    color: var(--white);
}

.contact-item:hover::after {
    width: 100%;
}

.contact-item span {
    display: inline-block;
    font-weight: bold;
}

.footer-lower {
    background-color: var(--dark-blue);
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-content {
        justify-content: center;
        text-align: center;
    }

    .hero-title span {
        font-size: 52px;
        line-height: 1.2;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }

    .section-title {
        font-size: 38px;
        margin-bottom: 55px;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-values {
        gap: 20px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-slider-container {
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .testimonial-indicators {
        display: none;
    }

    .process {
        padding: 80px 0;
    }

    .process-flow {
        max-width: 900px;
        gap: 25px;
    }

    .process-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }

    .process-box {
        width: 220px;
        height: 160px;
    }

    .process-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header {
        padding: 20px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .logo {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 8px;
        min-height: 36px;
        display: flex;
        align-items: center;
        letter-spacing: 0.5px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .contact-info {
        align-items: center;
        width: auto;
        padding-top: 0;
        flex-shrink: 0;
    }

    .contact-link {
        font-size: 13px;
    }


    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-title span {
        font-size: 42px;
        line-height: 1.2;
    }

    .slider-container {
        margin: 20px 0;
    }

    .slider-arrow {
        font-size: 40px;
        padding: 15px;
        min-width: 50px;
        min-height: 50px;
    }

    .social-icons {
        gap: 25px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
        line-height: 1.3;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-item {
        gap: 20px;
    }

    .service-title {
        font-size: 16px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-slider-container {
        gap: 10px;
        padding: 0;
    }

    .testimonials-slider {
        margin: 0;
        width: 100%;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .testimonial-arrow {
        display: none;
    }

    .testimonial-indicators {
        display: flex;
    }

    .testimonial-card {
        padding: 50px 30px;
        min-height: 260px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .process {
        padding: 80px 0;
    }

    .process-flow {
        gap: 30px;
    }

    .process-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }

    .process-box {
        width: 200px;
        height: 140px;
    }

    .process-arrow {
        display: none;
    }

    .process-arrow-down {
        display: none;
    }

    .process-text {
        font-size: 17px;
        margin-top: 10px;
    }

    .footer-upper {
        padding: 60px 0;
    }

    .back-to-top {
        padding: 16px 32px;
        font-size: 15px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 16px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        flex-wrap: wrap;
    }

    .logo {
        display: flex;
    }

    .nav-menu {
        flex-direction: row;
        gap: 6px;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        white-space: nowrap;
        overflow-x: auto;
    }

    .nav-link {
        font-size: 11px;
        padding: 6px 6px;
        min-height: 32px;
        width: auto;
        border-bottom: none;
        letter-spacing: 0.3px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        flex-wrap: wrap;
    }

    .contact-info {
        padding-top: 0;
        border-top: none;
        width: auto;
        align-items: center;
        flex-shrink: 0;
    }

    .contact-link {
        font-size: 12px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-title {
        gap: 8px;
    }

    .hero-title span {
        font-size: 32px;
        line-height: 1.2;
    }

    .slider-container {
        margin: 30px 0;
        gap: 10px;
    }

    .slider-arrow {
        font-size: 36px;
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    .slider-image {
        border-radius: 12px;
    }

    .slider-dots {
        gap: 12px;
        margin-top: 10px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }

    .social-icons {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .services {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-item {
        gap: 12px;
        padding: 8px;
    }

    .service-image {
        aspect-ratio: 1;
    }

    .service-title {
        font-size: 13px;
    }

    .about {
        padding: 70px 0;
    }

    .about-content {
        gap: 35px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-values {
        gap: 20px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-text {
        font-size: 14px;
    }

    .service-image {
        border-radius: 12px;
    }

    .service-title {
        font-size: 17px;
    }

    .process {
        padding: 70px 0;
    }

    .process-flow {
        gap: 35px;
    }

    .process-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: start;
        justify-items: center;
    }

    .process-step {
        gap: 10px;
        width: 100%;
        max-width: 140px;
    }

    .process-box {
        width: 100%;
        max-width: 140px;
        height: 110px;
        border-radius: 10px;
    }

    .process-arrow {
        display: none;
    }

    .process-arrow-down {
        display: none;
    }

    .process-text {
        font-size: 13px;
        margin-top: 8px;
        text-align: center;
    }

    .testimonials {
        padding: 70px 0;
    }

    .testimonials-slider-container {
        padding: 0 5px;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 10px);
        max-width: calc(100% - 10px);
        padding: 45px 25px;
        border-radius: 16px;
        gap: 25px;
        min-height: 240px;
    }

    .testimonial-avatar {
        width: 90px;
        height: 90px;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .testimonial-rating {
        gap: 6px;
    }

    .star {
        font-size: 22px;
    }

    .testimonial-author {
        font-size: 17px;
    }

    .footer-upper {
        padding: 50px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo .logo-box {
        margin-bottom: 20px;
    }

    .footer-description {
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 15px;
        margin-top: 20px;
    }

    .footer-social .social-icon {
        width: 42px;
        height: 42px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-services-list,
    .footer-links-list {
        gap: 10px;
    }

    .footer-services-list a,
    .footer-links-list a {
        font-size: 13px;
    }

    .footer-contact-info {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-item {
        font-size: 13px;
    }

    .back-to-top {
        padding: 12px 18px;
        font-size: 12px;
        min-height: 46px;
        width: 100%;
        max-width: 100%;
    }

    .footer-lower {
        padding: 25px 0;
    }

    .copyright {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.6;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Placeholder Styles */
.image-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transition: all 0.4s ease;
}

/* Sticky Social Icons (Desktop Only) */
.sticky-social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(26, 77, 71, 0.4), 0 2px 8px rgba(26, 77, 71, 0.3);
    cursor: pointer;
    position: relative;
}

.sticky-social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sticky-social-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(26, 77, 71, 0.5), 0 4px 12px rgba(26, 77, 71, 0.4);
}

.sticky-social-icon:hover::before {
    opacity: 1;
}

/* Hide sticky social icons on mobile and tablet */
@media (max-width: 1024px) {
    .sticky-social-icons {
        display: none;
    }
}

