/*
|--------------------------------------------------------------------------
| Branch Specific Styling Only
|--------------------------------------------------------------------------
| Responsibility:
| Hero section
| Premium visuals
| Branch decorative styles
| Complete master branch styling
|--------------------------------------------------------------------------
*/

/* ========================================
   TABLE OF CONTENTS
   1. Premium Hero Section
   2. Stats Counter Section
   3. Branch Experience & Contact Section
   4. Consultancy Services Section
   5. Premium Buttons Section (Layout Only)
   6. Packages Section
   7. Trust Features Section
   8. CTA Section
   9. Location Section
   10. Responsive Styles
   ======================================== */

/* ========================================
   1. PREMIUM HERO SECTION
   ======================================== */

/* Premium Hero Section */
.premium-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 180px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(27,43,74,.45) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(200,169,81,.12) 0%,
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #18253f 5%,
            #232323 25%,
            #1f635f 70%,
            #2f3f5b 100%
        );
}

/* Premium Hero Pattern Layer */
.premium-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;

    background-image:
        linear-gradient(
            45deg,
            rgba(255,255,255,.03) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255,255,255,.03) 50%,
            rgba(255,255,255,.03) 75%,
            transparent 75%
        );

    background-size: 24px 24px;
}

/* Premium Hero Overlay */
.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.10),
            rgba(0,0,0,.18)
        );
}

/* Hero Content */
.premium-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(200,169,81,0.4);
    color: var(--luxury-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;

    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}

/* Hero Title */
.premium-title {
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--luxury-gold);
    margin-bottom: 20px;

    text-shadow:
        0 6px 20px rgba(200,169,81,.12);
}

/* Hero Subtitle */
.premium-subtitle {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 30px;
}

/* Premium Divider */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 35px 0;
}

.premium-divider span {
    width: 100px;
    height: 2px;
    background: rgba(200,169,107,.5);
}

.premium-divider i {
    color: var(--luxury-gold);
}

/* Hero Description */
.premium-description {
    max-width: 580px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white-soft);
}

/* Premium Rating */
.premium-rating {
    margin-top: 45px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(200,169,81,0.4);

    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.18);
}

.rating-stars,
.rating-score {
    color: var(--luxury-gold);
}

.rating-score {
    font-weight: 700;
}

.rating-reviews {
    color: var(--white);
}

/* Premium Wave */
.premium-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.premium-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   2. STATS COUNTER SECTION
   ======================================== */

.stats-section {
    padding: 80px 0;
    background: var(--ivory);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 48px;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 42px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   3. BRANCH EXPERIENCE & CONTACT SECTION
   ======================================== */

.premium-branch-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--border-light) 100%);
}

.branch-premium-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.branch-premium-card:hover {
    transform: translateY(-5px);
}

.card-header-premium {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-light) 100%);
    padding: 40px;
    text-align: center;
    position: relative;
}

.card-header-premium h2 {
    color: var(--luxury-gold);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-header-premium p {
    color: var(--white);
    font-size: 18px;
    opacity: 0.9;
}

.premium-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    row-gap: 24px;
    padding: 40px;
}

.premium-contact-item {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(
        135deg,
        var(--emerald-dark) 0%,
        var(--emerald-light) 100%
    );
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200,169,81,.20);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.premium-contact-item:hover {
    background: linear-gradient(
        135deg,
        var(--emerald-light) 0%,
        var(--emerald-dark) 100%
    );
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
    border-color: var(--luxury-gold);
}

.premium-contact-item.full-width {
    grid-column: span 4;
    max-width: 100%;
    margin: 0;
    width: 100%;
    margin-top: 12px;
    padding: 35px 30px;
    min-height: 170px;
}

.premium-contact-item.full-width h4 {
    margin-bottom: 14px;
}

.premium-contact-item.full-width p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-icon-premium {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-premium i {
    font-size: 32px;
    color: var(--luxury-gold);
}

.premium-contact-item h4 {
    color: var(--luxury-gold);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.premium-contact-item p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   4. CONSULTANCY SERVICES SECTION
   ======================================== */

.premium-consultancy {
    padding: 80px 0;
    background: var(--ivory);
}

.luxury-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.consultancy-wrapper {
    padding: 40px;
}

.consultancy-dropdown-premium {
    margin-bottom: 0;
}

.premium-select-container {
    position: relative;
    width: 580px;
    max-width: 100%;
    margin: 0 auto;
}

.premium-select-field {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.premium-select-field:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(200,169,91,0.1);
}

.premium-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--luxury-gold);
    font-size: 18px;
    padding: 0;
}

