/*==========================================
    PUBLIC SERVICES
==========================================*/

.page-title {
    text-align: center;
    margin: 15px 0 35px;
}

    .page-title h2 {
        font-size: 34px;
        color: #8b5b03;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title p {
        color: #666;
        font-size: 16px;
        max-width: 700px;
        margin: auto;
        line-height: 28px;
    }

/*==========================
 Search
==========================*/

.service-search {
    max-width: 650px;
    margin: 0 auto 40px;
}

    .service-search input {
        width: 100%;
        height: 56px;
        border: 1px solid #d8d8d8;
        border-radius: 50px;
        padding: 0 25px;
        font-size: 16px;
        transition: .3s;
        background: #fff;
    }

        .service-search input:focus {
            outline: none;
            border-color: #8b5b03;
            box-shadow: 0 0 15px rgba(139,91,3,.18);
        }

/*==========================
 Grid
==========================*/

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    margin-bottom: 60px;
}

/*==========================
 Card
==========================*/

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-decoration: none;
    color: #222;
    border: 1px solid #e8e8e8;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    transition: .35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

    .service-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#822e68,#9d0000,#f5c47f);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }

/*==========================
 Icon
==========================*/

.service-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg,#8b5b03,#f2b44a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #fff;
    font-size: 34px;
    transition: .3s;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);
}

/*==========================
 Text
==========================*/

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
    flex: 1;
}

.service-card span {
    margin-top: 20px;
    color: #8b5b03;
    font-weight: 700;
    font-size: 15px;
}

    .service-card span i {
        margin-left: 6px;
    }

/*==========================
 Emergency Card
==========================*/

.service-card.emergency .service-icon {
    background: linear-gradient(135deg,#c62828,#ff5252);
}

.service-card.emergency:hover {
    border-color: #c62828;
}

/*==========================
 Hover
==========================*/

.service-card:hover h3 {
    color: #8b5b03;
}

.service-card:hover span {
    letter-spacing: .4px;
}

/*==========================
 Responsive
==========================*/

@media(max-width:1200px) {

    .service-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:992px) {

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .page-title h2 {
        font-size: 30px;
    }
}

@media(max-width:768px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .page-title h2 {
        font-size: 26px;
    }

    .page-title p {
        font-size: 15px;
    }

    .service-card {
        min-height: auto;
    }
}

/*====================================
    PORTAL GRID
====================================*/

.portal-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/*====================================*/

.portal-card {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-left: 5px solid #8b5b03;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: .35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

    .portal-card:hover {
        border-left: 5px solid #9d0000;
        border-color: #e2c47a;
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0,0,0,.12);
    }

/*====================================*/

.portal-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg,#8b5b03,#c58a1d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 18px rgba(139,91,3,.25);
}

/*====================================*/

.portal-content {
    flex: 1;
}

    .portal-content h3 {
        margin-bottom: 10px;
        font-size: 22px;
        font-weight: 700;
        color: #333;
    }

    .portal-content p {
        color: #666;
        line-height: 26px;
        margin-bottom: 20px;
    }

/*====================================*/

.portal-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #8b5b03;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .portal-btn:hover {
        background: #6d4701;
        color: #fff;
    }

    .portal-btn i {
        margin-left: 6px;
    }

/*====================================*/

@media(max-width:992px) {

    .portal-grid {
        grid-template-columns: 1fr;
    }
}
/*==========================================
        TAJ MAHAL PAGE
==========================================*/

/* Section Box */
.content-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

    .content-box h3 {
        font-size: 26px;
        font-weight: 700;
        color: #8b5b03;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }

        .content-box h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg,#822e68,#9d0000,#f5c47f);
        }

/*==========================================
    QUICK INFO
==========================================*/

.taj-info-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.info-box {
    background: #fff;
    border: 1px solid #dca53a;
    border-radius: 16px;
    text-align: center;
    padding: 25px 15px;
    transition: .35s;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
}

    .info-box:hover {
        transform: translateY(-6px);
        border-color: #8b5b03;
    }

    .info-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg,#8b5b03,#dca53a);
        color: #fff;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .info-box h4 {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

    .info-box span {
        color: #666;
    }

/*==========================================
    TICKET TABLE
==========================================*/

.ticket-table {
    width: 100%;
    border-collapse: collapse;
}

    .ticket-table th {
        background: linear-gradient(90deg,#822e68,#9d0000,#f5c47f);
        color: #fff;
        padding: 14px;
        font-weight: 600;
    }

    .ticket-table td {
        padding: 14px;
        border: 1px solid #ececec;
    }

    .ticket-table tr:nth-child(even) {
        background: #fafafa;
    }

    .ticket-table tr:hover {
        background: #fff8e8;
    }

/*==========================================
    BOOK BUTTON
==========================================*/

.ticket-btn {
    text-align: center;
    margin-top: 30px;
}

.btn-book {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg,#822e68,#9d0000);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .btn-book:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(157,0,0,.25);
    }

/*==========================================
    TIMINGS
==========================================*/

.taj-list {
    padding-left: 20px;
}

    .taj-list li {
        margin-bottom: 15px;
        line-height: 28px;
    }

/*==========================================
    GATES / FACILITIES / ATTRACTIONS
==========================================*/

.gate-grid,
.facility-grid,
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.gate-card,
.facility-card,
.attraction-card {
    background: #fff;
    border: 1px solid #dca53a;
    border-radius: 15px;
    text-align: center;
    padding: 25px 15px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

    .gate-card:hover,
    .facility-card:hover,
    .attraction-card:hover {
        transform: translateY(-6px);
        border-color: #8b5b03;
    }

    .gate-card i,
    .facility-card i {
        display: block;
        font-size: 32px;
        color: #8b5b03;
        margin-bottom: 12px;
    }

/*==========================================
    MAP
==========================================*/

.map-placeholder {
    height: 420px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 22px;
}

/*==========================================
    FAQ
==========================================*/

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-item strong {
        display: block;
        color: #333;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .faq-item p {
        color: #666;
        line-height: 28px;
    }

/*==========================================
    RESPONSIVE
==========================================*/

@media (max-width:992px) {

    .taj-info-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gate-grid,
    .facility-grid,
    .attraction-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {

    .taj-info-grid,
    .gate-grid,
    .facility-grid,
    .attraction-grid {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 20px;
    }

        .content-box h3 {
            font-size: 22px;
        }

    .map-placeholder {
        height: 250px;
    }
}