@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: kalameh, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2652A6;
    --accent-color: #E0AA3E;
    --light-gray: #f8f9fa;
    --border-color: #ddd;
    --text-color: #333;
}

/* Links Navigation */
.link-container #page1 {
    color: var(--primary-color);
}
.link-container #page1 img {
    background-color: var(--primary-color);
}
.link-container #page2 {
    color: var(--accent-color);
}
.link-container #page2 img {
    background-color: var(--accent-color);
}

/* =============================
   Single Service Section
============================= */
.single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 70px 0;
}

.single-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 1200px;
    max-width: 100%;
}

/* --- Box Style General --- */
.single-top,
.single-about,
.single-end,
.single-season,
.single-common,
.single-couns {
    width: 100%;
    background: var(--light-gray);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.single-top:hover,
.single-about:hover,
.single-end:hover,
.single-season:hover,
.single-common:hover,
.single-couns:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.single-top > div {
    margin-bottom: 20px;
}

.single-top > div:last-child {
    margin-bottom: 0;
}

/* --- Image --- */
.single-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* --- About Section --- */
.single-about-text {
    text-align: justify;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* --- End Section --- */
.single-end-blue,
.single-end-orange {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}
.single-end-blue img {
    border-radius: 50%;
    padding: 4px;
}
.single-end-orange img {
    border-radius: 50%;
    padding: 4px;
}
.single-end p {
    color: #444;
}

/* --- Season Items --- */
.single-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    margin-bottom: 5px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

.single-item:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
}
.single-item span {
    color: #666;
    font-size: 15px;
}

/* --- Common Cards --- */
.common-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 5px;
    transition: 0.3s;
}
.common-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 3px 10px rgba(224, 170, 62, 0.2);
}
.common-card-title i {
    color: var(--accent-color);
}
.common-card-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* --- Call To Action --- */
.single-couns {
    text-align: center;
    border: 2px solid var(--primary-color);
    background: #eef3ff;
}
.single-couns h2 {
    color: var(--primary-color);
}
.single-couns a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, var(--primary-color), #183980);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.single-couns a:hover {
    background: linear-gradient(90deg, #183980, var(--primary-color));
    transform: scale(1.05);
}

/* --- GiftBook Section --- */
.giftbook {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    padding: 60px 30px;
    margin-top: 70px;
    direction: rtl;
    overflow: hidden;
}

.giftbook-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.giftbook-image img {
    max-width: 320px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}
.giftbook-image img:hover {
    transform: scale(1.05);
}

.giftbook-content {
    flex: 1;
    min-width: 320px;
}

.giftbook-content h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 10px;
}
.giftbook-content h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.giftbook-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.giftbook-highlight li {
    background: #fff8f0;
    border-right: 4px solid var(--accent-color);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
}

.giftbook-note {
    background: #e8fdf5;
    border-right: 5px solid #00b894;
    padding: 12px 16px;
    border-radius: 8px;
    color: #2d3436;
    margin-bottom: 20px;
}

.giftbook-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-color), #d79428);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.giftbook-btn:hover {
    background: linear-gradient(90deg, #d79428, var(--accent-color));
    transform: translateY(-4px);
}

/* --- Bottom Section --- */
.single-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* --- Responsive --- */
@media screen and (max-width:1200px) {
    .single-container {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .giftbook-container {
        flex-direction: column;
        text-align: center;
    }
    .giftbook-content {
        text-align: center;
    }
    .single-couns {
        text-align: center;
    }
}
