:root {
    --primary-gradient: linear-gradient(135deg, #005697 0%, #00b8c8 100%);
    --accent-blue: #0089e0;
    --dark-blue: #003366;
    --text-color: #333333;
    --light-bg: #f9fdfd;
    --white: #ffffff;
    --dark-text: #1a1a1a;
    --border-color: #e1edf3;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* GOLDEN THEME VARIABLES */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 { color: var(--dark-text); margin-bottom: 1rem; }
p { margin-bottom: 1.2rem; }
img { max-width: 100%; height: auto; display: block; }

/* --- Header & Navigation --- */
.main-header {
    background: var(--white);
    border-bottom: 3px solid var(--gold-primary);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area { display: block; max-width: 150px; text-decoration: none; }

.header-logo { 
    width: 100%; 
    height: auto; 
    transition: transform 0.3s ease; 
}

.header-logo:hover {
    transform: scale(1.08); 
    cursor: pointer;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    z-index: 1100;
    transition: opacity 0.3s ease; 
}

.menu-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
    background: var(--dark-blue);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle:hover span { background: var(--gold-primary); }

.side-menu {
    position: fixed;
    top: 0;
    right: -320px; 
    width: 320px; 
    max-width: 100vw; 
    height: 100vh;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2); 
}

.side-menu.open { right: 0; }

.close-menu {
    position: absolute;
    top: 25px;
    right: 35px;
    background: transparent;
    border: none;
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-menu:hover { 
    transform: rotate(90deg); 
    color: var(--gold-primary); 
}

.nav-links { list-style: none; text-align: center; width: 100%; padding: 0; }

.nav-item {
    display: block; 
    color: var(--white);
    text-decoration: none;
    font-size: 1.6rem; 
    font-weight: 600;
    padding: 15px 20px;
    margin: 10px 20px;
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: scale(1.05);
    color: var(--gold-light);
}

.btn-cta {
    border: 3px solid var(--gold-primary);
    border-radius: 50px;
    margin-top: 20px;
    color: var(--gold-primary);
}

.btn-cta:hover {
    background: var(--gold-gradient);
    color: var(--dark-text);
    border-color: transparent;
}

/* --- Main Content --- */
main { flex: 1; }
.page { display: none; }
.current-page { display: block; animation: fadeIn 0.5s ease-in; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BANNERS AND SLIDER --- */
.main-banner, .light-banner {
    width: 100%;
    aspect-ratio: 3.2 / 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px; 
    text-align: center;
    position: relative; 
    overflow: hidden; 
}

.main-banner {
    border-bottom: 3px solid var(--gold-primary);
}

.light-banner {
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out; 
    z-index: 1; 
}

.slide {
    flex: 0 0 100%; 
    height: 100%;
    background-size: 100% 100%; 
    background-position: center;
    background-repeat: no-repeat;
}

.banner-content { 
    max-width: 700px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 3; 
}

.light-banner h1 {
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.9), 
        0 0 20px rgba(212, 175, 55, 0.6), 
        0 0 40px rgba(212, 175, 55, 0.3);
}

/* --- Centered Golden Section Headings --- */
.section-title { text-align: center; padding-top: 60px; }

.greeting h2, .testimonials h2, .service-list h2, .contact-details-box h2, .products-showcase h2, .section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 10px;
}
.greeting h2::after, .testimonials h2::after, .service-list h2::after, .contact-details-box h2::after, .products-showcase h2::after, .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.greeting, .reviews, .topic-passages, .testimonials, .service-list, .contact-details-box, .products-showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- GOLDEN VIDEO SHOWCASE --- */
.video-showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    text-align: center;
}

.video-wrapper {
    display: inline-block;
    padding: 6px;
    background: var(--gold-gradient);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.video-showcase video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    background: #000;
    display: block;
}

/* --- NEW PRODUCTS PAGE STYLES --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 30px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-5px);
    background: var(--gold-gradient);
    color: var(--dark-text);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* --- DIVIDED MODERN REVIEWS AREA --- */
.reviews {
    margin: 30px auto;
    padding: 0 20px;
}

.modern-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 50px;
    border-radius: 20px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.modern-rating::before {
    content: "";
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

.rating-left {
    padding-right: 40px;
}

/* Vertical Line Divider */
.rating-divider {
    width: 3px;
    height: 130px;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    opacity: 0.8;
}

.rating-right {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Brighter Gold Text for the 4.1 */
.rating-number {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #FFF0A8 0%, #FFDF73 50%, #F3E5AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.4);
}

.stars { 
    font-size: 2rem; 
    margin-bottom: 5px; 
    letter-spacing: 2px;
}

.full-star {
    color: #ffd700;
}

.half-star {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1.5px #ffd700; 
}

.half-star::before {
    content: '\2605'; 
    position: absolute;
    left: 0;
    top: 0;
    width: 50%; 
    overflow: hidden;
    color: #ffd700;
    -webkit-text-stroke: 0; 
}

.rating-text { font-size: 1.2rem; font-weight: 600; color: var(--gold-light); margin: 0;}
.user-count { color: #ccc; margin-top: 5px; font-size: 1rem;}
.user-count strong { color: var(--white); font-size: 1.2rem;}

.rating-tagline {
    margin-top: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-style: italic;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border-left: 3px solid var(--gold-primary);
    border-right: 3px solid var(--gold-primary);
    display: inline-block;
}

@media (max-width: 768px) {
    .modern-rating { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px;
    }
    .rating-left { padding-right: 0; padding-bottom: 20px; }
    .rating-right { padding-left: 0; padding-top: 20px; align-items: center;}
    .rating-divider {
        width: 80%;
        height: 3px;
        background: linear-gradient(to right, transparent, var(--gold-light), transparent);
    }
}

/* --- Topic Passages --- */
.topic-passages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 30px;
}
.topic-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-bottom: 4px solid var(--accent-blue);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.topic-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-bottom-color: var(--gold-primary);
}
.topic-box h3 { color: var(--dark-blue); font-size: 1.3rem; }

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 30px;
}
.testimonial-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.user-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--gold-primary); 
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.user-review-text p { font-style: italic; }
.user-name { font-weight: bold; color: var(--gold-dark); margin-top: 10px; }

