/* Package Selection Page Styling */
.packages-selection-area {
    padding: 60px 20px;
    background-color: #fcfcfc;
    min-height: 80vh;
    font-family: 'Poppins', sans-serif;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-header h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.packages-header p {
    color: #333;
    font-size: 1.1rem;
}

/* 2x2 Grid System Fix */
.packages-container {
    max-width: 1000px; /* Width thodi kam ki hai taaki 2x2 balance lage */
    margin: 0 auto;
    display: grid;
    /* Force 2 Columns on Desktop */
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; /* Spacing badha di hai premium look ke liye */
}

/* Card Links */
.package-link-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: block;
}

/* Base Card UI */
.package-ui-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid #f2a900; /* Orange border hamesha dikhega */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Hover Effect: Fixed to -4px lift */
.package-link-card:hover .package-ui-card {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(242, 169, 0, 0.2);
}

/* Icon & Price */
.package-icon {
    font-size: 3.5rem;
    color: #f2a900;
    margin-bottom: 20px;
}

.package-ui-card h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: #f2a900; /* Solid Gold/Orange */
    margin-bottom: 15px;
}

.package-price span {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

/* Classic (Popular) Plan - Premium Dark Background */
.popular-package .package-ui-card {
    /* Wahi background jo Basic Hero ke text background me tha */
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border: 2.5px solid #f2a900;
}

/* Text visibility on Dark Background */
.popular-package .package-ui-card h3,
.popular-package .package-ui-card p,
.popular-package .package-ui-card .package-price span {
    color: #ffffff;
}

.package-ui-card p {
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.view-details {
    font-weight: 800;
    color: #f2a900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.popular-package .view-details {
    border-top-color: #555;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f2a900;
    color: #1a1a1a;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 5;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .packages-container {
        grid-template-columns: 1fr; /* Mobile par wapas single column */
    }
}