.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 100px;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-title {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slider-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
    border-radius: 4px;
}

.slider-h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    padding: 25px 40px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.left-arrow, .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 2;
    padding: 20px 15px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.left-arrow:hover, .right-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.right-arrow {
    right: 20px;
}

.left-arrow {
    left: 20px;
}

.services-panel-container {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 3;
}

.services-panel {
    display: flex;
    background: #ffffff;
    border: 3px solid #e67e22;
    border-radius: 12px;
    padding: 20px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.services-panel .service-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: #d1d1d1;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background-color: #b0b0b0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    color: #333333;
}

.icon-circle svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.service-desc {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .slider-h1 {
        font-size: 2.2rem;
    }
    .icon-circle {
        width: 45px;
        height: 45px;
    }
    .icon-circle svg {
        width: 22px;
        height: 22px;
    }
    .service-title {
        font-size: 1rem;
    }
    .service-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto; /* აშორებს 100vh შეზღუდვას მობილურზე */
        display: flex;
        flex-direction: column;
        margin-bottom: 0; 
    }

    .slider-container, .slide {
        position: relative; 
        height: 280px; /* სლაიდერის ოპტიმალური ზომა მობილურზე */
    }

    .hero-image {
        height: 100%;
    }

    .slider-title {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .services-panel-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 92%;
        margin: -40px auto 40px auto; /* პანელი ოდნავ ადის სურათზე, როგორც დესკტოპზეა */
    }

    .services-panel {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 25px 15px;
    }

    .service-card {
        flex: 0 0 50%; /* 2 სერვისი გვერდიგვერდ */
    }

    .services-panel .service-card::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .slider-container, .slide {
        height: 220px;
    }

    .slider-h1 {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .left-arrow, .right-arrow {
        padding: 12px 10px;
        font-size: 18px;
        display: none;
    }
}

@media (max-width: 340px) {
    .service-card {
        flex: 0 0 100%; /* ძალზედ პატარა ეკრანებზე თითო-თითო რიგში */
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 260px) {
    .slider-h1 {
        font-size: 1.1rem;
        padding: 8px;
    }
    
    .services-panel {
        padding: 15px 5px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .icon-circle svg {
        width: 18px;
        height: 18px;
    }

    .left-arrow, .right-arrow {
        display: none;
    }
}

/* - addon - */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 100px;
    overflow: visible;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* REMOVED the CSS transition rule to prevent conflicts with JS animations */
}

.slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Prevents tiny inline layout alignment shifts */
}

/* Base Arrow Positioning (Desktop) */
.left-arrow, .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 5; /* Pushed above everything */
    padding: 20px 15px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.left-arrow:hover, .right-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.right-arrow { right: 20px; }
.left-arrow { left: 20px; }


