/* ===================================
   BREADCRUMB SECTION
   =================================== */
.breadcrumb-section {
    position: relative;
    height: 300px;
    max-height: 300px;
    background: linear-gradient(135deg, #2C1A11 0%, #5D3A1A 100%);
    background-image: url('../images/about-breadcrumb-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 26, 17, 0.85), rgba(44, 26, 17, 0.75));
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(253, 251, 247, 0.8);
}

.breadcrumb-item a {
    color: rgba(253, 251, 247, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--accent-gold);
    font-size: 12px;
}

.breadcrumb-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-description {
    font-size: 18px;
    color: rgba(253, 251, 247, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* ===================================
   ABOUT PAGE SECTION
   =================================== */
.about-page-section {
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-page-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 168, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-page-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* About Visual */
.about-page-visual {
    position: relative;
    height: 600px;
}

.about-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

.img-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(227, 168, 87, 0.3);
    border-radius: 20px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-img:hover .img-frame {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.about-img-1 {
    width: 55%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 3;
}

.about-img-2 {
    width: 50%;
    height: 45%;
    top: 30%;
    right: 0;
    z-index: 2;
}

.about-img-3 {
    width: 45%;
    height: 40%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

.about-page-visual:hover .about-img-1 {
    transform: translate(-10px, -10px);
}

.about-page-visual:hover .about-img-2 {
    transform: translate(10px, -5px);
}

.about-page-visual:hover .about-img-3 {
    transform: translate(-5px, 10px);
}

.about-floating-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border: 2px solid var(--accent-gold);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content */
.about-page-content {
    padding: 20px 0;
}

.about-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.about-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.about-page-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-page-title .highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.about-page-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(227, 168, 87, 0.2);
    z-index: -1;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 30px;
    position: relative;
}

.about-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: var(--primary-dark);
    border-radius: 2px;
    animation: slideDivider 2s ease-in-out infinite;
}

@keyframes slideDivider {
    0%, 100% { left: 0; }
    50% { left: 60px; }
}

.about-page-text {
    margin-bottom: 40px;
}

.text-lead {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-gold);
}

.about-page-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.15);
}

.highlight-item:hover::before {
    transform: scaleY(1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(227, 168, 87, 0.3);
}

.highlight-item:hover .highlight-icon {
    transform: rotateY(360deg) scale(1.1);
}

.highlight-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.highlight-text h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.highlight-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   EXCELLENCE SECTION
   =================================== */
.excellence-section {
    padding: 40px 0;
    background: linear-gradient(176deg, #680e12eb 0%, #2c0c0d 100%);
    position: relative;
    overflow: hidden;
}

.excellence-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
}

.excellence-section .section-tag {
    color: var(--accent-gold);
}

.excellence-section .section-title {
    color: var(--text-light);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.excellence-section .section-description {
    color: rgba(253, 251, 247, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(227, 168, 87, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 168, 87, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(227, 168, 87, 0.2);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-suffix {
    font-size: 32px;
    color: var(--accent-gold);
    font-weight: 700;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.5);
}

.stat-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.stat-card h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.stat-card p {
    font-size: 14px;
    color: rgba(253, 251, 247, 0.6);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(227, 168, 87, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.service-card-modern:hover .service-line {
    width: 100%;
}

.service-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.3);
}

.service-card-modern:hover .service-icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(227, 168, 87, 0.5);
}

.service-icon-box i {
    font-size: 32px;
    color: var(--primary-dark);
}

.service-card-modern h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-card-modern p {
    font-size: 14px;
    color: rgba(253, 251, 247, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   NEARBY ATTRACTIONS SECTION (UPDATED)
   =================================== */
.nearby-section {
    padding: 40px 0;
    background: white;
    position: relative;
}

.nearby-header {
    text-align: center;
    margin-bottom: 60px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nearby-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nearby-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(227, 168, 87, 0.2);
}

.nearby-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.nearby-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nearby-card:hover .nearby-image-wrapper img {
    transform: scale(1.1);
}

.nearby-icon-wrapper {
    position: relative;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.nearby-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -35px;
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.4);
    border: 4px solid white;
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nearby-card:hover .nearby-icon {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(227, 168, 87, 0.6);
}

.nearby-icon i {
    font-size: 28px;
    color: white;
}

.nearby-content {
    padding: 30px 25px 25px;
}

.nearby-content h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.nearby-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.nearby-distance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 168, 87, 0.15);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.nearby-distance i {
    color: var(--accent-gold);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-page-grid {
        gap: 50px;
    }
    
    .stats-grid,
    .services-grid,
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card-google {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .about-breadcrumb {
        height: 350px;
        max-height: 350px;
    }
    
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-page-visual {
        height: 500px;
    }
    
    .stats-grid,
    .services-grid,
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-slider-wrapper {
        padding: 0 40px;
    }
    
    .review-card-google {
        flex: 0 0 100%;
    }
    
    .review-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .google-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .nearby-icon {
        width: 60px;
        height: 60px;
        margin-top: -30px;
    }
    
    .nearby-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-breadcrumb {
        height: 300px;
        max-height: 300px;
    }
    
    .about-page-visual {
        height: 400px;
    }
    
    .about-img-1 {
        width: 60%;
        height: 50%;
    }
    
    .about-img-2 {
        width: 55%;
        height: 40%;
    }
    
    .about-img-3 {
        width: 50%;
        height: 35%;
    }
    
    .about-floating-badge {
        padding: 15px 20px;
        bottom: 20px;
        right: 10px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 30px;
    }
    
    .review-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
    
    .nearby-image-wrapper {
        height: 150px;
    }
}

/* ===================================
ABOUT PAGE — CLEAN MOBILE STACK (v2)
full-width photos + badge overlapping last photo
=================================== */
@media (max-width: 768px) {
	.about-page-section { padding: 35px 0 45px; }
	.about-page-grid { gap: 40px; }

	.about-page-visual {
		height: auto;
		padding: 0;
	}
	.about-image-stack {
		display: flex;
		flex-direction: column;
		gap: 14px;
		height: auto;
	}
	/* all 3 photos = same full width, neat stack */
	.about-img,
	.about-img-1,
	.about-img-2,
	.about-img-3 {
		position: relative;
		top: auto; left: auto; right: auto; bottom: auto;
		width: 100% !important;
		height: 230px !important;
		margin: 0 !important;
		align-self: stretch !important;
		border-radius: 16px;
	}
	.about-page-visual:hover .about-img-1,
	.about-page-visual:hover .about-img-2,
	.about-page-visual:hover .about-img-3 { transform: none; }

	/* badge = compact floating card overlapping the last photo */
	.about-floating-badge {
		position: relative;
		bottom: auto; right: auto;
		margin: -45px auto 0;
		width: max-content;
		max-width: 88%;
		padding: 14px 22px;
		animation: none;
		box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
		z-index: 5;
	}
	.badge-icon { width: 42px; height: 42px; }
	.badge-icon i { font-size: 18px; }
	.badge-number { font-size: 22px; }
	.badge-text { font-size: 10px; }
}
@media (max-width: 480px) {
	.about-img,
	.about-img-1,
	.about-img-2,
	.about-img-3 { height: 200px !important; }
	.about-floating-badge { margin-top: -40px; }
}