/* Begum Sans Font */
@font-face {
    font-family: 'Begum Sans';
    src: url('../fonts/BegumSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Begum Sans';
    src: url('../fonts/BegumSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Begum Sans';
    src: url('../fonts/BegumSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Begum Sans';
    src: url('../fonts/BegumSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Begum Sans', sans-serif;
    color: #4a3728;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.contact-info i {
    color: #4a3728;
}

.login-link a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.login-link a:hover {
    color: #6b4423;
}

/* Main Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #4a3728;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #6b4423;
    color: #fff;
    border-radius: 3px;
}

.cart-icon a {
    font-size: 18px;
    color: #4a3728;
}

.cart-icon a:hover {
    color: #6b4423;
}

/* Banner Slider Section */
.banner-slider {
    width: 100%;
}

.banner-slider .slider-pro {
    margin: 0 auto;
}

.banner-slider .sp-slides-container {
    background: linear-gradient(135deg, #6b4423 0%, #4a3728 100%);
}

.banner-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider .sp-slide {
    background: linear-gradient(135deg, #6b4423 0%, #4a3728 100%);
}

.banner-slider .sp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner Section (static fallback) */
.banner {
    background: linear-gradient(135deg, #6b4423 0%, #4a3728 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 8px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Slider Pro Customization */
.slider-pro .sp-buttons {
    bottom: 20px;
}

.slider-pro .sp-button {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    background-color: transparent;
}

.slider-pro .sp-selected-button {
    background-color: #fff;
}

.slider-pro .sp-arrow {
    width: 40px;
    height: 40px;
}

.slider-pro .sp-previous-arrow:before,
.slider-pro .sp-previous-arrow:after,
.slider-pro .sp-next-arrow:before,
.slider-pro .sp-next-arrow:after {
    background-color: #fff;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: #4a3728;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    text-align: center;
}

.portfolio-item a {
    text-decoration: none;
    display: block;
}

.portfolio-item a:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image {
    background-color: #c4c4c4;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-placeholder {
    color: #fff;
    font-size: 48px;
}

.image-placeholder i {
    opacity: 0.7;
}

.portfolio-text {
    font-size: 18px;
    color: #4a3728;
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #4a3728;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: #6b4423;
    color: #fff;
    border-color: #6b4423;
}

.page-link.disabled {
    color: #ccc;
    pointer-events: none;
}

/* Footer */
.main-footer {
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-info h4 {
    color: #8b6914;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.footer-qr {
    text-align: center;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.footer-qr p {
    font-size: 13px;
    color: #8b6914;
}

.footer-links {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.footer-links a {
    font-size: 13px;
    color: #6b4423;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #4a3728;
    color: #fff;
    padding: 15px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    font-size: 12px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 1000;
}

.social-links-popup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-social.active .social-links-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #6b4423;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-toggle:hover {
    transform: scale(1.1);
    background-color: #4a3728;
}

.social-toggle .fa-times {
    display: none;
}

.floating-social.active .social-toggle .fa-comment-dots {
    display: none;
}

.floating-social.active .social-toggle .fa-times {
    display: block;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.messenger {
    background-color: #0084ff;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn.phone {
    background-color: #25d366;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: #f5f0eb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a3728;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background-color: #6b4423;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-qr {
        align-self: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Announcement Popup */
.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.announcement-overlay.show {
    opacity: 1;
    visibility: visible;
}

.announcement-popup {
    background: linear-gradient(135deg, #fff 0%, #f8f4f0 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.announcement-popup.has-image {
    padding: 0;
    max-width: 500px;
}

.announcement-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.announcement-popup.has-image .announcement-content {
    padding: 25px 30px 30px;
}

.announcement-popup.has-image .announcement-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.announcement-popup.has-image .announcement-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Image only popup - no title, content, or button */
.announcement-popup.image-only {
    padding: 0;
    max-width: 600px;
}

.announcement-popup.image-only .announcement-image {
    max-height: none;
}

.announcement-popup.image-only .announcement-image img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.announcement-overlay.show .announcement-popup {
    transform: scale(1);
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8b6914;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.announcement-close:hover {
    background: #6b4423;
    transform: rotate(90deg);
}

.announcement-content {
    text-align: center;
}

.announcement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.announcement-icon i {
    font-size: 36px;
    color: #fff;
}

.announcement-content h2 {
    color: #6b4423;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Begum Sans', sans-serif;
}

.announcement-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.announcement-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.4);
}

/* Responsive - Announcement Popup */
@media (max-width: 480px) {
    .announcement-popup {
        padding: 30px 20px;
    }
    
    .announcement-content h2 {
        font-size: 24px;
    }
    
    .announcement-text {
        font-size: 14px;
    }
    
    .announcement-icon {
        width: 60px;
        height: 60px;
    }
    
    .announcement-icon i {
        font-size: 28px;
    }
}

/* =================================
   Portfolio Page - Masonry Layout
================================= */
.portfolio-page {
    padding: 40px 0 80px;
    background-color: #f8f8f8;
    min-height: 100vh;
}

.portfolio-header {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.4);
    color: #fff;
}

.back-button i {
    font-size: 12px;
}

/* Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.masonry-image {
    width: 100%;
    overflow: hidden;
}

.masonry-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-image img {
    transform: scale(1.05);
}

.masonry-text {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: center;
    background: #fff;
}

/* Size variations for masonry items */
.masonry-item.size-small .masonry-image img {
    max-height: 200px;
}

.masonry-item.size-medium .masonry-image img {
    max-height: 350px;
}

.masonry-item.size-large .masonry-image img {
    max-height: 500px;
}

.no-portfolio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #999;
    font-size: 18px;
}

/* Responsive Masonry */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }
    
    .portfolio-page {
        padding: 20px 0 60px;
    }
    
    .back-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =================================
   Lightbox
================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Clickable portfolio images */
.portfolio-image.clickable,
.masonry-image.clickable {
    cursor: pointer;
}

.portfolio-image.clickable::after,
.masonry-image.clickable::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b4423;
    font-size: 18px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.portfolio-image.clickable:hover::after,
.masonry-image.clickable:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-image.clickable {
    position: relative;
}

.masonry-image.clickable {
    position: relative;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* =================================
   Review Page
================================= */
.review-page {
    padding: 40px 0 80px;
    background-color: #f8f8f8;
    min-height: 100vh;
}

.review-page-header {
    margin-bottom: 30px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e8d5b7;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-filled {
    color: #f39c12;
    font-size: 14px;
}

.star-empty {
    color: #dee2e6;
    font-size: 14px;
}

.review-comment {
    position: relative;
    padding-left: 20px;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #e8d5b7;
    font-size: 14px;
}

.review-comment p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.no-reviews {
    text-align: center;
    padding: 60px;
    color: #999;
    font-size: 18px;
}

/* Review image strip */
.review-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: #e8d5b7 transparent;
}

.review-image-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.review-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.review-image-thumb:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-page {
        padding: 20px 0 60px;
    }
}

/* =================================
   About Us Page
================================= */
.about-page {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
    min-height: 100vh;
}

/* ── Bio section ── */
.about-bio {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-profile-wrap {
    width: 100%;
}

.about-profile-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8ddd0;
    color: #a07850;
    font-size: 80px;
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 24px;
    border-top: 2px solid #e8d5b7;
    padding-top: 20px;
}

.about-stat {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid #e8d5b7;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-num {
    font-family: 'Begum Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #c0853a;
    line-height: 1;
}

.about-stat-label {
    font-size: 11px;
    color: #888;
    margin-top: 6px;
    line-height: 1.3;
}

.about-bio-right {
    padding-top: 10px;
}

.about-bio-heading {
    font-family: 'Begum Sans', sans-serif;
    font-size: 26px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #c0853a;
}

.about-bio-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.about-bio-jobtitle {
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}

.about-bio-body {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

/* ── Experience section ── */
.about-exp-section {
    margin-bottom: 70px;
}

.about-section-title {
    font-family: 'Begum Sans', sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 36px;
}

.about-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-exp-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.about-exp-badge {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.about-exp-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.about-exp-list li {
    color: #444;
    font-size: 14px;
    line-height: 1.9;
}

/* ── Gallery section ── */
.about-gallery-section {
    margin-bottom: 70px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.about-gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Map section ── */
.about-map-section {
    margin-bottom: 20px;
}

.about-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    border: 0;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-bio {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-profile-img {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-exp-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 30px 0 60px;
    }

    .about-bio {
        margin-bottom: 50px;
    }

    .about-stat-num {
        font-size: 24px;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-map iframe {
        height: 300px;
    }
}

/* =================================
   Contact Page
================================= */
.contact-hero {
    background: #4a2010;
    padding: 56px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    margin: 0;
}

/* Marquee band */
.contact-marquee-wrap {
    background: #f0ebe3;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #e0d5c5;
    border-bottom: 1px solid #e0d5c5;
}

.contact-marquee {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
    font-size: 13px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    padding-right: 60px;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.contact-page {
    padding: 60px 0 80px;
    background: #f8f8f8;
    min-height: 60vh;
}

/* Contact info block */
.contact-info-block {
    margin-bottom: 60px;
    max-width: 700px;
}

.contact-info-heading {
    font-family: 'Begum Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.contact-info-table {
    border-collapse: collapse;
    width: 100%;
}

.contact-info-table tr {
    vertical-align: top;
}

.contact-info-table td {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.contact-info-label {
    color: #888;
    padding-right: 32px;
    white-space: nowrap;
    width: 140px;
}

.contact-info-table a {
    color: #333;
    text-decoration: none;
}

.contact-info-table a:hover {
    color: #c0853a;
}

/* Map block */
.contact-map-block {
    margin-bottom: 20px;
}

.contact-map-heading {
    font-family: 'Begum Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 0;
    display: block;
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .contact-page {
        padding: 36px 0 60px;
    }

    .contact-map iframe {
        height: 280px;
    }
}

/* =================================
   Course Page
================================= */
.course-hero {
    background: #6b4423;
    padding: 20px 0;
    text-align: center;
}

.course-hero h1 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
}

/* Course Banner */
.course-banner {
    background: linear-gradient(135deg, #6b4423 0%, #4a3728 100%);
    padding: 80px 0;
    text-align: center;
}

.course-banner-content h2 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 8px;
}

.course-banner-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn-see-more {
    display: inline-block;
    padding: 8px 24px;
    background-color: #8b6914;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background-color: #a07a1a;
}

/* Course List */
.course-list {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e8ddd0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4c4b0;
    color: #a07850;
    font-size: 48px;
}

.course-image-placeholder.demo {
    padding: 0;
}

.course-image-placeholder.demo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b4423;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
}

.course-card:hover .quick-view-btn {
    opacity: 1;
}

.quick-view-btn:hover {
    background: #6b4423;
    color: #fff;
    transform: scale(1.1);
}

.apply-now-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 20px;
    background: #8b6914;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.course-card:hover .apply-now-btn {
    opacity: 1;
    transform: translateY(0);
}

.apply-now-btn:hover {
    background: #a07a1a;
}

.course-info {
    padding: 20px;
}

.course-info h3 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4a3728;
    margin-bottom: 10px;
}

.course-desc {
    font-family: 'Begum Sans', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Quick View Modal */
.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-overlay.show {
    opacity: 1;
    visibility: visible;
}

.quick-view-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quick-view-overlay.show .quick-view-popup {
    transform: scale(1);
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.quick-view-close:hover {
    background: #6b4423;
    color: #fff;
}

.quick-view-content {
    display: flex;
    flex-direction: column;
}

.quick-view-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e8ddd0;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a07850;
    font-size: 60px;
}

.quick-view-info {
    padding: 25px;
}

.quick-view-info h3 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #4a3728;
    margin-bottom: 8px;
}

.quick-view-price {
    font-family: 'Begum Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 15px;
}

.quick-view-desc {
    font-family: 'Begum Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quick-view-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Begum Sans', sans-serif;
    font-size: 14px;
    color: #555;
}

.feature-item i {
    color: #8b6914;
    font-size: 16px;
}

.quick-view-actions {
    display: flex;
    gap: 12px;
}

.btn-detail {
    padding: 12px 28px;
    background: #f5f5f5;
    color: #4a3728;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #e8e8e8;
}

.btn-checkout {
    padding: 12px 28px;
    background: #6b4423;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: #4a3728;
}

/* Course Detail Page */
.course-detail-hero {
    background: linear-gradient(135deg, #6b4423 0%, #4a3728 100%);
    padding: 50px 0;
}

.course-detail-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.course-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.course-video-placeholder {
    aspect-ratio: 16/9;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 30px;
    color: #6b4423;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
}

.course-detail-info {
    color: #fff;
}

.course-detail-info .course-category {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.course-detail-info h1 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-detail-info .course-subtitle {
    font-family: 'Begum Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.course-detail-info .course-price {
    font-family: 'Begum Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Course Detail Content */
.course-detail-content {
    padding: 60px 0;
    background: #f8f8f8;
}

.course-detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.course-main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    background: #e8ddd0;
}

.course-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-main-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a07850;
    font-size: 80px;
}

.course-detail-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.course-detail-sidebar h2 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #4a3728;
    margin-bottom: 8px;
}

.course-detail-sidebar .course-subtitle {
    font-family: 'Begum Sans', sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 15px;
}

.course-detail-sidebar .course-price {
    font-family: 'Begum Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #4a3728;
    margin-bottom: 20px;
}

.course-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-add-cart {
    flex: 1;
    padding: 14px 20px;
    background: #6b4423;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #4a3728;
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

/* Accordion */
.course-accordion {
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #8b6914;
}

.accordion-header h4 {
    font-family: 'Begum Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    margin: 0;
}

.accordion-header i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 0 18px 0;
    font-family: 'Begum Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.btn-buy-course {
    width: 100%;
    padding: 16px;
    background: #8b6914;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-buy-course:hover {
    background: #a07a1a;
}

/* Responsive Course Page */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-detail-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-detail-layout {
        grid-template-columns: 1fr;
    }

    .course-detail-sidebar {
        order: -1;
    }
}

@media (max-width: 576px) {
    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-banner-content h2 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .course-hero h1 {
        font-size: 18px;
    }

    .quick-view-content {
        flex-direction: column;
    }

    .quick-view-actions {
        flex-direction: column;
    }

    .course-detail-info h1 {
        font-size: 24px;
    }
}

/* =============================================
   AUTH PAGES (Login, Register)
============================================= */

.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fdf8f5 0%, #f5e6dc 100%);
    font-family: 'Begum Sans', sans-serif;
}

.auth-section .container {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: #fff;
    padding: 70px 100px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    max-width: 800px;
    width: 800px;
    min-width: 600px;
}

.auth-card h1 {
    text-align: center;
    color: #4a3728;
    margin-bottom: 15px;
    font-size: 36px;
    font-family: 'Begum Sans', sans-serif;
}

.auth-subtitle {
    text-align: center;
    color: #8b7355;
    margin-bottom: 40px;
    font-size: 18px;
    font-family: 'Begum Sans', sans-serif;
}

.auth-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    font-family: 'Begum Sans', sans-serif;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    display: block;
    margin-bottom: 10px;
    color: #4a3728;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Begum Sans', sans-serif;
}

.auth-form input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #d4c4b5;
    border-radius: 12px;
    font-size: 18px;
    transition: border-color 0.3s;
    font-family: 'Begum Sans', sans-serif;
}

.auth-form input:focus {
    outline: none;
    border-color: #b8860b;
}

.auth-form input::placeholder {
    color: #b8a090;
    font-size: 16px;
}

.btn-auth-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Begum Sans', sans-serif;
    margin-top: 10px;
}

.btn-auth-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
}

.auth-link {
    text-align: center;
    margin-top: 30px;
    color: #8b7355;
    font-size: 16px;
    font-family: 'Begum Sans', sans-serif;
}

.auth-link a {
    color: #b8860b;
    font-weight: 600;
    font-size: 17px;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 40px 30px;
    }

    .auth-card h1 {
        font-size: 28px;
    }

    .auth-subtitle {
        font-size: 16px;
    }

    .auth-form input {
        padding: 16px 18px;
        font-size: 16px;
    }

    .btn-auth-submit {
        padding: 18px;
        font-size: 16px;
    }
}

.auth-link a:hover {
    text-decoration: underline;
}

/* =============================================
   USER DASHBOARD
============================================= */

.dashboard-hero {
    background: linear-gradient(135deg, #4a3728 0%, #8b7355 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
    font-family: 'Begum Sans', sans-serif;
}

.dashboard-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Begum Sans', sans-serif;
}

.dashboard-content {
    padding: 50px 0;
    background: #fdf8f5;
    min-height: 60vh;
    font-family: 'Begum Sans', sans-serif;
}

.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e8ddd4;
    padding-bottom: 0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    color: #8b7355;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    font-family: 'Begum Sans', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    color: #b8860b;
    border-bottom-color: #b8860b;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #4a3728;
    margin-bottom: 25px;
    font-family: 'Begum Sans', sans-serif;
}

/* My Courses Grid */
.my-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.my-course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.my-course-image {
    height: 180px;
    overflow: hidden;
}

.my-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-course-placeholder {
    width: 100%;
    height: 100%;
    background: #e8ddd4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8a090;
    font-size: 40px;
}

.my-course-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.my-course-info h3 {
    color: #4a3728;
    margin-bottom: 8px;
    font-family: 'Begum Sans', sans-serif;
}

.my-course-info p {
    color: #8b7355;
    font-size: 14px;
    font-family: 'Begum Sans', sans-serif;
}

.purchase-date {
    margin-top: auto;
    padding-top: 15px;
    font-size: 12px !important;
    color: #aaa !important;
}

.btn-watch-course {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
    font-family: 'Begum Sans', sans-serif;
}

.btn-watch-course:hover {
    transform: translateY(-2px);
}

/* No Courses */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    color: #8b7355;
}

.no-courses i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #d4c4b5;
}

.no-courses p {
    margin-bottom: 25px;
    font-size: 18px;
    font-family: 'Begum Sans', sans-serif;
}

.btn-browse-courses {
    display: inline-block;
    padding: 14px 30px;
    background: #b8860b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Begum Sans', sans-serif;
}

/* Profile Info */
.profile-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
}

