/* Home Page Styles */

/* Global Helpers */
.section-padding {
    padding: 80px 0;
}
.text-center {
    text-align: center;
}
.bg-light {
    background-color: #f9f9f9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Luxury Hero Section (2 Columns)
   ========================================= */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    flex-direction: column; /* Allow stacking */
    justify-content: center;
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px; /* Space for bottom strip */
}

/* Right Column (Content) */
.hero-content-col {
    flex: 1;
    max-width: 600px;
    text-align: right; /* Explicitly Right Aligned */
}

/* Left Column (Image) */
.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-img {
    max-width: 100%;
    width: 100%; /* Ensure it fills the container width up to max-width */
    height: auto;
    min-height: 300px; /* Fallback height for SVGs with no dimensions */
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    transform: scale(1.05);
    object-fit: contain; /* Ensure image aspect ratio is preserved */
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    opacity: 0.2;
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: pulse-glow 4s infinite alternate;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    animation: pulse-glow 5s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.1); opacity: 0.3; }
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(to left, #fff, #e0e0e0); /* RTL gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 550px; /* Limit width for readability */
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align buttons to right/start */
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-luxury-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5291 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-luxury-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(86, 95, 163, 0.4);
}

.btn-luxury-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-luxury-secondary:hover {
    background: var(--secondary-color);
    color: #333;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* =========================================
   Bottom Features Strip (Glassmorphism)
   ========================================= */
.hero-bottom-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto; /* Push to bottom */
}

.strip-features {
    display: flex;
    flex-direction: row; /* Explicitly Horizontal on Desktop */
    justify-content: space-between;
    align-items: center; /* Center items vertically */
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%; /* Ensure full width */
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1); /* Separator */
    padding-left: 20px;
}

.strip-item:last-child {
    border-left: none;
}

.strip-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.strip-item .icon-box .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.strip-item .text-box {
    display: flex;
    flex-direction: column;
}

.strip-item .title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3px;
}

.strip-item .desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   About Section (Luxury Refined)
   ========================================= */
.about-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Subtle Pattern Background */
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
    z-index: 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* Image Column */
.about-image-col {
    flex: 1.1; /* Slightly larger */
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 30px;
    z-index: 2;
}

/* Decorative Border Frame */
.about-img-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    z-index: -1;
    transition: transform 0.4s ease;
}

.about-img-frame:hover::before {
    transform: translate(-10px, -10px);
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    display: block;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    border: 10px solid #fff; /* Thick white border */
}

.about-img-frame:hover .about-img {
    transform: rotate(0deg);
}

.about-placeholder {
    width: 100%;
    height: 450px;
    background: #f8f9fa;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-placeholder .dashicons {
    font-size: 100px;
    color: #e0e0e0;
    width: 100px;
    height: 100px;
}

/* Experience Badge */
.about-exp-badge {
    position: absolute;
    bottom: 40px;
    right: -40px; /* Overlap right */
    left: auto;
    background: linear-gradient(135deg, var(--primary-color), #4a5291);
    color: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(86, 95, 163, 0.4);
    text-align: center;
    min-width: 160px;
    border: 5px solid #fff;
    animation: float 5s ease-in-out infinite;
}

.about-exp-badge .year {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.about-exp-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Content Column */
.about-content-col {
    flex: 1;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.3;
    position: relative;
    padding-bottom: 0;
}

.section-title::after {
    display: none; /* Remove simple line */
}

.section-title span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 5px;
}

.about-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Features List */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0; /* Removed bottom margin since button is gone */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 15px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid #f4f4f4;
}

.about-features-list li:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-features-list .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #6c757d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.about-features-list .text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* =========================================
   Services Section (Ultra Luxury Dark Background)
   ========================================= */
.services-section {
    position: relative;
    background-color: #1a1a1a;
    background-image: url('../img/hero-bg.jpg'); /* Luxury Texture */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Service Section Header Overrides */
.services-section .section-title {
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.services-section .section-title span {
    color: var(--secondary-color); /* Gold looks better on dark */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.services-section .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-section .section-desc {
    margin-bottom: 60px; /* Increased space between desc and cards */
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    perspective: 1000px; /* For 3D effect */
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--primary-color); /* Primary Color Background */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
    border: none;
    max-width: none;
    margin: 0;
    padding: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    z-index: 10;
}

/* Full Background Image */
.service-img-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    z-index: 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.9); /* Slightly brighter initially */
}

.service-card:hover .service-img {
    transform: scale(1.2);
    filter: brightness(0.7); /* Darker on hover */
}

/* Placeholder Gradient */
.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #4ca1af);
}

/* Glassmorphism Overlay Content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%); /* Darker gradient for text readability */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    text-align: right;
    transform: translateY(0); /* No shift initially */
    transition: all 0.5s ease;
}

/* Floating Icon Badge */
.service-icon {
    position: absolute;
    top: 25px;
    right: 25px; /* Top Right */
    left: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 3;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: #000;
    transform: rotate(15deg) scale(1.1);
}

