/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}

.page-header h1 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #d4af37;
}

/* Booking Styles */
.booking-services {
    padding: 80px 0;
    background: #fff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-booking-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-booking-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fefefe, #f9f7f0);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: #d4af37;
    color: #2c2c2c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-info h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.duration, .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.duration {
    color: #666;
}

.price {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Booking Form Styles */
.booking-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.booking-info h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
}

.contact-method i {
    font-size: 1.2rem;
    color: #d4af37;
}

.contact-method h4 {
    margin-bottom: 0.2rem;
    color: #2c2c2c;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.contact-method a {
    color: #d4af37;
    text-decoration: none;
}

.hours-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.hours-info h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-container {
    padding: 2rem;
}

.contact-info-container h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-actions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.quick-actions h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Blog Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.blog-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}

.post-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #d4af37;
    color: #2c2c2c;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: left;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #d4af37;
}

.category-list i {
    font-size: 0.8rem;
    color: #d4af37;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post h4 {
    color: #2c2c2c;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.recent-date {
    color: #999;
    font-size: 0.8rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
}

/* Directions Page Styles */
.directions-content {
    padding: 80px 0;
    background: #fff;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.address-card:hover {
    transform: translateY(-3px);
}

.address-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.address-details h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.address-details .address {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.address-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hours-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hours-card h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-card h3 i {
    color: #d4af37;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed .time {
    color: #999;
    font-style: italic;
}

.day {
    font-weight: 500;
    color: #2c2c2c;
}

.time {
    color: #d4af37;
    font-weight: 600;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section h2 {
    color: #2c2c2c;
    text-align: left;
    margin-bottom: 0;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.driving-directions {
    margin-top: 3rem;
}

.driving-directions h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.directions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
}

.direction-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.direction-content h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.direction-content ol,
.direction-content ul {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

.direction-content li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.drive-time,
.parking-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-weight: 500;
    margin-top: 1rem;
}

.landmarks-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 20px;
}

.landmarks-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.landmark-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.landmark-item:hover {
    transform: translateY(-3px);
}

.landmark-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.landmark-item h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.landmark-item p {
    color: #666;
    font-size: 0.9rem;
}

.landmark-item.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.landmark-item.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
}

.landmark-details {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.landmark-details small {
    color: #d4af37;
    font-weight: 500;
}

/* Landmark Modal Styles */
.landmark-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.landmark-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #d4af37;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.modal-title h3 {
    color: #2c2c2c;
    margin: 0;
    font-size: 1.5rem;
}

.modal-title p {
    color: #666;
    margin: 0.3rem 0 0 0;
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.info-item i {
    color: #d4af37;
    width: 20px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 140px;
    justify-content: center;
}

.btn-primary {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .landmark-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .modal-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .booking-content,
    .contact-content,
    .directions-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-booking-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-details {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .direction-card {
        flex-direction: column;
        text-align: center;
    }
    
    .address-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .address-actions {
        justify-content: center;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }
    
    .landmarks-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Blog Category Filter Styles */
.category-filter {
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.category-filter:hover {
    color: #d4af37;
    border-left-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}

.category-filter.active {
    color: #d4af37;
    font-weight: 600;
    border-left-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.15);
}

.category-filter.active i {
    color: #d4af37;
}

/* Blog Post Transition Styles */
.blog-post {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-post.filtering {
    opacity: 0.3;
    transform: scale(0.98);
}

/* Category List Styling */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}
