/* 중앙 본문(main-bg-section)만 고급스럽고 반응형으로 배경이미지 적용 */
.main-bg-section {
    background: url('../img/dress03.png') center center;
     /*   background: url('../img/dress01.png') center center/cover no-repeat, rgba(255, 255, 255, 0.85); */
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 32px;
    position: relative;
    z-index: 1;
    min-height: 480px;
    margin-top: 100px; /* 상단 간격 더 추가 */
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991.98px) {
    .main-bg-section {
        background: url('../img/dress01.png') center top/cover no-repeat, rgba(255, 255, 255, 0.9);
        background-attachment: scroll;
        background-position: center top;
        border-radius: 16px;
        min-height: 320px;
        margin-top: 60px; /* 모바일 상단 간격 더 추가 */
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 991.98px) {
    /* 모바일/태블릿: 캐러셀 동영상이 화면을 꽉 채우고, 오직 active만 flex, 나머지는 none */
    .carousel-inner {
        position: relative;
        width: 100%;
        height: 100vh !important;
        overflow: hidden;
        display: block;
    }
    .carousel-item {
        width: 100%;
        height: 100vh !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: none !important;
    }
    .carousel-item.active {
        display: flex !important;
    }
    .carousel-item .carousel-media {
        opacity: 0 !important;
        pointer-events: none !important;
        display: none !important;
        transition: opacity 0.5s;
    }
    .carousel-item.active .carousel-media {
        opacity: 1 !important;
        pointer-events: auto !important;
        display: block !important;
        transition: opacity 0.5s;
    }
    .carousel-media {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
        background: #000;
        position: static;
    }
}
@media (min-width: 992px) {
    /* 데스크탑: 캐러셀 동영상 겹침 방지 */
    .carousel-inner {
        height: 100vh;
    }
    .carousel-item {
        height: 100vh;
        display: none !important;
    }
    .carousel-item.active {
        display: flex !important;
    }
    .carousel-item .carousel-media {
        display: none !important;
    }
    .carousel-item.active .carousel-media {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 991.98px) {
    /* 1차 메뉴(드롭다운) 간격 더 줄이기 */
    .navbar-nav .nav-item.dropdown {
        margin-bottom: 1px !important;
    }
    /* 모바일에서 드롭다운 메뉴 위치 조정 및 완전 숨김 */
    .navbar-nav .dropdown-menu {
        margin-top: 2px !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important; /* 항상 block, JS로 max-height만 조절 */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        border-top: none !important;
        border-bottom: none !important;
        opacity: 0;
    }
    .navbar-nav .dropdown-menu.open {
        max-height: 500px; /* 충분히 큰 값, 실제 내용에 맞게 */
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        border-top: 1px solid #eee !important;
        border-bottom: 1px solid #eee !important;
        opacity: 1;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    }
    /* 2차 하위 메뉴(드롭다운의 드롭다운)는 모바일에서 항상 숨김 */
    .navbar-nav .dropdown-menu .dropdown-menu {
        display: none !important;
    }
}
@media (max-width: 991.98px) {
    /* 1차 메뉴(드롭다운) 간격 줄이기 */
    .navbar-nav .nav-item.dropdown {
        margin-bottom: 4px !important;
    }
}
/* White bright overlay for carousel */
/*.carousel-white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.041);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: lighten;
}*/
.carousel-video-crop video {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: #000;
}
.carousel-video-crop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-media-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    position: static;
}
/* Carousel media (image/video) full height, covers menu/header, no black bars */
.carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vw * 9 / 16);
    max-height: 100vh;
    min-height: 300px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
    margin: 0;
    padding: 0;
    background: #000;
    position: static;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.carousel-item.active .carousel-media {
    opacity: 1;
}
/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    text-shadow: 0 2px 8px #2470fc99, 0 0px 1px #2470fc66; /* Blue shadow behind text */
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: #0690c2;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-between !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        /* 모바일 navbar 상하 영역 6px 줄이기 */
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
        padding-left: 10px !important;
    }

    /* 휴대폰 환경에서 navbar 로고 텍스트 중앙 정렬 및 색상 변경 */
    .navbar-brand .m-0 {
        text-align: center !important;
        color: #06a2dab6 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: auto !important;
    }

    .navbar-toggler {
        margin-left: auto !important;
        margin-right: 20px !important;

    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-dark .navbar-nav .nav-link {
        color: #0690c2;
        text-shadow: none;
    }

    .sticky-top.navbar-dark .navbar-brand {
        color: #0690c2;
    }

    .sticky-top.navbar-dark .navbar-brand .m-0 {
        color: #0690c2 !important;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

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

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

@media (max-width: 576px) {

        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: #000;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(103, 133, 172, 0.7), rgba(178, 209, 255, 0.7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


@font-face {
    font-family: 'Iropke Batang'; /* 웹폰트 이름 */
    src: url('fonts/IropkeBatang-R.woff2') format('woff2'), /* .woff2 파일 */
         url('fonts/IropkeBatang-R.woff') format('woff'); /* .woff 파일 */
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'BookkMyungjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Lt.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'YeogiOttaeJalnanGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JoseonBoldMyongjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@1.0/ChosunKm.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GapyeongHanseokbongBigBrush';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/GapyeongHanseokbong-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Cafe24ClassicType';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2210-2@1.0/Cafe24ClassicType-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PuradakGentleGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.1/PuradakGentleGothicR.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "SUIT SemiBold";
    src: url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.eot");
    src: url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/c391d8a5c5cc1742c9dab22f7527f97d.svg#SUIT SemiBold")format("svg");
}

/* Custom dropdown-menu styling for unified look */
.navbar-nav .dropdown-menu {
    border: none !important;
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.08);*/
    background: rgb(255, 255, 255) !important;
    min-width: 230px;
    max-width: 230px;
    height: auto;   /* 휴대폰 토글 메뉴들 사이의 상하 위아래 간격*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 16px 20px 20px 0px;
    left: 10px;
    margin-top: 14px;
    margin-left: 0; /* Fix alignment with parent menu */
    border-radius: 12px;
    display: none;
    
}



.navbar-nav .dropdown-menu .dropdown-item {
    color: #06A3DA; !important;
    font-size: 1.08rem;
    padding: 12px 0;
    border: none !important;
    background: transparent !important;
    flex: 0 0 auto;
}

.navbar-nav .dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: -20px;
}

.navbar-nav .nav-item.dropdown.active .dropdown-menu {
    min-width: 280px;
    max-width: 280px;
    margin-left: -150px !important;

    padding-left: 150px !important;

}

body {
    overflow-x: hidden;
}

@media (max-width: 991.98px) {
    .footer-bg, .footer-main, .footer-bg .container, .footer-main .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .footer-bg .row, .footer-main .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .footer-bg .col-lg-8, .footer-main .col-lg-8,
    .footer-bg .col-md-6, .footer-main .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .col-lg-6, .col-md-6 {
        position: relative;
    }
    .service-number img {
        width: 40%; !important;
    }
    .service-number {
        top: -150px; !important;
    }
}

.footer-bg,
.footer-main {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: transparent !important;
    color: #1ebdee !important;
    text-shadow: 0 2px 8px #45fd7399, 0 1px 1px #57ff2d88;
    border-radius: 8px;
    transition: text-shadow 0.2s, color 0.2s;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        min-width: 280px !important;
        max-width: 280px !important;
        min-height: 150px !important;
        height: auto !important;
    }
    .navbar-nav .nav-item.dropdown.active .dropdown-menu {
        min-width: 280px !important;
        max-width: 280px !important;
        min-height: 150px !important;
        height: auto !important;
    }
}
.service-container { position: relative; } .service-flower { position: absolute; top: -150px; left: 50%; transform: translateX(-50%); z-index: 2; width: 40%; } @media (max-width: 991px) { .service-flower { top: -150px; width: 40%; } }

