/* =====================================================
   DOGGILSTAR HEARING CENTER
   STYLE V5
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Noto Sans KR",sans-serif;

    color:#222;

    background:#fff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* =====================================================
   COLOR
===================================================== */

:root{

    --primary:#0B63FF;

    --naver:#03C75A;

    --dark:#1f2937;

    --gray:#6b7280;

    --light:#f7f9fc;

    --white:#ffffff;

}

/* =====================================================
   HEADER V7
===================================================== */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.06);
    z-index:9999;

}

.header-inner{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    font-size:32px;

    font-weight:900;

    color:var(--primary);

    white-space:nowrap;

    flex-shrink:0;

}

nav{

    margin-left:auto;

}

nav ul{

    display:flex;

    align-items:center;

    gap:34px;

}

nav a{

    font-size:16px;

    font-weight:700;

    transition:.25s;

}

nav a:hover{

    color:var(--primary);

}

.menu-toggle{

    display:none;

    border:none;

    background:none;

    cursor:pointer;

    font-size:32px;

    color:var(--primary);

}

/* =====================
TABLET
===================== */

@media(max-width:1100px){

.logo{

font-size:26px;

}

nav ul{

gap:22px;

}

nav a{

font-size:15px;

}

}

/* =====================
MOBILE
===================== */

@media(max-width:768px){

.header-inner{

height:70px;

}

.logo{

font-size:22px;

max-width:70%;

overflow:hidden;

text-overflow:ellipsis;

}

.menu-toggle{

display:block;

z-index:10001;

}

nav{

position:fixed;

top:70px;

left:-100%;

width:100%;

height:calc(100vh - 70px);

background:#fff;

transition:.35s ease;

overflow-y:auto;

padding:20px 0;

}

nav.active{

left:0;

}

nav ul{

display:flex;

flex-direction:column;

align-items:flex-start;

gap:0;

}

nav li{

width:100%;

}

nav a{

display:block;

width:100%;

padding:18px 28px;

font-size:18px;

border-bottom:1px solid #eee;

}

}

/* =====================================================
   BUTTON
===================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-white{

    background:white;

    color:#222;

}

.btn-green{

    background:var(--naver);

    color:white;

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn:hover{

    transform:translateY(-4px);

}
/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-2;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.35)
    );

    z-index:-1;

}

.hero-overlay{

    width:min(1100px,92%);

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    color:white;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(14px);

    border-radius:999px;

    margin-bottom:28px;

    font-size:15px;

    letter-spacing:2px;

    font-weight:700;

}

.hero h1{

    font-size:72px;

    line-height:1.2;

    font-weight:900;

    margin-bottom:24px;

}

.hero-sub{

    font-size:23px;

    color:#f3f3f3;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    justify-content:center;

    margin-bottom:55px;

}

/* =====================================================
   NAVER CARD
===================================================== */

.naver-card{

    width:450px;

    max-width:100%;

    padding:38px;

    border-radius:28px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(18px);

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.naver-logo{

    display:inline-block;

    background:var(--naver);

    color:white;

    padding:9px 18px;

    border-radius:999px;

    font-size:15px;

    font-weight:800;

    margin-bottom:20px;

}

.naver-card h2{

    font-size:34px;

    margin-bottom:16px;

}

.rating{

    color:#FFD84A;

    font-size:30px;

    font-weight:700;

    margin-bottom:22px;

}

.rating span{

    color:white;

    margin-left:10px;

    font-size:20px;

}

.naver-list{

    margin:28px 0;

}

.naver-list li{

    margin:14px 0;

    font-size:18px;

}

.naver-btn{

    display:inline-block;

    width:100%;

    padding:18px;

    background:var(--naver);

    color:white;

    border-radius:999px;

    font-size:19px;

    font-weight:700;

    transition:.3s;

}

.naver-btn:hover{

    transform:translateY(-4px);

    background:#02b451;

}

/* =====================================================
   SCROLL ICON
===================================================== */

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    font-size:30px;

    color:white;

    animation:scrollDown 1.8s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    50%{

        opacity:1;

        transform:translate(-50%,10px);

    }

    100%{

        opacity:0;

        transform:translate(-50%,20px);

    }

}
/* =====================================================
   DIRECTOR
===================================================== */

#director{

    background:var(--light);

    padding:120px 0;

}

.director-wrap{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:80px;

    align-items:center;

}

