/*=============ANTAR ANGAN HERO============*/
.antar-hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding:50px 0 40px;
    overflow:hidden;
    background:linear-gradient(135deg,#f8f8f8 0%,#ffffff 100%);
}
/* Background */
.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(201,168,106,.15),
        transparent 40%);
    z-index:1;
}
/* Content */
.hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
}
.hero-badge{
    display:inline-block;
    padding:10px 28px;
    margin-bottom:25px;
    background:rgba(201,168,106,.12);
    color:#C9A86A;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}
.hero-title{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(42px,6vw,72px);
    font-weight:700;
    line-height:1.1;
    color:#111;
    margin-bottom:15px;
}
.hero-subtitle{
    font-size:32px;
    font-weight:500;
    color:#C9A86A;
    margin-bottom:25px;
}
.hero-description{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:40px;
}
/* Buttons */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.hero-btn1,
.hero-btn2{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s ease;
}
.hero-btn1{
    background:#C9A86A;
    color:#fff;
}
.hero-btn1:hover{
    background:#111;
    color:#fff;
    transform:translateY(-5px);
}
.hero-btn2{
    border:2px solid #C9A86A;
    color:#C9A86A;
    background:transparent;
}
.hero-btn2:hover{
    background:#C9A86A;
    color:#fff;
    transform:translateY(-5px);
}
/* Image */
.hero-image-box{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
}
.hero-image{
    width:100%;
    max-width:560px;
    height:auto;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.18));
    animation:heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
