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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.luki-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.luki-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.luki-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.luki-logo img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
}

.luki-contact-btn {
    background: #204080;
    color: white !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.luki-contact-btn:hover {
    background: #1a3366;
}

.luki-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #204080;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(32, 64, 128, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.luki-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.luki-back-to-top:hover {
    background: #1a3366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 64, 128, 0.4);
}

.luki-back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.luki-slider-section {
    padding: 3rem 0;
}

.luki-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.luki-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.luki-carousel-slide.active {
    opacity: 1;
}

.luki-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luki-carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.luki-carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(32,64,128,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(32,64,128,0.6);
}

.luki-carousel-dot.active {
    background: #204080;
    transform: scale(1.2);
}

.luki-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(32,64,128,0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.luki-carousel-arrow:hover {
    background: rgba(32,64,128,1);
    transform: translateY(-50%) scale(1.1);
}

.luki-carousel-arrow.prev {
    left: 30px;
}

.luki-carousel-arrow.next {
    right: 30px;
}

.luki-agent-info {
    background: white;
    padding: 3rem 0 1rem;
    text-align: left;
}

.luki-agent-title {
    font-size: 2.5rem;
    color: #204080;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.luki-agent-subtitle {
    font-size: 1.2rem;
    color: #204080;
    margin-bottom: 2rem;
}

.luki-agent-company {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.luki-services {
    padding: 2rem 0 3rem;
    background: white;
}

.luki-services h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: normal;
}

.luki-services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.luki-service-item {
    padding: 1rem;
    transition: transform 0.3s;
}

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

.luki-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luki-service-icon svg {
    width: 60px;
    height: 60px;
    stroke: #204080;
    fill: none;
    stroke-width: 1.5;
}

.luki-service-item h3 {
    font-size: 0.95rem;
    font-weight: normal;
    color: #333;
    line-height: 1.4;
}

.luki-about-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

.luki-about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #204080;
    font-weight: 500;
    text-align: left;
}

.luki-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.luki-about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.luki-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.luki-about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #204080, #1a3366);
    border-radius: 15px;
    padding: 15px;
}

.luki-about-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.luki-about-card h3 {
    font-size: 1.5rem;
    color: #204080;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.luki-about-card p {
    color: #374151;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: left;
    flex: 1;
    word-spacing: normal;
    letter-spacing: normal;
    text-justify: none;
    hyphens: auto;
}

.luki-contact {
    padding: 7rem 0;
    background: white;
}

.luki-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #204080;
    font-weight: 500;
}

.luki-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: start;
}

.luki-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.luki-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
}

.luki-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.luki-contact-icon svg {
    width: 40px;
    height: 40px;
    stroke: #204080;
    fill: none;
    stroke-width: 1.5;
}

.luki-contact-details {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.6;
    width: 100%;
}

.luki-contact-details strong {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.luki-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.luki-team-member {
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.luki-team-member strong {
    display: block;
    color: #204080;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.luki-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.luki-phone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.luki-phone-icon {
    width: 14px;
    height: 14px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.luki-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.luki-hours-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
}

.luki-hours-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.luki-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.luki-hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.luki-hours-table td:first-child {
    font-weight: 500;
    color: #374151;
}

.luki-hours-table td:last-child {
    color: #1f2937;
    text-align: right;
}

.luki-hours-table tr:last-child td {
    border-bottom: none;
}

.luki-map-section {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.luki-map-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 2rem;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/maps-layer-MHuHigIduwppho30201NTTHiG3I7IW.png');
    background-size: cover;
    background-position: center;
}

.luki-map-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.luki-map-icon svg {
    width: 100%;
    height: 100%;
    stroke: #e5e7eb;
    fill: none;
    stroke-width: 1.5;
}

.luki-map-btn-container {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.luki-map-container {
    width: 100%;
    height: 100%;
    display: none;
}

.luki-map-container.show {
    display: block;
}

.luki-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.luki-footer {
    background: #204080;
    color: white;
    padding: 2.5rem 0;
}

.luki-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.luki-footer-content a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.luki-footer-content a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .luki-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
    
    .luki-service-item h3 {
        font-size: 0.85rem;
    }

    .luki-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .luki-about-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .luki-header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .luki-logo img {
        width: 72px;
        height: 72px;
    }

    .luki-carousel {
        height: 350px;
    }

    .luki-agent-title {
        font-size: 2rem;
    }

    .luki-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .luki-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .luki-service-item h3 {
        font-size: 0.8rem;
    }

    .luki-carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .luki-carousel-arrow.prev {
        left: 15px;
    }

    .luki-carousel-arrow.next {
        right: 15px;
    }

    .luki-team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .luki-about-us h2 {
        font-size: 2rem;
    }

    .luki-about-card {
        padding: 2rem;
    }

    .luki-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .luki-back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

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