.profile-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e8ddd4;
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-label {
    width: 120px;
    color: #8b7355;
    font-family: 'Begum Sans', sans-serif;
}

.profile-value {
    color: #4a3728;
    font-weight: 500;
    font-family: 'Begum Sans', sans-serif;
}

.btn-logout {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #dc2626;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Begum Sans', sans-serif;
}

/* =============================================
   CHECKOUT PAGE
============================================= */

.checkout-hero {
    background: linear-gradient(135deg, #4a3728 0%, #8b7355 100%);
    padding: 50px 0;
    color: #fff;
    text-align: center;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-hero h1 {
    font-size: 28px;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-content {
    padding: 50px 0;
    background: #fdf8f5;
    min-height: 60vh;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-summary,
.checkout-payment {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.checkout-summary h2,
.checkout-payment h2 {
    color: #4a3728;
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-course-card {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ddd4;
}

.checkout-course-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.checkout-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e8ddd4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8a090;
}

.checkout-course-info h3 {
    color: #4a3728;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-course-info p {
    color: #8b7355;
    font-size: 14px;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 18px;
    font-family: 'Begum Sans', sans-serif;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #b8860b;
}

/* Payment Methods */
.checkout-login-notice {
    text-align: center;
    padding: 30px;
}

.checkout-login-notice p {
    margin-bottom: 20px;
    color: #8b7355;
    font-family: 'Begum Sans', sans-serif;
}

.btn-login-checkout {
    display: inline-block;
    padding: 14px 30px;
    background: #b8860b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Begum Sans', sans-serif;
}

.checkout-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Begum Sans', sans-serif;
}

/* Payment method info card */
.payment-method-info {
    margin-bottom: 25px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #e8ddd4;
    border-radius: 10px;
    font-family: 'Begum Sans', sans-serif;
}

.payment-method-card.selected {
    border-color: #b8860b;
    background: #fdf8f5;
}

.payment-method-card i {
    font-size: 28px;
    color: #b8860b;
}

.payment-method-card p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #8b7355;
}

.btn-confirm-payment {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    font-family: 'Begum Sans', sans-serif;
}

.btn-confirm-payment:hover {
    transform: translateY(-2px);
}

.btn-confirm-payment i {
    margin-right: 8px;
}

/* QR Payment Box */
.qr-payment-box {
    text-align: center;
    padding: 10px 0;
}

.qr-code-display {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.qr-code-img {
    width: 260px;
    height: 260px;
    display: block;
}

.qr-payment-amount {
    margin-bottom: 20px;
}

.qr-amount-label {
    font-size: 14px;
    color: #8b7355;
    margin-bottom: 5px;
    font-family: 'Begum Sans', sans-serif;
}

.qr-amount-value {
    font-size: 28px;
    font-weight: 700;
    color: #b8860b;
}

.qr-instructions {
    background: #fdf8f5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
    text-align: left;
}

.qr-instructions p {
    margin: 0 0 8px;
    color: #4a3728;
    font-size: 14px;
    font-family: 'Begum Sans', sans-serif;
}

.qr-instructions p:last-child {
    margin-bottom: 0;
}

.qr-instructions i {
    width: 22px;
    color: #b8860b;
    margin-right: 8px;
}

.qr-status {
    margin-bottom: 15px;
}

.qr-status-pending {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #fff8e1;
    border-radius: 8px;
    color: #b8860b;
    font-family: 'Begum Sans', sans-serif;
    font-weight: 500;
}

.qr-status-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-family: 'Begum Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.qr-status-success i {
    font-size: 20px;
}

.qr-bill-info {
    color: #aaa;
    font-size: 12px;
}

/* =============================================
   WATCH COURSE PAGE
============================================= */

.watch-hero {
    background: #4a3728;
    padding: 30px 0;
    color: #fff;
    font-family: 'Begum Sans', sans-serif;
}

.watch-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #d4c4b5;
}

.watch-breadcrumb a:hover {
    color: #fff;
}

.watch-breadcrumb i {
    font-size: 10px;
}

.watch-hero h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-family: 'Begum Sans', sans-serif;
}

.watch-subtitle {
    color: #d4c4b5;
    font-family: 'Begum Sans', sans-serif;
}

.purchase-success {
    background: #dcfce7;
    padding: 15px 0;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #16a34a;
    font-family: 'Begum Sans', sans-serif;
}

.success-message i {
    font-size: 24px;
}

.watch-content {
    padding: 40px 0;
    background: #fdf8f5;
    min-height: 60vh;
    font-family: 'Begum Sans', sans-serif;
}

.watch-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.video-player {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-player iframe,
.video-player video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.no-video {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    gap: 15px;
}

.no-video i {
    font-size: 50px;
}

.watch-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.watch-course-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.watch-course-info h3 {
    color: #4a3728;
    margin-bottom: 15px;
    font-family: 'Begum Sans', sans-serif;
}

.watch-description {
    color: #6b5c4c;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Begum Sans', sans-serif;
}

.watch-features h4 {
    color: #4a3728;
    margin-bottom: 15px;
    font-family: 'Begum Sans', sans-serif;
}

.watch-features ul {
    list-style: none;
}

.watch-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b5c4c;
    font-family: 'Begum Sans', sans-serif;
}

.watch-features li i {
    color: #16a34a;
    margin-top: 4px;
}

.btn-back-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #4a3728;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    font-family: 'Begum Sans', sans-serif;
}

.btn-back-dashboard:hover {
    background: #5a4738;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .watch-layout {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 30px 25px;
    }

    .my-courses-grid {
        grid-template-columns: 1fr;
    }
}