/* =========ANTAR ANGAN HERO RESPONSIVE============ */
@media (max-width:991px){
.antar-hero{
    min-height:auto;
    padding:120px 0 70px;
}
.antar-hero .row{
    min-height:auto !important;
    text-align:center;
    flex-direction:column-reverse;
}
.hero-content{
    max-width:100%;
    margin-top:40px;
}
.hero-title{
    font-size:48px;
    line-height:1.15;
}
.hero-subtitle{
    font-size:24px;
}
.hero-description{
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}
.hero-buttons{
    justify-content:center;
}
.hero-btn1,
.hero-btn2{
    width:100%;
    max-width:320px;
}
.hero-image{
    max-width:430px;
}
}
@media (max-width:768px){
.hero-title{
    font-size:40px;
}
.hero-subtitle{
    font-size:22px;
}
.hero-description{
    font-size:15px;
}
.hero-badge{
    font-size:12px;
    padding:8px 22px;
}
.hero-image{
    max-width:340px;
}
}
@media (max-width:576px){
.antar-hero{
    padding:100px 0 50px;
}
.hero-title{
    font-size:34px;
}
.hero-subtitle{
    font-size:20px;
}
.hero-description{
    font-size:14px;
}
.hero-buttons{
    gap:14px;
}
.hero-btn1,
.hero-btn2{
    width:100%;
    padding:14px 20px;
    font-size:15px;
}
.hero-image{
    max-width:280px;
}
}
/*=====ANTAR ANGAN - ABOUT SECTION========*/
.about-project{
    padding:50px 0;
    background:#fff;
}
.about-image{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.about-image img{
    width:100%;
    transition:.6s;
}
.about-image:hover img{
    transform:scale(1.06);
}
.about-project .section-tag{
    display:inline-block;
    color:#C9A86A;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:9px;
}
.about-project .section-title{
    font-family:"Cormorant Garamond", serif;
    font-size:52px;
    font-weight:700;
    color:#111;
    margin-bottom:16px;
}
.about-text{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:16px;
}
.about-feature{
    display:flex;
    align-items:flex-start;
    gap:13px;
    background:#fff;
    padding:18px;
    border-radius:18px;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
    box-shadow:0 9px 26px rgba(0,0,0,.05);
}
.about-feature:hover{
    transform:translateY(-8px);
    border-color:#C9A86A;
    box-shadow:0 20px 40px rgba(201,168,106,.18);
}
.about-feature i{
    width:55px;
    height:55px;
    background:#C9A86A;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}
.about-feature h5{
    margin-bottom:5px;
    font-size:20px;
    font-weight:600;
    color:#111;
}
.about-feature p{
    margin:0;
    color:#777;
    font-size:15px;
    line-height:1.7;
}
/*======ABOUT RESPONSIVE===========*/
@media (max-width:991px){
.about-project{
    padding:70px 0;
}
.about-project .section-title{
    font-size:42px;
    text-align:center;
}
.about-project .section-tag{
    display:block;
    text-align:center;
}
.about-text{
    text-align:center;
}
.about-image{
    margin-bottom:20px;
}
.about-feature{
    padding:16px;
}
.about-feature i{
    width:50px;
    height:50px;
    font-size:20px;
}
}
@media (max-width:768px){
.about-project{
    padding:60px 0;
}
.about-project .section-title{
    font-size:34px;
}
.about-text{
    font-size:15px;
    line-height:1.8;
}
.about-feature{
    margin-bottom:18px;
}
.about-feature h5{
    font-size:18px;
}
.about-feature p{
    font-size:14px;
}
}
@media (max-width:576px){
.about-project{
    padding:50px 0;
}
.about-project .section-title{
    font-size:30px;
}
.about-text{
    font-size:14px;
}
.about-feature{
    flex-direction:column;
    text-align:center;
    align-items:center;
    padding:22px 18px;
}
.about-feature i{
    margin-bottom:12px;
}
}
/*===== WHY ANTAR ANGAN=========*/
.why-antar{
    padding:80px 0;
    background:#fafafa;
}
.why-antar .section-tag{
    display:inline-block;
    color:#C9A86A;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
    text-transform:uppercase;
}
.why-card{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:22px;
    text-align:center;
    height:100%;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s ease;
}
@media (hover:hover){
.why-card:hover{
    transform:translateY(-10px);
    border-color:#C9A86A;
    box-shadow:0 20px 40px rgba(201,168,106,.18);
}
}
.why-icon{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#C9A86A;
    display:flex;
    justify-content:center;
    align-items:center;
}
.why-icon i{
    color:#fff;
    font-size:28px;
}
.why-card h4{
    font-family:"Cormorant Garamond",serif;
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:16px;
}
.why-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin:0;
}
/* Premium Gold Line */
.why-card::after{
    content:"";
    display:block;
    width:55px;
    height:3px;
    background:#C9A86A;
    margin:22px auto 0;
    border-radius:30px;
    transition:.35s ease;
}
@media (hover:hover){
.why-card:hover::after{
    width:90px;
}
}
/*========TABLET===========*/
@media (max-width:991px){
.why-antar{
    padding:55px 0;
}
.why-card{
    padding:28px 22px;
    max-width:420px;
    margin:auto;
}
.why-icon{
    width:65px;
    height:65px;
}
.why-icon i{
    font-size:24px;
}
.why-card h4{
    font-size:28px;
}
.why-card p{
    font-size:15px;
    line-height:1.7;
}
}
/*====== MOBILE=========*/
@media (max-width:576px){
.why-antar{
    padding:45px 0;
}
.why-card{
    padding:24px 18px;
    border-radius:18px;
}
.why-icon{
    width:60px;
    height:60px;
    margin-bottom:16px;
}
.why-icon i{
    font-size:22px;
}
.why-card h4{
    font-size:24px;
    margin-bottom:12px;
}
.why-card p{
    font-size:14px;
    line-height:1.7;
}
.why-card::after{
    margin-top:18px;
}
}
/*============ ANTAR ANGAN FAQ ============*/
.faq-section .section-tag{
    display:inline-block;
    color:#C9A86A !important;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.faq-section{
    padding:80px 0;
    background:#fafafa;
}
.faq-section .accordion{
    max-width:900px;
    margin:auto;
}
.faq-section .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.faq-section .accordion-button{
    background:#fff;
    color:#111;
    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;
    transition:.35s ease;
}
.faq-section .accordion-button:not(.collapsed){
    background:#C9A86A;
    color:#fff;
}
.faq-section .accordion-button:focus{
    box-shadow:none;
}
.faq-section .accordion-body{
    padding:22px 25px;
    color:#666;
    line-height:1.8;
    font-size:16px;
    background:#fff;
}
.faq-section .accordion-button::after{
    filter:brightness(0);
}
.faq-section .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}
/*================ MOBILE =================*/
@media (max-width:991px){
    .faq-section{
        padding:70px 0;
    }
    .faq-section .accordion-item{
        margin-bottom:15px;
        border-radius:18px;
    }
    .faq-section .accordion-button{
        padding:18px 20px;
        font-size:17px;
        line-height:1.5;
    }
    .faq-section .accordion-body{
        padding:18px 20px;
        font-size:15px;
        line-height:1.8;
    }
}
@media (max-width:768px){
    .faq-section{
        padding:60px 0;
    }
    .faq-section .accordion-button{
        font-size:16px;
        padding:16px 18px;
    }
    .faq-section .accordion-body{
        font-size:15px;
        padding:16px 18px;
    }
}
@media (max-width:576px){
    .faq-section{
        padding:50px 0;
    }
    .faq-section .accordion-item{
        border-radius:16px;
        margin-bottom:14px;
    }
    .faq-section .accordion-button{
        font-size:15px;
        padding:15px 16px;
    }
    .faq-section .accordion-body{
        font-size:14px;
        padding:15px 16px;
    }
    .faq-section .text-center.mt-5{
        margin-top:35px !important;
    }
    .faq-section .hero-btn1{
        width:100%;
        justify-content:center;
    }
}
/*================ MASTER PLAN =================*/
.master-plan{
    padding:80px 0;
    background:#fafafa;
}
/* Heading */
.master-plan .section-tag{
    display:inline-block;
    color:#C9A86A;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.master-plan .section-title{
    font-family:"Cormorant Garamond",serif;
    font-size:52px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}
