/* ===== NON-CRITICAL STYLES ===== */
/* Logo */
.main-logo-wrapper {
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 340px;
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Heading Details */
#hero-heading .span3 {
    display: block;
    font-size: 0.55em;
    font-weight: 400;
    margin-top: 0.4rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cta-force-left {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-left: 3em;
}

.hero-content {
    text-align: left;
    bottom: 60px;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    #hero-heading .span3 {
        font-size: 0.6em;
        margin-top: 0.35rem;
    }
}

@media (max-width: 768px) {
    #hero-heading {
        text-align: center;
    }
    
    #hero-heading .span3 {
        font-size: 0.7em;
        margin-top: 0.5rem;
    }
    
    .hero-content {
        text-align: center !important;
        align-items: center;
    }
    
    .cta-force-left {
        justify-content: center;
        padding: 3em;
    }
}

@media (max-width: 480px) {
    #hero-heading .span3 {
        font-size: 0.75em;
        line-height: 1.25;
    }
}

/* Button States */
.btn-gradient svg {
    transition: fill 0.25s ease;
}

.btn-gradient:hover svg {
    fill: #fff;
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35), inset 0 2px 6px rgba(0,0,0,0.35);
}

.btn-gradient:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,0,122,0.35), 0 12px 28px rgba(0,0,0,0.45);
}

/* Hero Content Details */
#hero-heading.hero-blur-font1 {
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.2;
}

#hero-heading .span3 {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-top: 10px;
    color: #ff007a;
}



/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 15px;
    }
    
    #hero-heading.hero-blur-font1 {
        text-align: left;
    }
    
    .hero-container .btn-gradient {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 10px;
    }
    
    #hero-heading.hero-blur-font1 {
        font-size: 2rem;
    }
    
    #hero-heading .span3 {
        font-size: 1.3rem;
    }
}

/* Tablet/Desktop Ratio Adjustments */
@media (min-width: 901px) and (max-width: 1300px) {
    .about-section {
        grid-template-columns: 3fr 4fr;
    }
}

