/* ========================================
   Sector Details CSS
   ======================================== */

/* Sector Details Section */
.gr-sector-details-section {
    background-color: #f8f9fa;
}

.gr-details-wrapper {
    display: flex;
    align-items: center;
}

.gr-details-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gr-details-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s;
}

.gr-details-image:hover img {
    transform: scale(1.05);
}

.gr-details-content {
    padding: 20px;
}

.gr-sub-title {
    display: inline-block;
    color: #2f325d;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gr-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: 1px;
}

.gr-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 20px 0;
}

/* Amenities Section */
.gr-section-header {
    margin-bottom: 20px;
}

.gr-section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 0 0;
    line-height: 1.3;
    letter-spacing: 1px;
}

.gr-amenity-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gr-amenity-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gr-amenity-icon {
    font-size: 3rem;
    color: #2f325d;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gr-amenity-icon img {
    display: inline-block;
	width:100px;
}

.gr-amenity-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 0;
    letter-spacing: 1px;
}

/* CTA Section */
.gr-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2f325d 0%, #ff8c5a 100%);
    background-attachment: fixed;
    position: relative;
}

.gr-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.gr-cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.gr-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gr-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.gr-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
}

.gr-btn-primary {
    background-color: #fff;
    color: #2f325d;
}

.gr-btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.gr-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.gr-btn-secondary:hover {
    background-color: #fff;
    color: #2f325d;
    transform: translateY(-2px);
}

/* Nearby Locations Section */
.gr-nearby-locations-section {
    background-color: #fff;
}

.gr-location-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 4px solid #2f325d;
}

.gr-location-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2f325d 0%, #2f325d 100%);
}

.gr-location-box:hover h4 {
    color: #fff;
}

.gr-location-icon {
    font-size: 2.8rem;
    color: #2f325d;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.gr-location-box:hover .gr-location-icon {
    color: #fff;
}

.gr-location-icon img {
    display: inline-block;
	width:100px;
}

.gr-location-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 10px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gr-heading {
        font-size: 2rem;
    }

    .gr-section-heading {
        font-size: 2rem;
    }

    .gr-cta-content h2 {
        font-size: 2rem;
    }

    .gr-cta-content p {
        font-size: 1rem;
    }

    .gr-details-content {
        margin-top: 30px;
        padding: 0;
    }

    .gr-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gr-btn {
        justify-content: center;
    }

    .gr-amenity-box,
    .gr-location-box {
        padding: 20px 15px;
    }

    .gr-amenity-icon,
    .gr-location-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .gr-heading {
        font-size: 1.5rem;
    }

    .gr-section-heading {
        font-size: 1.5rem;
    }

    .gr-breadcrumb-items {
        flex-direction: column;
        gap: 5px;
    }

    .gr-cta-section {
        padding: 50px 0;
    }

    .gr-cta-content h2 {
        font-size: 1.5rem;
    }

    .gr-amenity-box h4,
    .gr-location-box h4 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease-in-out forwards;
}

.wow.fadeInRight {
    animation: fadeInRight 0.8s ease-in-out forwards;
}

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-in-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Light Class */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Background Cover Class */
.bg-cover {
    background-size: cover;
    background-position: center;
}

/* Section Padding */
.section-padding {
    padding: 60px 0;
}