/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 992px) {
    .slider-h1 { font-size: 2.2rem; }
    .icon-circle { width: 45px; height: 45px; }
    .service-title { font-size: 1rem; }
    .service-desc { font-size: 0.75rem; }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto; 
        display: flex;
        flex-direction: column;
        margin-bottom: 0; 
    }

    /* FIX 1: Increased slider height from 280px to 400px for a better look on tablets */
    .slider-container, .slide {
        position: relative; 
        height: 400px; 
    }

    .hero-image {
        height: 100%;
    }

    /* FIX 3: Keeps arrows visible and forces them higher up over the image center */
    .left-arrow, .right-arrow {
        display: block !important; 
        top: 50%; 
        transform: translateY(-50%);
        padding: 14px 10px;
        font-size: 20px;
    }

    .services-panel-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 92%;
        margin: -40px auto 40px auto; 
    }

    .services-panel {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 25px 15px;
    }

    .service-card {
        flex: 0 0 50%; 
    }

    .services-panel .service-card::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* FIX 1: Increased slider height from 220px to 320px on mobile phones */
    .slider-container, .slide {
        height: 320px;
    }

    .slider-h1 {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    /* FIX 3: Ensures arrows remain centered on the visual image frame area */
    .left-arrow, .right-arrow {
        display: block !important;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px 8px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto; 
        display: block; /* Changed from flex to block for standard document flow */
        margin-bottom: 40px; 
    }

    .slider-container {
        position: relative; 
        height: 400px; /* Kept your preferred larger height */
        width: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* FIX: Completely resets positioning so it drops natively below the image container */
    .services-panel-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 92%;
        margin: 20px auto 0 auto; /* Pulls it down slightly with a clean 20px top gap */
        z-index: 10;
    }

    .services-panel {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 0; /* Gives vertical breathing room between the 2 rows of cards */
        padding: 25px 15px;
        background: #ffffff;
    }

    .service-card {
        flex: 0 0 50%; /* 2 services per row */
    }

    .services-panel .service-card::after {
        display: none !important;
    }

    /* Makes sure arrows stay vertically aligned exactly to the 400px image height */
    .left-arrow, .right-arrow {
        display: block !important;
        top: 200px; /* Exactly half of the 400px slider container height */
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .slider-container, .slide {
        height: 320px; /* Kept your preferred mobile height */
    }

    .services-panel-container {
        margin: 15px auto 0 auto; /* Clean separation below the smaller mobile image */
    }

    .service-card {
        flex: 0 0 50%;
    }

    /* Readjusts arrow centers for the smaller 320px height screen */
    .left-arrow, .right-arrow {
        display: block !important;
        top: 160px; /* Exactly half of the 320px slider container height */
        transform: translateY(-50%);
        padding: 12px 8px;
        font-size: 16px;
    }
}

/* - addon - */

.break {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

/* კარუსელის მთავარი კონტეინერი */
.carousel-container {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 50px; /* ადგილი გვერდითა ღილაკებისთვის */
    box-sizing: border-box;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* ბარათის ზომის მართვა სლაიდერში */
.partners-track .partner-card {
    flex: 0 0 calc((100% - (3 * 24px)) / 4); /* დესკტოპზე ჩანს 4 ბარათი */
    box-sizing: border-box;
}

/* ნავიგაციის ღილაკების სტილი (სურათის მსგავსი) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* ღილაკის შეზღუდვა (სლაიდის დასასრულს) */
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* --- რესპონსივი და მედია ქუერები --- */
@media (max-width: 992px) {
    .carousel-container { padding: 0 45px; }
    .partners-track { gap: 20px; }
    .partners-track .partner-card {
        flex: 0 0 calc((100% - (2 * 20px)) / 3); /* ჩანს 3 ბარათი */
    }
}

@media (max-width: 768px) {
    .partners-track { gap: 16px; }
    .partners-track .partner-card {
        flex: 0 0 calc((100% - (1 * 16px)) / 2); /* ჩანს 2 ბარათი */
    }
}

@media (max-width: 480px) {
    .carousel-container { padding: 0 35px; }
    .carousel-btn {
        width: 30px;
        height: 60px;
    }
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    .partners-track .partner-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 260px) {
    .carousel-container { padding: 0 25px; }
    .carousel-btn {
        width: 24px;
        height: 45px;
    }
}

.section-header {
    margin-bottom: 32px;
    position: relative;
    width: 100%;
    display: inline-block;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

.title-underline {
    width: 40px;
    height: 4px;
    background: #e67e22;
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .partners-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 260px) {
    .partners-title {
        font-size: 1.2rem;
    }
    .title-underline {
        width: 35px;
        height: 3px;
        margin-top: 8px;
    }
}







.why-us-section {
    padding: 0 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.why-us-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-us-card {
    background: #ffffff;
    border: 2px solid rgba(230, 126, 34, 0.4);
    border-radius: 12px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 126, 34, 0.4);
}

.why-us-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background-color: #eaeaea;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #d1d1d1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: #444444;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.feature-text {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 992px) {
    .why-us-title {
        font-size: 2.2rem;
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-card::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 1.8rem;
    }
    .why-us-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .why-us-card {
        padding: 25px 15px;
    }
}

.gallery-section {
    padding: 0 0;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

.overlay-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-text {
    transform: translateY(0px);
}

@media (min-width: 993px) {
    .row-1-item {
        grid-column: span 3;
    }
    
    .row-2-item {
        grid-column: span 2;
    }
    
    .row-3-item {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .gallery-title {
        font-size: 2.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .row-1-item, .row-2-item, .row-3-item {
        grid-column: span 1 !important;
    }
    .gallery-item:nth-child(5) {
        grid-column: span 2 !important;
        aspect-ratio: 16 / 5;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .row-1-item, .row-2-item, .row-3-item, .gallery-item:nth-child(5) {
        grid-column: span 1 !important;
    }
    .gallery-item {
        aspect-ratio: 16 / 10;
    }
}

.contact-showcase {
    position: relative;
    padding: 70px 15px 90px;
    overflow: hidden;
    color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
    position: relative;
    z-index: 10;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-main-title {
    font-size: 2.75rem;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 800;
}

.contact-subtitle {
    font-size: 1.12rem;
    color: #cbd5e0;
    margin-bottom: 38px;
    line-height: 1.45;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.08rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-details-list li:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255,255,255,0.25);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.form-container {
    background: #112d6a;
    padding: 40px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
}

form input, 
form textarea {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #ff7900;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.2);
}

form textarea {
    height: 155px;
    resize: vertical;
    min-height: 110px;
}

.form-group-row {
    display: flex;
    gap: 14px;
}

.submit-btn {
    width: 100%;
    background: #ff7900;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.12rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-inner { gap: 45px; }
    .contact-main-title { font-size: 2.5rem; }
}

@media (max-width: 850px) {
    .contact-showcase {
        padding: 65px 15px 80px;
        min-height: auto;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-col { text-align: center; }
    .contact-details-list li { justify-content: center; }
    .social-links-row { justify-content: center; }

    .form-container { padding: 38px 25px; }
}

@media (max-width: 600px) {
    .contact-main-title { font-size: 2.25rem; }
    .contact-subtitle { font-size: 1.05rem; }
    .form-container { padding: 35px 22px; }
}

@media (max-width: 480px) {
    .contact-showcase { padding: 55px 12px 70px; }
    
    .contact-main-title { font-size: 2.1rem; }
    .form-title { font-size: 1.5rem; }
    
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    .social-icon img { width: 100%; height: 100%; }
}

@media (max-width: 360px) {
    .contact-showcase { padding: 50px 10px 65px; }
    
    .contact-main-title { font-size: 1.95rem; }
    .contact-subtitle { font-size: 1rem; }
    
    .form-container { 
        padding: 30px 18px; 
        border-radius: 16px;
    }
    
    form input, form textarea {
        padding: 13px 14px;
        font-size: 0.97rem;
        margin-bottom: 13px;
    }
    
    .form-title { font-size: 1.45rem; }
    .submit-btn { padding: 15px; font-size: 1.08rem; }
}

@media (max-width: 320px) {
    .contact-showcase { padding: 45px 8px 60px; }
    
    .contact-main-title { font-size: 1.82rem; }
    .contact-subtitle { font-size: 0.97rem; line-height: 1.4; }
    
    .contact-details-list li {
        font-size: 1.02rem;
        padding: 14px 0;
        gap: 12px;
    }
    
    .detail-icon { width: 26px; height: 26px; }
    
    .form-container { 
        padding: 26px 16px; 
    }
    
    form input, form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-title { font-size: 1.38rem; margin-bottom: 24px; }
    .submit-btn { 
        padding: 14px; 
        font-size: 1.05rem; 
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon img { width: 100%; height: 100%; }
}

.partner-card {
    min-height: 180px;
    background: #ffffff;
    border: 2px solid rgba(230, 126, 34, 0.4);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
    aspect-ratio: 1 / 1;
}

.logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 992px) {
    .partner-logo {
        max-width: 160px;
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        aspect-ratio: 1 / 1;
    }
    .partner-logo {
        max-width: 140px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        max-width: 120px;
        max-height: 80px;
    }
}

.partner-card {
    min-height: 180px;
    background: #ffffff;
    border: 2px solid rgba(230, 126, 34, 0.4);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
    aspect-ratio: 1 / 1;
}

.logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 992px) {
    .partner-card {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        aspect-ratio: 1 / 1;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .partner-card {
        padding: 12px;
    }
}

.why-us-section {
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.why-us-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-us-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 126, 34, 0.4);
}

.why-us-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background-color: #eaeaea;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 126, 34, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.feature-text {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 992px) {
    .why-us-title {
        font-size: 2.2rem;
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-card::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 1.8rem;
    }
    .why-us-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .why-us-card {
        padding: 25px 15px;
    }
}