/* --- ANIMATED SERVICES AREA --- */
.service-list { display: flex; flex-direction: column; gap: 60px; }

.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

@media (min-width: 768px) { .service-item { grid-template-columns: 1fr 1fr; } }

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.img-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-img { 
    width: 100%; 
    height: auto; 
    transition: transform 0.6s ease; 
}

.service-item:hover .service-img {
    transform: scale(1.1); 
}

.service-desc h3 { color: var(--dark-blue); font-size: 1.8rem; margin-bottom: 5px; }

.service-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.btn-book-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-text);
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-book-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
    color: var(--dark-text);
}

@media (min-width: 768px) {
    .left-img .img-wrapper { grid-column: 1 / 2; }
    .left-img .service-desc { grid-column: 2 / 3; }
    .right-img .service-desc { grid-column: 1 / 2; }
    .right-img .img-wrapper { grid-column: 2 / 3; }
}

.service-model-note {
    background: var(--light-bg);
    border-left: 6px solid var(--gold-primary);
    padding: 35px;
    margin-top: 20px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.service-model-note h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.service-model-note strong {
    color: var(--gold-dark);
}

/* --- Contact Page --- */
.contact-details-box { text-align: center; }
.contact-info {
    border: 1px solid var(--gold-primary); 
    background: var(--light-bg);
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}
.contact-item { font-size: 1.2rem; margin: 15px 0; }

/* --- SOCIAL MEDIA LINKS --- */
.social-title {
    font-size: 1.3rem;
    color: var(--dark-blue);
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 25px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--gold-dark); 
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: var(--dark-text);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.social-icon:hover svg {
    transform: scale(1.15);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 30px;
    margin-top: auto;
    border-top: 4px solid var(--gold-primary); 
}
.main-footer a { color: var(--gold-primary); text-decoration: none; font-weight: bold; }
.main-footer a:hover { color: var(--gold-light); }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .light-banner h1 {
        font-size: 2.2rem; 
        margin-bottom: 0.1rem;
    }
}

@media (max-width: 480px) {
    .light-banner h1 {
        font-size: 1.5rem;
        margin-bottom: 0.1rem;
    }
}