/* ===============================================
   SALON PAGES - THEME INTEGRATION
   =============================================== */

/* Modern Grid Section */
.modern-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.modern-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.modern-grid-item {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin-bottom: 30px;
}

.modern-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.modern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-card:hover .modern-image {
    transform: scale(1.05);
}

.modern-image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .modern-image-overlay {
    opacity: 1;
}

.modern-rating-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modern-rating-badge i {
    color: #ffc107;
}

.modern-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.modern-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-title a:hover {
    color: #007bff;
}

.modern-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 14px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-actions {
    margin-top: auto;
}

.modern-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.modern-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.modern-btn i {
    margin-left: 8px;
}

/* Title Box Styling */
.modern-title-box {
    margin-bottom: 60px;
}

.modern-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modern-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modern-divider {
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 0 auto;
    border-radius: 2px;
}

/* Empty State */
.modern-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.modern-empty-state .no-salons-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.modern-empty-state h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.modern-empty-state p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Ensure Equal Height Cards */
.modern-grid .col-lg-4,
.modern-grid .col-md-6 {
    display: flex;
    flex-direction: column;
}

.modern-grid .col-lg-4 > *,
.modern-grid .col-md-6 > * {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Force equal heights for all cards in a row */
.modern-grid {
    align-items: stretch;
}

.modern-grid-item {
    align-self: stretch;
}

/* Fix spacing between cards and buttons */
.modern-actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.modern-btn {
    margin-top: 0;
    margin-bottom: 0;
}

/* Ensure consistent card heights */
.modern-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.modern-content {
    min-height: 200px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ensure description takes available space */
.modern-description {
    flex: 1;
    margin-bottom: 0;
}

/* Ensure title has consistent spacing */
.modern-title {
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: flex-start;
}

.modern-title a {
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-grid-item {
        margin-bottom: 20px;
    }
    
    .modern-image-wrapper {
        height: 200px;
    }
    
    .modern-content {
        padding: 20px;
        min-height: 180px;
    }
    
    .modern-section-title {
        font-size: 28px;
    }
    
    .modern-description {
        min-height: 50px;
        -webkit-line-clamp: 2;
    }
    
    .modern-card {
        min-height: 350px;
    }
    
    .modern-title {
        min-height: 40px;
        font-size: 18px;
    }
    
    .modern-actions {
        padding-top: 15px;
    }
}

/* ===============================================
   SALON DETAIL PAGE STYLES
   =============================================== */

/* Main Salon Image Section */
.salon-main-image-section {
    margin-bottom: 40px;
}

.salon-main-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.salon-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.salon-main-image-wrapper:hover .salon-main-image {
    transform: scale(1.02);
}

.salon-main-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.salon-rating-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.salon-rating-badge i {
    color: #ffc107;
}

/* Salon Content Section */
.salon-content-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.salon-title-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.salon-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.salon-rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salon-rating-section .stars {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.salon-description-section h3,
.salon-features-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.salon-description-section h3::after,
.salon-features-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.salon-description-section p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.salon-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.salon-features-list li {
    padding: 10px 0;
    color: #666;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.salon-features-list li i {
    color: #007bff;
    width: 20px;
    text-align: center;
}

/* Info Widget */
.salon-info-widget {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #007bff;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #666;
    font-size: 14px;
}

.contact-widget h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-widget p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-one-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-block {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.gallery-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-block_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gallery-block_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-block:hover .gallery-block_image img {
    transform: scale(1.1);
}

.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-block:hover .overlay-box {
    opacity: 1;
}

.overlay-inner .content {
    text-align: center;
}

.overlay-inner .content a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #007bff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-inner .content a:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

/* Gallery Thumbnail Click Effect */
.gallery-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

/* Responsive Design for Detail Page */
@media (max-width: 768px) {
    .salon-main-image {
        height: 250px;
    }
    
    .salon-content-section {
        padding: 20px;
    }
    
    .salon-main-title {
        font-size: 24px;
    }
    
    .gallery-block_image {
        height: 150px;
    }
    
    .salon-features-list li {
        font-size: 14px;
    }
}

/* ===============================================
   HERO SECTIONS
   =============================================== */

.salon-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.salon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: white;
    opacity: 0.7;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   SALONS GRID SECTION
   =============================================== */

.salons-grid-section {
    padding: 80px 0;
    background: white;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.salon-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.salon-item.featured {
    grid-column: span 2;
    min-height: 400px;
}

.salon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.salon-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.salon-item.featured .salon-image {
    height: 300px;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.salon-item:hover .salon-image img {
    transform: scale(1.1);
}

.salon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salon-item:hover .salon-overlay {
    opacity: 1;
}

.salon-rating {
    color: white;
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.salon-content {
    padding: 30px;
}

.salon-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.salon-summary {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.salon-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.salon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border: 2px solid #667eea;
    border-radius: 25px;
    background: transparent;
}

.salon-link:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

/* ===============================================
   DETAIL PAGE HERO
   =============================================== */

.salon-detail-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.hero-content {
    color: white;
    width: 100%;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-rating .stars {
    font-size: 1.2rem;
}

/* ===============================================
   DETAIL CONTENT
   =============================================== */

.salon-detail-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ===============================================
   SIDEBAR
   =============================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

.info-item span {
    color: #666;
    font-size: 0.9rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* ===============================================
   RELATED SALONS
   =============================================== */

.related-salons {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}


.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
}

.related-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.related-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.related-link:hover {
    color: #764ba2;
    transform: translateX(3px);
}

/* ===============================================
   CTA SECTION
   =============================================== */

.salon-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   NO SALONS FOUND
   =============================================== */

.no-salons {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-salons-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.no-salons h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-salons p {
    color: #666;
    font-size: 1.1rem;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .salon-item.featured {
        grid-column: span 1;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .salon-hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .salons-grid-section {
        padding: 60px 0;
    }
    
    .salon-detail-content {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   MAIN SALON IMAGE SECTION
   =============================================== */

.main-salon-image-section {
    padding: 40px 0;
    background: #ffffff;
}



/* ===============================================
   SALON GALLERY SECTION
   =============================================== */

.salon-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive Design for Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .main-salon-image {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-salon-image {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        height: 180px;
        border-radius: 10px;
    }
    
    .gallery-icon {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
}

/* ===============================================
   CONTACT INFORMATION CARD - THEME STYLE
   =============================================== */

.contact-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.contact-header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.contact-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-title i {
    color: #c9a96e;
    font-size: 18px;
}

.contact-content {
    padding: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin: 0;
    display: block;
}

.contact-value:hover {
    color: #c9a96e;
    text-decoration: none;
}

.contact-actions {
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-btn.primary {
    background: #c9a96e;
    color: white;
    border-color: #c9a96e;
}

.contact-btn.primary:hover {
    background: #b8965a;
    border-color: #b8965a;
    color: white;
    text-decoration: none;
}

.contact-btn.secondary {
    background: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.contact-btn.secondary:hover {
    background: #c9a96e;
    color: white;
    text-decoration: none;
}

.contact-btn i {
    font-size: 14px;
}

/* Salon Details Section - Full Width with Side Margins */
.salon-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.salon-details-section .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

.salon-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design for Salon Details */
@media (max-width: 1200px) {
    .salon-details-section .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .salon-details-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .salon-details-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* Responsive Design for Contact Card */
@media (max-width: 768px) {
    .contact-header {
        padding: 15px 20px;
    }
    
    .contact-title {
        font-size: 16px;
    }
    
    .contact-content {
        padding: 20px;
    }
    
    .contact-actions {
        padding: 0 20px 20px 20px;
    }
    
    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
}