/* 카드 배경 불투명하게 */
.step-card_02 {
    background: white !important;
}

.step-card {
    background: rgba(36, 148, 252, 0.2), rgba(255, 255, 255, 0.95) !important;
}

/* 이메일 문의 폼 스타일 */
.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 50px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.contact-form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-input:focus {
    border-color: #06A3DA;
    outline: none;
    box-shadow: 0 0 0 2px rgba(6,163,218,0.2);
}

.submit-button {
    background: #06A3DA;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #0570a8;
    transform: translateY(-2px);
}

/* 문의 섹션 현대적 디자인 */
.contact-modern {
    padding: 60px 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #06A3DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-button {
    background: #06A3DA;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-button:hover {
    background: #0570a8;
    transform: translateY(-2px);
}

.privacy-modal .modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-modal .modal-header {
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.privacy-modal .modal-title {
    color: #06A3DA;
    font-weight: 600;
}

.privacy-modal .modal-body {
    padding: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-modal .modal-footer {
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.location-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.location-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 100%;
    min-height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.location-image img {
    max-width: 80%;
    max-height: 200px;
    object-fit: contain;
}

.location-info {
    padding: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

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

.contact-item .icon {
    width: 45px;
    height: 45px;
    background: #06A3DA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item .info h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item .info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.email-copy {
    cursor: pointer;
    transition: color 0.3s ease;
}

.email-copy:hover {
    color: #06A3DA;
}

@media (max-width: 768px) {
    .location-image {
        min-height: 200px;
    }
    
    .contact-item {
        padding: 0.25rem;
    }
    
    .contact-item .icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