/* Text Styling */
.service-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Stronger shadow for contrast */
    transform: translateY(0); /* Always visible */
    transition: transform 0.5s ease;
}

.service-title a {
    color: #fff;
    text-decoration: none;
}

.service-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0; /* Hidden initially */
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: block; /* Ensure block display */
    height: 0; /* Collapse height */
    overflow: hidden;
}

/* Hover State Actions */
.service-card:hover .service-title {
    transform: translateY(0);
}

.service-card:hover .service-excerpt {
    opacity: 1;
    transform: translateY(0);
    height: auto; /* Expand */
    max-height: 100px; /* Limit expansion */
}

/* Buttons */
.service-buttons-wrapper {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    margin-top: 15px;
    opacity: 1; /* Always Visible */
    transform: translateY(0); /* Always Visible */
    transition: all 0.5s ease 0.1s;
    width: 100%; /* Ensure full width */
}

.service-card:hover .service-buttons-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.service-btn-details, .service-btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.service-btn-details {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-btn-details:hover {
    background: #fff;
    color: #333;
}

.service-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid transparent;
}

.service-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Responsive Services */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img-box {
        height: 200px;
    }
}

/* Button Style Update */
.btn-luxury-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(86, 95, 163, 0.25);
}

/* =========================================
   Responsive Styles
   ========================================= */
@media (max-width: 991px) {
    /* Hero Section */
    .hero-section {
        padding-top: 140px; /* More space for header */
        padding-bottom: 40px;
        min-height: auto;
        text-align: center; /* Center align everything */
    }

    .hero-wrapper {
        flex-direction: column-reverse; /* Image on top, Text below */
        gap: 30px;
        margin-bottom: 40px;
    }

    .hero-content-col {
        text-align: center;
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-image-col {
        justify-content: center;
        margin-bottom: 20px;
    }

    .floating-img {
        max-width: 70%; /* Don't let it be too huge */
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem; /* Much smaller */
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Bottom Strip */
    .strip-features {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 100%;
        height: auto;
    }

    .strip-item {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
        padding-left: 0;
        justify-content: center;
        flex: none;
    }

    .strip-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .strip-item .text-box {
        align-items: center;
        text-align: center;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .about-image-col {
        width: 100%;
        padding: 0 10px;
    }
    
    .about-exp-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px;
        min-width: 120px;
    }
    
    .about-exp-badge .year {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-desc {
        text-align: center;
        font-size: 1rem;
    }

    .about-features-list {
        grid-template-columns: 1fr;
    }
    
    .about-content-col {
        text-align: center;
    }
    
    .about-features-list li {
        justify-content: flex-start; /* Keep text alignment natural */
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Service Mobile Specifics */
    .service-card {
        height: 450px; /* Taller on mobile to fit everything */
    }
    
    .service-content {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%); /* Darker overlay on mobile */
    }

    .service-excerpt {
        opacity: 1;
        height: auto;
        max-height: 80px;
        transform: translateY(0);
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .service-title {
        transform: translateY(0);
        margin-bottom: 5px;
    }
    
    .service-icon {
        top: 15px; right: 15px;
        width: 50px; height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem; /* Even smaller for mobile */
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img-box {
        height: 220px;
    }
}

/* =========================================
   Why Choose Us & Stats Section (Clean Light)
   ========================================= */
.why-us-section {
    position: relative;
    background-color: #f9f9f9; /* Clean Light Background */
    background-image: none;
    color: var(--text-color);
    overflow: hidden;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-us-overlay {
    display: none;
}

.why-us-section .container {
    position: relative;
    z-index: 2;
}

.why-us-section .section-title {
    color: var(--text-color);
    text-shadow: none;
}

.why-us-section .section-title span {
    color: var(--primary-color);
    text-shadow: none;
}

.why-us-section .section-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.why-us-section .section-subtitle {
    background: rgba(255, 215, 0, 0.15); /* Gold background with opacity */
    color: #b8860b; /* Dark Goldenrod for text */
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: none;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary-color); /* Gold border on hover */
}

.stat-icon {
    font-size: 45px;
    color: var(--secondary-color); /* Gold Icon */
    margin-bottom: 25px;
    filter: none;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color); /* Gold Number (Matched Icon) */
    line-height: 1;
    text-shadow: none;
    display: inline-block;
}

.stat-plus {
    font-size: 2.5rem;
    color: var(--secondary-color); /* Gold Plus */
    font-weight: 700;
    vertical-align: top;
    margin-right: 5px;
}

.stat-label {
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    letter-spacing: normal;
}

/* Features Grid (Why Choose Us) */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.why-feature-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    background: #fff;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: none;
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-icon {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(86, 95, 163, 0.3);
    background: linear-gradient(135deg, var(--primary-color), #4a5291);
    color: #fff;
}

.why-feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.why-feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-feature-card {
        text-align: center;
    }
    
    .why-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