.director-image{

    position:relative;

}

.director-image img{

    width:100%;

    border-radius:28px;

    border:8px solid white;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.director-badge{

    position:absolute;

    right:-20px;

    bottom:30px;

    background:var(--primary);

    color:white;

    padding:14px 24px;

    border-radius:999px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(11,99,255,.3);

}

.director-sub{

    display:inline-block;

    color:var(--primary);

    font-size:16px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.director-text h2{

    font-size:52px;

    line-height:1.25;

    margin-bottom:24px;

}

.director-name{

    font-size:24px;

    font-weight:700;

    margin-bottom:35px;

}

.director-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.director-list div{

    background:white;

    padding:24px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.director-list div:hover{

    transform:translateY(-6px);

}

.director-list strong{

    display:block;

    color:var(--primary);

    font-size:24px;

    margin-bottom:8px;

}

.director-message{

    padding:28px;

    border-left:5px solid var(--primary);

    background:white;

    border-radius:16px;

    font-size:19px;

    color:#555;

    margin-bottom:35px;

    font-style:italic;

}

.director-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* =====================================================
   SECTION TITLE
===================================================== */

.about-title{

    text-align:center;

    margin-bottom:70px;

}

.section-badge{

    display:inline-block;

    background:rgba(11,99,255,.1);

    color:var(--primary);

    padding:10px 22px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:18px;

}

.about-title h2{

    font-size:48px;

    margin-bottom:18px;

}

.about-title p{

    color:var(--gray);

    font-size:19px;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .director-wrap{

        grid-template-columns:1fr;

    }

    .director-image{

        max-width:500px;

        margin:auto;

    }

}

@media(max-width:768px){

    .director-text h2{

        font-size:36px;

    }

    .director-list{

        grid-template-columns:1fr;

    }

}
/* =====================================================
   REVIEW
===================================================== */

#reviews{

    padding:120px 0;

    background:#f8fbff;

}

.review-header{

    text-align:center;

    margin-bottom:60px;

}

.review-badge{

    display:inline-block;

    background:var(--naver);

    color:#fff;

    padding:10px 22px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:18px;

}

.review-header h2{

    font-size:46px;

    margin:20px 0;

}

.review-header p{

    color:var(--gray);

    font-size:19px;

}

.review-header span{

    margin-left:15px;

}

.review-wrapper{

    display:flex;

    align-items:center;

    gap:25px;

}

.review-window{

    width:100%;

    overflow:hidden;

}

.review-track{

    display:flex;

    gap:25px;

    transition:transform .55s ease;

}

.review-card{

    flex:0 0 calc((100% - 50px)/3);

    background:white;

    border-radius:28px;

    padding:38px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.review-icon{

    font-size:36px;

    margin-bottom:18px;

}

.review-card p{

    color:#444;

    line-height:1.9;

    min-height:120px;

}

.review-stars{

    color:#FFC107;

    font-size:22px;

    margin:22px 0 10px;

}

.review-card span{

    color:var(--naver);

    font-weight:700;

}

.review-arrow{

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:white;

    box-shadow:0 10px 30px rgba(0,0,0,.1);

    cursor:pointer;

    font-size:26px;

    transition:.3s;

}

.review-arrow:hover{

    background:var(--naver);

    color:white;

}

.review-bottom{

    margin-top:60px;

    text-align:center;

}

.review-btn{

    display:inline-block;

    background:var(--naver);

    color:white;

    padding:18px 40px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.review-btn:hover{

    background:#02b451;

    transform:translateY(-4px);

}

@media(max-width:992px){

    .review-card{

        flex:0 0 calc((100% - 25px)/2);

    }

}

@media(max-width:768px){

    .review-card{

        flex:0 0 100%;

    }

    .review-arrow{

        display:none;

    }

}
/* =====================================================
   ABOUT
===================================================== */

#about{

    padding:120px 0;

    background:white;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-bottom:80px;

}

.stat-card{

    background:linear-gradient(135deg,#0B63FF,#3D8BFF);

    color:white;

    border-radius:24px;

    padding:45px 20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(11,99,255,.25);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h3{

    font-size:64px;

    font-weight:900;

    line-height:1;

}

.stat-card span{

    font-size:28px;

    font-weight:700;

}

.stat-card p{

    margin-top:18px;

    font-size:18px;

    opacity:.95;

}

/* =====================================================
   FEATURE
===================================================== */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature{

    background:white;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef5ff;

    border-radius:50%;

    font-size:34px;

}

.feature h3{

    font-size:24px;

    margin-bottom:15px;

}

.feature p{

    color:var(--gray);

    line-height:1.8;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .stats-grid{

        grid-template-columns:1fr;

    }

    .feature-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .feature-grid{

        grid-template-columns:1fr;

    }

    .stat-card h3{

        font-size:48px;

    }

}
/* =====================================================
   BRANDS
===================================================== */

#brands{

    padding:120px 0;

    background:var(--light);

}

.brand-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.brand-card{

    background:white;

    border-radius:28px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.brand-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.brand-card img{

    width:120px;

    height:80px;

    object-fit:contain;

    margin:0 auto 25px;

}

.brand-card h3{

    font-size:28px;

    margin-bottom:14px;

}

.brand-card p{

    color:var(--gray);

    line-height:1.8;

}

/* =====================================================
   SERVICE
===================================================== */

#service{

    padding:120px 0;

    background:white;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    overflow:hidden;

    border-radius:28px;

    background:white;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.service-card .content{

    padding:30px;

}

.service-card h3{

    font-size:26px;

    margin-bottom:14px;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .brand-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .service-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .brand-grid{

        grid-template-columns:1fr;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

}
/* =====================================================
   CONTACT
===================================================== */

#contact{

    padding:120px 0;

    background:var(--light);

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:70px;

}

.contact-card{

    background:white;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.contact-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.contact-card p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:18px;

}

.contact-link{

    color:var(--primary);

    font-weight:700;

}

.contact-hours{

    background:white;

    padding:45px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-hours h3{

    font-size:30px;

    margin-bottom:20px;

}

.contact-hours p{

    margin:10px 0;

    color:var(--gray);

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#111827;

    color:white;

    padding:80px 0 30px;

}

.footer-wrap{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:50px;

}

.footer-left h2{

    font-size:34px;

    margin-bottom:20px;

}

.footer-left p{

    color:#cbd5e1;

    line-height:1.9;

}

.footer-center h4,
.footer-right h4{

    margin-bottom:20px;

    font-size:22px;

}

.footer-center a{

    display:block;

    margin:12px 0;

    color:#d1d5db;

    transition:.3s;

}

.footer-center a:hover{

    color:white;

}

.footer-right p{

    color:#d1d5db;

    line-height:1.8;

    margin:10px 0;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding-top:30px;

    color:#9ca3af;

}

/* =====================================================
   FLOATING BUTTON
===================================================== */

.floating-phone,
.floating-reserve{

    position:fixed;

    right:25px;

    width:180px;

    height:56px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-weight:700;

    box-shadow:0 12px 30px rgba(0,0,0,.2);

    transition:.3s;

    z-index:9999;

}

.floating-phone{

    bottom:95px;

    background:var(--primary);

}

.floating-reserve{

    bottom:25px;

    background:var(--naver);

}

.floating-phone:hover,
.floating-reserve:hover{

    transform:translateY(-4px);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-wrap{

        grid-template-columns:1fr;

        text-align:center;

    }

}

@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .floating-phone,
    .floating-reserve{

        width:150px;

        height:50px;

        right:15px;

    }

}
/* =====================================================
   FAQ
===================================================== */

#faq{

    padding:120px 0;

    background:#f8fbff;

}

.faq-list{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:white;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    background:white;

    border:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 35px;

    font-size:22px;

    font-weight:700;

    text-align:left;

    transition:.3s;

}

.faq-question:hover{

    background:#f5f8ff;

}

.faq-question span{

    font-size:32px;

    color:var(--primary);

    transition:.35s;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 35px 30px;

    color:#666;

    line-height:1.9;

    font-size:18px;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

@media(max-width:768px){

    .faq-question{

        font-size:18px;

        padding:22px;

    }

    .faq-answer p{

        padding:0 22px 22px;

        font-size:16px;

    }

}
/* =========================
   GALLERY
========================= */

#gallery{
    padding:120px 0;
    background:#f8fbff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:260px 260px;
    gap:22px;
    margin-top:70px;
}

.gallery-big{
    grid-row:1 / 3;
    overflow:hidden;
    border-radius:28px;
}

.gallery-item{
    overflow:hidden;
    border-radius:24px;
}

.gallery-big img,
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
    cursor:pointer;
}

.gallery-big:hover img,
.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-big,
.gallery-item{
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-big:hover,
.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* 모바일 */

@media(max-width:900px){

.gallery-grid{

grid-template-columns:1fr;

grid-template-rows:auto;

}

.gallery-big{

grid-row:auto;

height:320px;

}

.gallery-item{

height:260px;

}

}
/* =========================
   HISTORY
========================= */

#history{

    padding:120px 0;

    background:white;

}

.history-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.history-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.history-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 65px rgba(0,0,0,.15);

}

.history-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    object-position:center 20%;

    transition:.45s;

}

.history-card:hover img{

    transform:scale(1.06);

}

.history-content{

    padding:40px 35px;

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.history-content h3{

    font-size:30px;

    margin-bottom:20px;

    font-weight:800;

}

.history-content p{

    color:#666;

    line-height:2;

    font-size:17px;

}

/* 모바일 */

@media(max-width:1000px){

.history-grid{

grid-template-columns:1fr;

}

}



/* =====================================================
   V7 RESPONSIVE PACK 1
===================================================== */

@media (max-width:768px){

.container{
    width:min(94%,540px);
}

header{
    padding:0;
}

.header-inner{
    height:68px;
}

.logo{
    font-size:20px;
    max-width:65%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.hero{
    min-height:100svh;
    height:auto;
    padding:110px 0 60px;
}

.hero h1{
    font-size:40px;
    line-height:1.25;
}

.hero-sub{
    font-size:18px;
    margin-bottom:28px;
}

.hero-buttons{
    width:100%;
    flex-direction:column;
    gap:14px;
}

.hero-buttons .btn{
    width:100%;
}

.naver-card{
    width:100%;
    padding:24px;
}

.naver-card h2{
    font-size:26px;
}

.rating{
    font-size:22px;
}

.director-wrap,
.stats-grid,
.feature-grid,
.brand-grid,
.service-grid,
.contact-grid,
.history-grid,
.footer-wrap{
    grid-template-columns:1fr !important;
}

.review-wrapper{
    gap:0;
}

.about-title h2,
.review-header h2,
.director-text h2{
    font-size:34px;
}

.floating-phone,
.floating-reserve{
    width:56px;
    height:56px;
    border-radius:50%;
    font-size:10px;
    justify-content:center;
}

}
/*==================================
V7 MOBILE PACK - HEADER
==================================*/

@media (max-width:768px){

header{

position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:9999;

}

.header-inner{

height:72px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 20px;

}

.logo{

font-size:22px;
font-weight:800;

}

.menu-toggle{

display:flex;
justify-content:center;
align-items:center;

width:44px;
height:44px;

border:none;
background:none;

font-size:30px;
cursor:pointer;

}

nav{

position:fixed;

top:72px;
left:-100%;

width:82%;
height:100vh;

background:#fff;

transition:.35s;

box-shadow:0 0 30px rgba(0,0,0,.12);

padding:40px 25px;

}

nav.active{

left:0;

}

nav ul{

display:flex;

flex-direction:column;

gap:28px;

}

nav li{

width:100%;

}

nav a{

font-size:18px;
font-weight:700;

display:block;

padding:6px 0;

}

body{

padding-top:72px;

}

}
/* =====================================
   DOGGILSTAR TV
===================================== */

.tv-section{

    padding:100px 0;

    background:#f8fbff;

}

.tv-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.tv-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    text-decoration:none;

    color:#222;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.tv-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.tv-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

}

.tv-content{

    padding:28px;

}

.tv-tag{

    display:inline-block;

    background:#2D8CFF;

    color:#fff;

    padding:6px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.tv-content h3{

    font-size:26px;

    line-height:1.4;

    margin-bottom:15px;

}

.tv-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.tv-btn{

    color:#2D8CFF;

    font-weight:700;

}

.tv-bottom{

    margin-top:55px;

    text-align:center;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.tv-grid{

grid-template-columns:1fr;

gap:30px;

}

.tv-card img{

height:220px;

}

}

@media(max-width:768px){

.tv-section{

padding:70px 0;

}

.tv-content{

padding:22px;

}

.tv-content h3{

font-size:22px;

}

.tv-card{

border-radius:18px;

}

}

@media(max-width:480px){

.tv-card img{

height:190px;

}

.tv-content{

padding:18px;

}

.tv-content h3{

font-size:19px;

}

.tv-content p{

font-size:15px;

line-height:1.7;

}

.tv-tag{

font-size:12px;

padding:5px 12px;

}

}
/* =====================================
   BLOG SECTION
===================================== */

.blog-section{

    padding:100px 0;

    background:#ffffff;

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.blog-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-decoration:none;

    color:#222;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.blog-icon{

    font-size:48px;

    margin-bottom:20px;

}

.blog-badge{

    display:inline-block;

    background:#03C75A;

    color:#fff;

    padding:6px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:20px;

}

.blog-card h3{

    font-size:24px;

    line-height:1.5;

    margin-bottom:15px;

}

.blog-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.blog-link{

    color:#03C75A;

    font-weight:700;

}

.blog-bottom{

    text-align:center;

    margin-top:60px;

}

/* ==========================
   TABLET
========================== */

@media(max-width:1100px){

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.blog-section{

padding:70px 0;

}

.blog-grid{

grid-template-columns:1fr;

gap:25px;

}

.blog-card{

padding:28px;

border-radius:18px;

}

.blog-card h3{

font-size:21px;

}

.blog-card p{

font-size:15px;

}

.blog-icon{

font-size:40px;

}

}

@media(max-width:480px){

.blog-card{

padding:22px;

}

.blog-card h3{

font-size:19px;

}

.blog-card p{

font-size:14px;

line-height:1.7;

}

.blog-icon{

font-size:34px;

}

.blog-badge{

font-size:11px;

padding:5px 12px;

}

}
/* =====================================
   PREMIUM BRANDS V10
===================================== */

.brands-section{

    padding:110px 0;

    background:linear-gradient(180deg,#ffffff,#f7faff);

}

.brand-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.brand-card{

    background:#fff;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

    overflow:hidden;

}

.brand-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.brand-card img{

    width:100%;

    max-width:210px;

    height:90px;

    object-fit:contain;

    margin:auto;

    display:block;

    margin-bottom:25px;

    transition:.35s;

}

.brand-card:hover img{

    transform:scale(1.08);

}

.brand-card h3{

    font-size:26px;

    font-weight:800;

    margin-bottom:10px;

    letter-spacing:1px;

}

.country{

    display:inline-block;

    background:#eef6ff;

    color:#2D8CFF;

    padding:7px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.brand-card p{

    color:#666;

    font-size:16px;

    line-height:1.7;

}

/* 브랜드별 포인트 컬러 */

.brand-card:nth-child(1){

    border-top:5px solid #78C043;

}

.brand-card:nth-child(2){

    border-top:5px solid #F6B400;

}

.brand-card:nth-child(3){

    border-top:5px solid #111;

}

.brand-card:nth-child(4){

    border-top:5px solid #FFD600;

}

.brand-card:nth-child(5){

    border-top:5px solid #D6001C;

}

.brand-card:nth-child(6){

    border-top:5px solid #0066CC;

}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

.brand-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.brands-section{

padding:70px 0;

}

.brand-grid{

grid-template-columns:1fr;

gap:25px;

}

.brand-card{

padding:35px 22px;

border-radius:20px;

}

.brand-card img{

max-width:180px;

height:70px;

}

.brand-card h3{

font-size:22px;

}

.country{

font-size:13px;

}

.brand-card p{

font-size:15px;

}

}

@media(max-width:480px){

.brand-card{

padding:28px 18px;

}

.brand-card img{

max-width:160px;

height:60px;

}

.brand-card h3{

font-size:20px;

}

.country{

padding:6px 14px;

font-size:12px;

}

.brand-card p{

font-size:14px;

}

}
/* ===== OUR SERVICE V10 ===== */

.service-card h3{

    font-size:24px;

    line-height:1.5;

    margin-bottom:18px;

    font-weight:800;

}

.service-card h3::first-line{

    display:inline-block;

    color:#03C75A;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}
.logo{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

}

.logo img{

    width:42px;

    height:42px;

    object-fit:contain;
    
    display:block;

}

.logo span{

    font-size:32px;

    font-weight:800;

    color:#2366F6;

    line-height:1;

    white-space:nowrap;

}
@media(max-width:768px){

.logo img{

width:34px;

height:34px;

}

.logo span{

font-size:18px;

}

}