.master-plan .section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}
/* Layout Image */
.layout-card{
    background:#fff;
    padding:20px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.layout-image{
    width:100%;
    border-radius:18px;
    transition:.5s ease;
}
.layout-card:hover .layout-image{
    transform:scale(1.03);
}
/* Right Content */
.master-info{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.master-tag{
    display:inline-block;
    color:#C9A86A;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}
.master-info h3{
    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    color:#111;
    margin-bottom:18px;
}
.master-info p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
    font-size:16px;
}
.master-info ul{
    list-style:none;
    padding:0;
    margin:0;
}
.master-info ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#444;
    font-size:17px;
}
.master-info ul li::before{
    content:"✓";
    width:30px;
    height:30px;
    background:#C9A86A;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:15px;
    flex-shrink:0;
}
/* Button */
.master-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:20px;
    padding:14px 40px;
    background:#C9A86A;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;
}
.master-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}
/*================ TABLET =================*/
@media (max-width:991px){
    .master-plan{
        padding:70px 0;
    }
    .master-plan .section-title{
        font-size:44px;
    }
    .layout-card{
        padding:16px;
        border-radius:20px;
    }
    .master-info{
        padding:30px;
        border-radius:20px;
    }
    .master-info h3{
        font-size:38px;
    }
}
/*================ MOBILE =================*/
@media (max-width:768px){
    .master-plan{
        padding:60px 0;
    }
    .master-plan .section-title{
        font-size:36px;
    }
    .master-plan .section-subtitle{
        font-size:15px;
    }
    .layout-card{
        margin-bottom:20px;
    }
    .master-info{
        padding:25px;
    }
    .master-info h3{
        font-size:34px;
    }
    .master-info p{
        font-size:15px;
        line-height:1.8;
    }
    .master-info ul li{
        font-size:15px;
        margin-bottom:15px;
    }
}
/*================ SMALL MOBILE =================*/
@media (max-width:576px){
    .master-plan{
        padding:50px 0;
    }
    .master-plan .section-tag{
        font-size:12px;
        letter-spacing:2px;
    }
    .master-plan .section-title{
        font-size:30px;
    }
    .master-plan .section-subtitle{
        font-size:14px;
        line-height:1.7;
    }
    .layout-card{
        padding:12px;
        border-radius:18px;
    }
    .layout-image{
        border-radius:14px;
    }
    .master-info{
        padding:22px 18px;
        border-radius:18px;
    }
    .master-tag{
        font-size:12px;
        letter-spacing:2px;
        margin-bottom:12px;
    }
    .master-info h3{
        font-size:28px;
        margin-bottom:15px;
    }
    .master-info p{
        font-size:14px;
        margin-bottom:20px;
    }
    .master-info ul li{
        font-size:14px;
        gap:10px;
        margin-bottom:14px;
    }
    .master-info ul li::before{
        width:24px;
        height:24px;
        font-size:12px;
    }
    .master-btn{
        width:100%;
        padding:14px;
    }
}

