/* ================================
   Greno Estates - About Us Page Styles
   ================================ */

:root {
    --gr-primary: #f9a825;
    --gr-dark: #333333;
    --gr-light: #f5f5f5;
    --gr-text: #666666;
    --gr-border: #e0e0e0;
    --gr-white: #ffffff;
    --gr-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --gr-transition: all 0.3s ease;
}

/* ================================
   About Section Styling
   ================================ */

.gr-about-section {
    position: relative;
    overflow: hidden;
    background: var(--gr-white);
}

.gr-about-top-image {
    position: absolute;
    top: -50px;
    right: -100px;
    opacity: 0.1;
    z-index: 1;
}

.gr-about-top-image img {
    width: 400px;
    height: auto;
}

.gr-radius-shape {
    position: absolute;
    top: 100px;
    left: -80px;
    opacity: 0.15;
    z-index: 1;
}

.gr-about-wrapper {
    position: relative;
    z-index: 2;
}

.gr-about-image {
    position: relative;
}

.gr-about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: var(--gr-transition);
}

.gr-about-image:hover img {
    transform: scale(1.02);
}

.gr-man-image {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    animation: float 3s ease-in-out infinite;
}

.gr-man-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.gr-about-content {
    padding-left: 30px;
}

.gr-video-image {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.gr-video-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--gr-transition);
}

.gr-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gr-white);
    font-size: 30px;
    transition: var(--gr-transition);
    z-index: 3;
    cursor: pointer;
}

.gr-video-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gr-dark);
}

.gr-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.3;
}

.gr-shape img {
    width: 150px;
    height: auto;
}

.gr-section-title {
    margin-bottom: 30px;
}

.gr-sub-title {
    display: inline-block;
    background: rgba(249, 168, 37, 0.1);
    color: var(--gr-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.gr-title-animation,
.gr-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--gr-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.gr-text {
    font-size: 15px;
    color: var(--gr-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.gr-about-list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.gr-list {
    list-style: none;
    padding: 0;
}

.gr-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gr-dark);
    font-weight: 400;
    transition: var(--gr-transition);
}

.gr-list li:hover {
    color: var(--gr-primary);
    padding-left: 10px;
}

.gr-list li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ================================
   Why Choose Us Section
   ================================ */

.gr-why-choose-section {
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.05) 0%, rgba(51, 51, 51, 0.02) 100%);
}

.gr-description {
    font-size: 15px;
    color: var(--gr-text);
    line-height: 1.8;
    margin-top: 15px;
}

.gr-why-choose-card {
    background: var(--gr-white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--gr-transition);
    border: 2px solid transparent;
}

.gr-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gr-shadow);
    border-color: var(--gr-primary);
}

.gr-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(249, 168, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--gr-primary);
    transition: var(--gr-transition);
}

.gr-why-choose-card:hover .gr-icon-wrapper {
    background: var(--gr-primary);
    color: var(--gr-white);
    transform: scale(1.1);
}

.gr-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gr-dark);
    margin-bottom: 12px;
}

.gr-card-text {
    font-size: 14px;
    color: var(--gr-text);
    line-height: 1.7;
    font-weight: 400;
}

/* ================================
   Mission Section
   ================================ */

.gr-mission-section {
    background: var(--gr-light);
}

.gr-mission-content .gr-section-title .gr-title {
    font-size: 35px;
}

.gr-mission-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gr-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    border-radius: 8px;
    background: var(--gr-white);
    transition: var(--gr-transition);
    cursor: pointer;
}

.gr-list-item:hover {
    background: rgba(249, 168, 37, 0.05);
    transform: translateX(10px);
}

.gr-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gr-primary);
    border-radius: 50%;
    color: var(--gr-white);
    font-size: 16px;
    flex-shrink: 0;
}

.gr-list-item span:last-child {
    font-size: 15px;
    color: var(--gr-dark);
    line-height: 1.6;
    font-weight: 500;
}

.gr-mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--gr-shadow);
}

/* ================================
   Vision Section
   ================================ */

.gr-vision-section {
    background: var(--gr-white);
}

.gr-vision-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gr-vision-list .gr-list-icon {
    background: rgba(249, 168, 37, 0.15);
    color: var(--gr-primary);
    font-size: 18px;
}

.gr-vision-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--gr-shadow);
}

/* ================================
   Values Section
   ================================ */
.gr-value-card {
    background: var(--gr-white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--gr-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gr-value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gr-shadow);
}

.gr-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.2), rgba(249, 168, 37, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gr-primary);
    margin-bottom: 20px;
    transition: var(--gr-transition);
}

.gr-value-card:hover .gr-value-icon {
    background: var(--gr-primary);
    color: var(--gr-white);
    transform: scale(1.15) rotate(5deg);
}

.gr-value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gr-dark);
    margin-bottom: 12px;
}

.gr-value-text {
    font-size: 14px;
    color: var(--gr-text);
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 400;
}

/* ================================
   Section Padding Classes
   ================================ */

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--gr-light);
}

.mb-60 {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1199px) {
    .gr-about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .gr-title-animation,
    .gr-title {
        font-size: 36px;
    }

    .gr-why-choose-card,
    .gr-value-card {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .gr-about-top-image {
        display: none;
    }

    .gr-radius-shape {
        display: none;
    }

    .gr-mission-image,
    .gr-vision-image {
        margin-top: 30px;
    }

    .gr-why-choose-section,
    .gr-mission-section,
    .gr-vision-section,
    .gr-values-section {
        padding: 60px 0;
    }

    .mb-60 {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .gr-title-animation,
    .gr-title {
        font-size: 28px;
    }

    .gr-text {
        font-size: 15px;
    }

    .gr-about-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gr-man-image {
        width: 120px;
        bottom: -15px;
        right: -15px;
    }

    .gr-why-choose-section .row,
    .gr-values-section .row {
        gap: 20px;
    }

    .gr-why-choose-card,
    .gr-value-card {
        padding: 25px 15px;
    }

    .gr-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .gr-value-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .gr-list-item {
        padding: 12px;
        gap: 12px;
    }

    .gr-list-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 50px 0;
    }

    .gr-title-animation,
    .gr-title {
        font-size: 24px;
    }

    .gr-sub-title {
        font-size: 12px;
        padding: 6px 15px;
    }

    .gr-text {
        font-size: 14px;
    }

    .gr-about-section {
        padding-top: 40px;
    }

    .gr-video-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .gr-why-choose-card {
        padding: 20px 15px;
    }

    .gr-card-title {
        font-size: 18px;
    }

    .gr-card-text {
        font-size: 14px;
    }

    .gr-value-title {
        font-size: 18px;
    }

    .gr-value-text {
        font-size: 13px;
    }

    .gr-list li {
        font-size: 14px;
    }

    .gr-shape {
        display: none;
    }

    .g-4 {
        gap: 12px !important;
    }
}

@media (max-width: 400px) {
    .gr-title-animation,
    .gr-title {
        font-size: 20px;
    }

    .gr-about-list-item {
        grid-template-columns: 1fr;
    }

    .gr-why-choose-card,
    .gr-value-card {
        padding: 15px 12px;
    }

    .gr-icon-wrapper,
    .gr-value-icon {
        margin-bottom: 15px;
    }

    .gr-man-image {
        display: none;
    }
}

/* ================================
   Animations
   ================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.wow.slideInUp {
    animation-name: slideInUp;
}

.wow.slideInLeft {
    animation-name: slideInLeft;
}

.wow.slideInRight {
    animation-name: slideInRight;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}