.premium-fee-display {
    text-align: center;
    margin: 0 auto;
    background: var(--gray-light);
    border-radius: 20px;
    width: 580px;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.premium-fee-display.active {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 28px 20px;
    margin: 25px auto;
}

.fee-amount-premium {
    font-size: 32px;
    font-weight: 700;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}

.fee-amount-premium::before {
    content: "Fee: ";
    font-size: 18px;
    font-weight: normal;
    color: var(--text-dark);
}

.premium-notice {
    display: flex;
    gap: 15px;
    padding: 24px;
    background: var(--warning-light);
    border-left: 4px solid var(--luxury-gold);
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 24px;
    color: var(--luxury-gold);
}

.notice-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.notice-text strong {
    color: var(--emerald-dark);
}

/* ========================================
   5. PREMIUM BUTTONS SECTION (LAYOUT ONLY)
   ======================================== */

.premium-buttons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--border-light) 100%);
}

.premium-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   6. PACKAGES SECTION
   ======================================== */

.premium-packages {
    padding: 80px 0;
    background: var(--white);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 55px;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header-premium h2 {
    font-size: 38px;
    color: var(--emerald-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-premium p {
    font-size: 18px;
    color: var(--text-muted);
}

.premium-package-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 30px;
}

.premium-package-card {
    position: relative;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-light) 100%);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200,169,81,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: 100%;
}

.premium-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.25);
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-dark) 100%);
}

.premium-package-card.premium-featured {
    border: 2px solid var(--luxury-gold);
    position: relative;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}


.package-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.premium-package-card:hover .package-glow {
    height: 4px;
}

.package-category {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.75);
    margin-bottom: 15px;
    font-weight: 600;
}

.premium-package-card h3 {
    font-size: 28px;
    color: var(--luxury-gold);
    margin-bottom: 25px;
    font-weight: 700;
}

.package-features-premium {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
    text-align: left;
    flex: 1;
}

.package-features-premium li {
    padding: 10px 0;
    color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.package-features-premium li i {
    color: var(--luxury-gold);
    font-size: 16px;
    width: 20px;
}

.package-buttons-premium {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: auto;
    padding-top: 30px;
}

/* ========================================
   7. TRUST FEATURES SECTION
   ======================================== */

.premium-features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-light) 100%);
}

.premium-features .section-header-premium h2 {
    color: var(--white);
}

.premium-features .section-header-premium p {
    color: rgba(255,255,255,0.9);
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.premium-feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
    border-color: var(--luxury-gold);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-feature-card:hover .feature-icon-premium {
    transform: scale(1.1);
}

.feature-icon-premium i {
    font-size: 40px;
    color: var(--emerald-dark);
}

.premium-feature-card h4 {
    color: var(--luxury-gold);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.premium-feature-card p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   8. CTA SECTION
   ======================================== */

.premium-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-light) 100%);
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(200,169,81,0.15) 0%, transparent 50%);
}

