/* CSS untuk Halaman Panduan Umroh */

/* Page Banner */
.page-banner {
    background-image: url('../img/guide-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    position: relative;
    margin-bottom: 60px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 71, 42, 0.7);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    font-size: 12px;
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* Section Titles */
.section-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.bg-light {
    background-color: var(--gray-100);
}

/* Guide Intro */
.guide-intro {
    padding: 80px 0;
}

.guide-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(12, 113, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

.guide-intro-video {
    position: relative;
}

.video-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: var(--gray-500);
}

/* Guide Navigation */
.guide-navigation {
    margin-bottom: 60px;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-color);
    text-decoration: none;
}

.nav-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.nav-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nav-text {
    font-weight: 500;
    font-size: 14px;
}

/* Guide Sections */
.guide-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

/* Requirements Section */
.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.requirements-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 100%;
}

.requirements-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.requirements-image:hover img {
    transform: scale(1.05);
}

.requirements-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.requirements-list h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.download-box {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 30px;
}

.download-box.centered {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.download-box p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download:hover {
    background-color: #c29b27;
    transform: translateY(-2px);
}

/* Manasik Tabs */
.manasik-tabs {
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Manasik Content */
.manasik-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.manasik-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 100%;
}

.manasik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.manasik-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.manasik-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.manasik-text h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 25px 0 15px;
}

.manasik-text ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.manasik-text ol li {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.arabic {
    font-family: 'Amiri', serif;
    font-size: 20px;
    direction: rtl;
    margin: 10px 0;
    color: var(--dark-color);
    line-height: 1.8;
}

.larangan-box {
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 30px;
}

.larangan-box h4 {
    color: #dc3545;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0 !important;
}

.larangan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.larangan-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.larangan-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(220, 53, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 16px;
}

.larangan-text {
    font-size: 14px;
    color: var(--text-color);
}

.info-box {
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 30px;
}

.info-box h4 {
    color: #17a2b8;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0 !important;
}

.info-list {
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.info-list li::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #17a2b8;
    position: absolute;
    left: 0;
    top: 3px;
}

.success-box {
    display: flex;
    align-items: center;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 30px;
    gap: 20px;
}

.success-icon {
    font-size: 40px;
    color: #28a745;
}

.success-content h4 {
    color: #28a745;
    margin-bottom: 5px;
    margin-top: 0 !important;
}

.success-content p {
    margin-bottom: 0;
}

.doa-text {
    background-color: rgba(12, 113, 61, 0.05);
    padding: 15px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.latin {
    font-style: italic;
    margin: 10px 0;
}

.meaning {
    color: var(--gray-500);
}

/* Manasik Summary */
.manasik-summary {
    margin-top: 60px;
    text-align: center;
}

.manasik-summary h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.manasik-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    text-align: center;
}

.step-arrow {
    font-size: 24px;
    color: var(--gray-400);
    margin: 0 10px;
}

/* Perlengkapan Section */
.perlengkapan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.perlengkapan-category {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.perlengkapan-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(12, 113, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
}

.perlengkapan-list {
    list-style: none;
}

.perlengkapan-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.perlengkapan-list li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.perlengkapan-tips {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tips-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary-color);
}

.tips-header h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin: 0;
}

.tips-list {
    list-style: none;
    padding-left: 20px;
}

.tips-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.tips-list li::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

/* Kesehatan Section */
.kesehatan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.kesehatan-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.kesehatan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(12, 113, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.kesehatan-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.kesehatan-list {
    list-style: none;
}

.kesehatan-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.kesehatan-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.kesehatan-emergency {
    margin-top: 50px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #dc3545;
}

.emergency-header h3 {
    font-size: 20px;
    color: #dc3545;
    margin: 0;
}

.emergency-steps {
    list-style: none;
    margin-bottom: 20px;
}

.emergency-steps li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.emergency-steps li::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 3px;
}

.emergency-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    color: var(--text-color);
}

/* Doa Section */
.doa-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background-color: var(--white);
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: var(--gray-100);
}

.accordion-button::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    transition: all 0.3s ease;
}

.accordion-button.active {
    background-color: var(--gray-100);
}

.accordion-button.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.doa-content {
    padding: 0 20px 20px;
}

.arabic-text {
    font-family: 'Amiri', serif;
    font-size: 24px;
    text-align: right;
    direction: rtl;
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--dark-color);
}

.latin-text {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-color);
}

.meaning-text {
    color: var(--gray-500);
    line-height: 1.6;
}

.doa-book {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.doa-book-img {
    width: 150px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.doa-book-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doa-book-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.doa-book-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
}

.faq-contact h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.faq-contact p {
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.virtual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.virtual-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.virtual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.virtual-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.virtual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.virtual-card:hover .virtual-img img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(12, 113, 61, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.virtual-img:hover .play-button {
    background-color: var(--primary-color);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.virtual-content {
    padding: 20px;
    text-align: center;
}

.virtual-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.virtual-content p {
    font-size: 14px;
    color: var(--text-color);
}

/* E-Book Section */
.ebook-section {
    padding: 80px 0;
    background-image: url('../img/ebook-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.ebook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.ebook-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.ebook-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.ebook-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ebook-features {
    list-style: none;
    margin-bottom: 30px;
}

.ebook-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.ebook-features li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.ebook-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
}

.ebook-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-image img {
    max-width: 100%;
    max-height: 400px;
    box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .navigation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .virtual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .guide-intro-grid,
    .requirements-content,
    .manasik-content,
    .ebook-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .perlengkapan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .larangan-grid {
        grid-template-columns: 1fr;
    }
    
    .manasik-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .kesehatan-grid {
        grid-template-columns: 1fr;
    }
    
    .doa-book {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .navigation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex-basis: 50%;
    }
    
    .perlengkapan-grid {
        grid-template-columns: 1fr;
    }
    
    .virtual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 100px 0 40px;
        margin-bottom: 40px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .guide-section {
        padding: 60px 0;
    }
    
    .navigation-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        flex-basis: 100%;
    }
    
    .ebook-container {
        padding: 30px;
    }
}

/* Styles for Virtual Tour Videos and 360 Experiences */

.virtual-img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--radius-md);
    background-color: #000;
}

.virtual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.virtual-img:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(12, 113, 61, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.virtual-img:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* 360 Virtual Tour Styles */
.virtual-tour-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.virtual-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.virtual-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.virtual-thumbnail:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-button-360 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(12, 113, 61, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}

.virtual-thumbnail:hover .play-button-360 {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .play-button-360 {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .play-button-360 {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}