/*==========OTHER PROJECTS SECTION============*/
.other-projects {
    width: 100%;
    padding: 90px 0;
    background: #f8f8f8;
    overflow: hidden;
}
/*=========SECTION HEADING===========*/
.other-projects .section-tag {
    display: block;
    width: 100%;
    text-align: center;
    color: #C9A86A !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.other-projects .section-title {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 700;
    color: #111 !important;
    line-height: 1.15;
    margin: 0 0 20px;
}
.other-projects .section-subtitle {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
    color: #666 !important;
    font-size: 17px;
    line-height: 1.8;
}
/*========EXPLORE BUTTON============*/
.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 15px 36px;
    background: #C9A86A;
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.35s ease;
}
.explore-btn:hover {
    background: #111;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.explore-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.explore-btn:hover i {
    transform: translateX(5px);
}
/*========PROJECT LIST============*/
.project-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
/*========PROJECT CARD===========*/
.project-card-horizontal {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}
.project-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(201, 168, 106, 0.18);
}
/*==========PROJECT IMAGE===========*/
.project-card-horizontal img {
    display: block;
    width: 260px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.6s ease;
}
.project-card-horizontal:hover img {
    transform: scale(1.06);
}
/*=========PROJECT INFO===========*/
.project-info {
    flex: 1;
    padding: 30px;
}
.project-info span {
    display: inline-block;
    color: #C9A86A !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.project-info h3 {
    font-family: "Cormorant Garamond", serif;
    color: #111 !important;
    font-size: 34px;
    font-weight: 700;
    margin: 8px 0 12px;
}
.project-info p {
    color: #666 !important;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}
.project-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.project-info a:hover {
    color: #C9A86A !important;
}
.project-info a i {
    transition: transform 0.3s ease;
}
.project-info a:hover i {
    transform: translateX(5px);
}
/*========= TABLET==============*/
@media (max-width: 991px) {
    .other-projects {
        padding: 75px 0;
    }
    .other-projects .section-tag {
        text-align: center;
    }
    .other-projects .section-title {
        font-size: 46px;
        text-align: center;
    }
    .other-projects .section-subtitle {
        max-width: 650px;
        text-align: center;
    }
    .project-card-horizontal {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .project-card-horizontal img {
        width: 100%;
        height: 300px;
        aspect-ratio: 16 / 9;
    }
    .project-info {
        padding: 28px;
    }
    .project-info h3 {
        font-size: 32px;
    }
}
/*========MOBILE======*/
@media (max-width: 768px) {
    .other-projects {
        padding: 65px 0;
    }
    .other-projects .section-tag,
    .other-projects .section-title,
    .other-projects .section-subtitle {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .other-projects .section-tag {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }
    .other-projects .section-title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 18px;
    }
    .other-projects .section-subtitle {
        font-size: 15px;
        line-height: 1.8;
        max-width: 600px;
        padding: 0 8px;
        margin-bottom: 30px;
    }
    .explore-btn {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        padding: 15px 25px;
    }
    .project-list {
        gap: 24px;
    }
    .project-card-horizontal {
        width: 100%;
        border-radius: 20px;
        flex-direction: column;
    }
    .project-card-horizontal img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
    .project-info {
        width: 100%;
        padding: 22px;
    }
    .project-info h3 {
        font-size: 30px;
    }
    .project-info p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/*========SMALL MOBILE============*/
@media (max-width: 576px) {
    .other-projects {
        padding: 55px 0;
    }
    .other-projects .section-tag {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    .other-projects .section-title {
        font-size: 32px;
        line-height: 1.15;
    }
    .other-projects .section-subtitle {
        font-size: 14px;
        line-height: 1.75;
        padding: 0 5px;
        margin-bottom: 25px;
    }
    .explore-btn {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 15px;
        margin-bottom: 30px;
    }
    .project-card-horizontal {
        border-radius: 18px;
    }
    .project-card-horizontal img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .project-info {
        padding: 20px;
    }
    .project-info span {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
    .project-info h3 {
        font-size: 27px;
        margin: 8px 0 10px;
    }
    .project-info p {
        font-size: 14px;
        line-height: 1.7;
    }
    .project-info a {
        font-size: 14px;
    }
}
/*========VERY SMALL MOBILE============*/
@media (max-width: 380px) {
    .other-projects {
        padding: 45px 0;
    }
    .other-projects .section-title {
        font-size: 29px;
    }
    .other-projects .section-subtitle {
        font-size: 13px;
    }
    .explore-btn {
        font-size: 14px;
        padding: 13px 18px;
    }
    .project-info {
        padding: 18px;
    }
    .project-info h3 {
        font-size: 25px;
    }
}