.premium-cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 60px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    box-shadow: 0 35px 65px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.premium-cta-card h2 {
    font-size: 48px;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.premium-cta-card p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.premium-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   9. LOCATION SECTION
   ======================================== */

.premium-location {
    padding: 80px 0;
    background: var(--ivory);
}

.premium-location-card {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.premium-location-card h3 {
    font-size: 32px;
    color: var(--emerald-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.premium-location-card h3 i {
    color: var(--luxury-gold);
    margin-right: 12px;
}

.premium-location-card > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.premium-map-container {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    margin: 30px 0 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: var(--white);
}

.premium-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: var(--white);
}

.premium-map-btn {
    text-align: center;
}

/* ========================================
   10. RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .stats-section {
        padding: 60px 0;
    }

    .premium-branch-experience {
        padding: 60px 0;
    }

    .premium-consultancy {
        padding: 60px 0;
    }

    .premium-buttons-section {
        padding: 60px 0;
    }

    .premium-packages {
        padding: 60px 0;
    }

    .premium-features {
        padding: 60px 0;
    }

    .premium-cta {
        padding: 60px 0;
    }

    .premium-location {
        padding: 60px 0;
    }

    .premium-title {
        font-size: 56px;
    }

    .premium-subtitle {
        font-size: 24px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-number,
    .stat-number span {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-card {
        min-height: 200px;
    }

    .premium-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 20px;
    }

    .premium-contact-item.full-width {
        grid-column: span 2;
    }

    .premium-package-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .premium-feature-card {
        min-height: 260px;
    }

    .section-header-premium h2 {
        font-size: 32px;
    }

    .premium-cta-card {
        padding: 60px 50px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }

    .premium-cta-card h2 {
        font-size: 40px;
    }
    
    .premium-cta-card p {
        font-size: 18px;
    }

    .premium-location-card {
        padding: 40px;
    }

    .premium-location-card h3 {
        font-size: 28px;
    }

    .premium-map-container {
        height: 430px;
    }

    .premium-select-container {
        width: 500px;
    }

    .premium-fee-display {
        width: 500px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .stats-section {
        padding: 50px 0;
    }

    .premium-branch-experience {
        padding: 50px 0;
    }

    .premium-consultancy {
        padding: 50px 0;
    }

    .premium-buttons-section {
        padding: 50px 0;
    }

    .premium-packages {
        padding: 50px 0;
    }

    .premium-features {
        padding: 50px 0;
    }

    .premium-cta {
        padding: 50px 0;
    }

    .premium-location {
        padding: 50px 0;
    }

    .premium-hero {
        min-height: auto;
        padding: 120px 0 140px;
    }

    .premium-title {
        font-size: 42px;
    }

    .premium-subtitle {
        font-size: 20px;
    }

    .premium-divider span {
        width: 60px;
    }

    .premium-description {
        font-size: 16px;
    }

    .premium-rating {
        padding: 12px 20px;
        gap: 8px;
        margin-top: 35px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
        min-height: 180px;
    }

    .stat-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .stat-number,
    .stat-number span {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .card-header-premium {
        padding: 30px 20px;
    }

    .card-header-premium h2 {
        font-size: 24px;
    }

    .card-header-premium p {
        font-size: 14px;
    }

    .premium-contact-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 15px;
        row-gap: 15px;
    }

    .premium-contact-item {
        padding: 20px;
        min-height: auto;
    }
    
    .premium-contact-item.full-width {
        grid-column: span 1;
        margin-top: 12px;
        padding: 30px 25px;
        min-height: auto;
    }

    .contact-icon-premium {
        width: 50px;
        height: 50px;
    }

    .contact-icon-premium i {
        font-size: 24px;
    }

    .premium-contact-item h4 {
        font-size: 16px;
    }

    .premium-contact-item p {
        font-size: 13px;
    }

    .consultancy-wrapper {
        padding: 25px;
    }

    .premium-select-container {
        width: 100%;
    }

    .premium-select-field {
        font-size: 14px;
        padding: 12px 45px 12px 15px;
    }

    .premium-fee-display {
        width: 100%;
    }

    .fee-amount-premium {
        font-size: 24px;
    }

    .premium-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .notice-text {
        font-size: 12px;
    }

    .premium-button-group {
        gap: 12px;
    }

    .premium-package-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header-premium {
        margin-bottom: 40px;
    }

    .section-header-premium h2 {
        font-size: 28px;
    }

    .section-header-premium p {
        font-size: 14px;
    }

    .premium-package-card {
        padding: 35px 25px;
        min-height: auto;
    }

    .premium-package-card h3 {
        color: var(--luxury-gold);
    }
    
    .package-features-premium {
        margin: 20px 0 30px;
    }

    .package-features-premium li {
        color: var(--white);
    }
    
    .package-buttons-premium {
        padding-top: 25px;
        gap: 14px;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-feature-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .feature-icon-premium {
        width: 60px;
        height: 60px;
    }

    .feature-icon-premium i {
        font-size: 30px;
    }

    .premium-feature-card h4 {
        font-size: 18px;
    }

    .premium-feature-card p {
        font-size: 13px;
    }
    
    .premium-cta-card {
        padding: 50px 30px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }

    .premium-cta-card h2 {
        font-size: 32px;
    }

    .premium-cta-card p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .premium-cta-buttons {
        gap: 15px;
    }

    .premium-location-card {
        padding: 35px 25px;
    }

    .premium-location-card h3 {
        font-size: 24px;
    }

    .premium-location-card > p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .premium-map-container {
        height: 320px;
        margin: 25px 0 30px;
        border-radius: 20px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .package-buttons-premium {
        flex-direction: column;
        gap: 12px;
    }

    .premium-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .premium-cta-card h2 {
        font-size: 28px;
    }
    
    .premium-cta-card p {
        font-size: 14px;
    }
    
    .premium-cta-card {
        padding: 40px 25px;
    }

    .premium-button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .premium-location-card {
        padding: 25px 20px;
    }
    
    .premium-map-container {
        height: 280px;
    }
}