
/* Hero Section */
.hero-section {
    background-attachment: fixed;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Services Section Styles */
.services-section {
    background: white;
}

.services-wrapper {
    background: #fff;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    overflow: hidden;
}

.service-details {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.service-details.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-content {
    padding: 40px;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.service-title {
    color: var(--theme-color-2);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-subtitle {
    color: var(--body-color);
    font-size: 1.1rem;
    font-weight: 400;
}

.service-image {
    margin: 30px 0;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-description {
    line-height: 1.8;
    color: #555;
}

/* Temple Grid Styles */
.temple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.temple-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6600;
}

.temple-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.temple-item p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Temple List Styles */
.temple-list {
    margin: 25px 0;
}

.temple-list-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #27ae60;
}

.temple-list-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Hill Station Grid */
.hill-station-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.hill-station-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.hill-station-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Rural Tourism Grid */
.rural-tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.rural-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.rural-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Murugan Temples Grid */
.murugan-temples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.murugan-temple-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #9b59b6;
}

.murugan-temple-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Travel Tip */
.travel-tip {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #f39c12;
}

.travel-tip h4 {
    color: #856404;
    margin-bottom: 10px;
}

.travel-tip p {
    color: #856404;
    margin: 0;
}

.service-features {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.service-features h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Sidebar Styles */
.services-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.sidebar-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 2px;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-nav-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-nav-item:hover {
    background: #fff;
    border-color: var(--theme-color-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.2);
    text-decoration: none;
    color: #333;
}

.service-nav-item.active {

    background: linear-gradient(135deg, #00db76, #198754);
    color: white;
    border-color: #27ae60;
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.service-nav-item.active .nav-icon {
    background: rgba(255,255,255,0.3);
}

.nav-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Quick Info */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 18px;
}

.info-item span {
    font-weight: 500;
    color: #555;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #00db76, #198754);
    color: white;
    border-color: #27ae60;
}

.contact-widget .sidebar-title {
    color: white;
}

.contact-widget .sidebar-title:after {
    background: var(--theme-color-2);
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.contact-item i {
    width: 20px;
    margin-right: 15px;
    color: var(--theme-color-2);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
   
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .temple-grid,
    .hill-station-grid,
    .rural-tourism-grid,
    .murugan-temples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .service-content {
        padding: 20px 15px;
    }
  
}