@media (min-width: 1301px) {
    .about-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* About Text Styling */
.about-text h2 {
    font-size: clamp(17px, 3vw, 40px);
    margin-bottom: 1em;
}

.about-text p {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Carousel Animation */
.about-carousel {
    transition: height 0.3s ease;
}

/* Notification Items */
.notification-item.long-review {
    width: 100%;
}

.notification-item.medium-review {
    width: 80%;
}

.notification-item.short-review {
    width: fit-content;
}

.notification-item:hover {
    transform: translateX(3px);
    opacity: 1;
    background: rgb(0 0 0 / 60%);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Notification Content */
.notification-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgb(255 0 85 / 72%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-text {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    width: 100%;
}

.notification-author {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.notification-stars {
    color: #FFD700;
    font-size: 11px;
    letter-spacing: 1px;
    flex-shrink: 0;
    white-space: nowrap;
}

.notification-comment {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 100%;
}

/* Review Type Styles */
.short-review .notification-comment {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.medium-review .notification-comment {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.long-review .notification-comment {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orstant: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Limit Indicator */
.notification-limit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-align: center;
    padding: 6px 10px;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.notification-limit:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(50, 50, 60, 0.8);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

/* Mobile Notification Adjustments */
@media (max-width: 768px) {
    .notification-item {
        padding: 12px 14px;
        min-width: 76%;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 15px;
    }
    
    .notification-avatar {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        font-size: 13px;
    }
    
    .notification-author {
        font-size: 12px;
        max-width: 65%;
    }
    
    .notification-stars {
        font-size: 10px;
    }
    
    .notification-comment {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .about-carousel {
        height: 400px;
        min-height: 400px;
    }
    
    .notification-container {
        width: 80%;
        left: 10px;
        top: 60%;
    }
    
    .notification-item {
        padding: 10px 12px;
        min-width: 82%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 14px;
    }
    
    .notification-avatar {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 12px;
    }
    
    .notification-author {
        font-size: 11px;
        max-width: 60%;
    }
    
    .notification-stars {
        font-size: 9px;
    }
    
    .notification-comment {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* Badge Styling */
.top-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff007a, #b300ff);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    z-index: 10;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .top-badge {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
        top: 10px;
        left: 10px;
    }
    
    .badge-stars {
        font-size: 0.7rem;
        margin-top: 2px;
    }
}

/* Highlight Text */
.highlight-text {
    display: inline-block;
    font-weight: 600;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #ffffff;
    text-align: left;
    padding: 0.6rem 1rem;
    border-left: 4px solid #ff007a;
    background: rgba(75, 0, 130, 0.50);
    border-radius: 6px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.6), 0 0 10px rgba(255, 0, 85, 0.4), 0 0 20px rgba(255, 0, 122, 0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    margin: 30px 0;
}

.title-highlight {
    color: #ff007a;
}

/* About Text Content */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-top: 7em;
    
}

.hero-heading {
    font-size: 3em;
    text-align: left;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    text-align: left;
    line-height: 1.8em;
    text-transform: none !important;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 1.4em;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        line-height: 1.8em;
    }
    
    .about-text {
        padding-top: 2em;
        margin:1em;
    }
}

/* Empty State */
.notification-empty {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    font-style: italic;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px) translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.notification-item {
    animation: fadeSlideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}




.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.title-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

.accent {
    color: var(--accent-pink);
    font-weight: 600;
}



.intro-section {
    margin-bottom: 2.5rem;
}

.intro-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(179, 0, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(179, 0, 255, 0.2);
    flex-shrink: 0;
}

.intro-header h3 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.intro-content {
    display: grid;
    gap: 1.2rem;
}

.text-block {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1rem, 1.1vw, 1.05rem);
}

.lead {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight-box {
    background: rgba(179, 0, 255, 0.08);
    border-left: 2px solid var(--accent-pink);
    padding: 1.2rem 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 1.2rem 0;
}

.highlight-box strong {
    color: var(--accent-pink);
    font-weight: 600;
}

/* Premium Features */
.premium-features {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px dashed var(--accent-purple);
    border-bottom: 1px dashed var(--accent-purple);
}

.features-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-header h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(179, 0, 255, 0.15);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(179, 0, 255, 0.08);
    border-color: rgba(179, 0, 255, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 0, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(179, 0, 255, 0.2);
}

.feature-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Service Tags */
.service-tags {
    margin-top: 2.5rem;
}

.tags-header {
    margin-bottom: 1rem;
}

.tags-header h5 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.service-tag:hover {
    background: rgba(179, 0, 255, 0.15);
    color: var(--text-primary);
    border-color: var(--accent-purple);
    transform: translateY(-1px);
}

/* Process Section */
.process-section {
    background: var(--section-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-header h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(179, 0, 255, 0.15);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(179, 0, 255, 0.08);
    border-color: rgba(179, 0, 255, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem auto;
    background: var(--primary-gradient);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(179, 0, 255, 0.2);
}

.step-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Thick Content Section */
.thick-content-section {
    color: #e0e0e0;
    border-radius: 12px;
    margin: 10px auto;
    max-width: 1200px;
}

.coverage-section-expanded h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff007a, #f4e4a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: #cccccc;
}

.extended-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.area-category h3 {
    color: #ff007a;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.area-listing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.area-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff007a;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgb(195 55 212 / 10%);
    transform: translateX(5px);
}

.service-highlight {
    background: rgb(195 55 212 / 10%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.premium-district-section {
    margin: 4rem 0;
}

.premium-district-section h2 {
    color: #f4e4a6;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.premium-district {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.premium-district h3 {
    color: #ff007a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.premium-tag {
    background: rgb(195 55 212 / 10%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.premium-cta-section {
    text-align: center;
    padding: 3rem;
    background: rgb(195 55 212 / 10%);
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.primary-cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff007a, #f4e4a6);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 1rem 0;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.discreet-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.service-summary {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .features-row,
    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tags-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 3rem 5%;
    }
    
    .content-card,
    .process-section {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .intro-header h3 {
        font-size: 1.5rem;
    }
    
    .features-row,
    .process-row {
        grid-template-columns: 1fr;
    }
    
    .feature-item,
    .process-step {
        padding: 1rem;
    }
    
    .tags-row {
        justify-content: flex-start;
    }
    
    .extended-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-features {
        flex-direction: column;
    }
    
    .coverage-section-expanded h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-card,
    .process-section {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .intro-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .section-icon {
        margin: 0 auto;
    }
    
    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}