* {
    box-sizing: border-box;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent horizontal scroll on all elements */
section, div, header, footer {
    max-width: 100%;
    box-sizing: border-box;
}

body.modal-open {
    overflow: hidden;
}

/* Hero Section Styles */
.hero {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    background: url('images/bg-shape.png'), #1a1a2e;
    background-size: contain, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: fit-content;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #fff;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-watch i {
    font-size: 1.2rem;
}

.hero-right {
    color: #fff;
    padding-left: 80px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Hero Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
        width: 100%;
    }
    
    .hero-right {
        padding-left: 0;
        order: -1;
        width: 100%;
    }
    
    .hero-left {
        padding: 20px 20px;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        border-radius: 0;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hero {
        padding: 0 !important;
        margin: 0 !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
    
    .hero-container {
        padding: 30px 0;
        gap: 30px;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .hero-left {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }
    
    .btn-signup,
    .btn-watch {
        width: 100%;
    }
    
    .hero-image {
        border-radius: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 20px 0;
        gap: 25px;
    }
    
    .hero-left {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-signup,
    .btn-watch {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #fff;
    color: #6B46C1;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    background: #f5f5f5;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
}

/* Mobile Landscape & Small Tablet */
@media (max-width: 992px) {
    .hero {
        padding: 50px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-image {
        order: -1;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero-container {
        gap: 35px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 15px 28px;
    }
    
    .hero-image img {
        max-width: 400px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 30px 10px;
    }
    
    .hero-container {
        padding: 0 10px;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-image img {
        max-width: 100%;
        border-radius: 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero {
        padding: 25px 8px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Responsiveness for Hero Section */
@media (max-width: 992px) {
    .hero {
        margin: 20px;
        border-radius: 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        margin: 15px;
        border-radius: 16px;
    }
    
    .hero-container {
        padding: 50px 25px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-card {
        padding: 36px 28px;
    }
    
    .hero-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-card {
        padding: 30px 20px;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    padding-bottom: 25px;
}

header {
    background-color: #ffffff;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    position: sticky;
    top: 0;
    z-index: 99998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 2px solid #0f0a1f94;
}

.logo {
    height: 25px;
    flex: 0 0 auto;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 100%;
    width: auto;
}

.header-center {
    display: flex;
    gap: 35px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-center a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 17px;
}

.header-center a i {
    margin-right: 5px;
    color: #ff6b35;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-green 0.8s infinite;
    box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00, 0 0 35px #00ff00;
    position: relative;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00, 0 0 35px #00ff00;
    }
    50% {
        opacity: 0.6;
        transform: scale(1.4);
        box-shadow: 0 0 25px #00ff00, 0 0 40px #00ff00, 0 0 55px #00ff00, 0 0 70px #00ff00;
    }
}

.header-center a:hover {
    color: #461bd9;
}

.header-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-menu a:hover {
    color: #461bd9;
}

.account-button {
    background: #1a1a2e;
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    font-size: 15px;
    border: none;
    position: absolute;
    right: 25%;
    transform: translateX(50%);
}

.account-button:hover {
    opacity: 0.9;
    color: white !important;
}

.account-button i {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #1a1a2e;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.mobile-menu-toggle i {
    font-size: 18px;
}

.header-links {
    display: none;
}

/* Professional Hero Section */
.hero {
    background: url('images/bg-shape.png') center/cover no-repeat, #1a1a2e;
    color: white;
    padding: 35px 40px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(70, 27, 217, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(70, 27, 217, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    margin-left: 400px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
    color: white;
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0 0 22px 0;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 27, 217, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(70, 27, 217, 0.4);
}

.btn-primary i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #d0d0d0;
    background: #1a1a1a;
    padding: 8px 12px;
    border-radius: 6px;
}

.hero-feature-item i {
    color: #461bd9;
    font-size: 16px;
}

.hero-visual {
    position: absolute;
    left: 0px;
    right: auto;
    bottom: -60px;
    top: 35px;
    width: 70%;
    display: flex;
    align-items: flex-end;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0px 0px 8px 5px rgb(0, 0, 5);
}

.hero-image:hover {
    transform: none;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(70, 27, 217, 0.3);
    transform: translateY(-4px);
}

.hero-card-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 20px;
    color: white;
}

.stat-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: white;
}

.stat-content p {
    font-size: 12px;
    margin: 0;
    color: #b0b0b0;
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
    padding: 8px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 100px;
    min-height: 40px;
}

.trust-badge i {
    font-size: 20px;
    color: #461bd9;
}

.google-logo,
.tda-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.lawyer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.albayaan-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.hello-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.branddrive-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.krispy-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .trust-badges {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 20px 35px;
    }
    
    .hero-visual {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 16px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .trust-badge {
        flex-shrink: 0;
    }
}

nav {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
}

.nav-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-card {
    background: white;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    display: block;
    min-width: 120px;
    flex: 0 0 auto;
}

.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: #333;
    text-decoration: none;
}

.nav-card i {
    font-size: 24px;
    color: #461bd9;
    margin-bottom: 8px;
    display: block;
}

.nav-card .nav-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.nav-card p {
    display: none;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #461bd9;
    margin: 40px 0 30px 0;
    font-weight: 600;
}

.center-text {
    text-align: center;
    font-size: 18px;
    margin: 20px auto;
    line-height: 1.6;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.pricing-table {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    margin: 0 auto 60px auto;
    max-width: 1000px;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.download-app-section {
    margin: 10px 0 40px 0;
    text-align: center;
}

.download-app-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px auto 0 auto;
}

.download-app-buttons .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.download-app-buttons .download-btn i {
    font-size: 16px;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(70, 27, 217, 0.15);
    text-align: center;
    width: 280px;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #461bd9, #3a1599, #461bd9);
}

.pricing-card:hover {
    box-shadow: 0 10px 40px rgba(70, 27, 217, 0.15);
    border-color: #461bd9;
}

.pricing-card:nth-child(2) {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(70, 27, 217, 0.4);
}

.pricing-card:nth-child(2)::after {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.pricing-card:nth-child(2) h3,
.pricing-card:nth-child(2) .price,
.pricing-card:nth-child(2) ul li {
    color: white;
}

.pricing-card:nth-child(2) ul li i {
    color: white !important;
}

.pricing-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .price {
    font-size: 40px;
    color: #461bd9;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pricing-card .price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.pricing-card:nth-child(2) .price span {
    color: rgba(255,255,255,0.9);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 15px auto;
    text-align: center;
    max-width: 250px;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.pricing-card ul li i.fa-wifi,
.pricing-card ul li i.fa-envelope,
.pricing-card ul li i.fa-phone {
    color: #461bd9;
    font-size: 16px;
    min-width: 20px;
}

.plan-btn {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 3px 10px rgba(70, 27, 217, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #3a1599 0%, #461bd9 100%);
    box-shadow: 0 5px 15px rgba(70, 27, 217, 0.4);
    transform: translateY(-1px);
}

.pricing-card .plan-btn {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(70, 27, 217, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .plan-btn:hover {
    background: linear-gradient(135deg, #3a1599 0%, #461bd9 100%);
    box-shadow: 0 5px 15px rgba(70, 27, 217, 0.3);
}

.pricing-card:nth-child(2) .plan-btn {
    background: white;
    color: #461bd9;
}

.pricing-card:nth-child(2) .plan-btn:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.promo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.promo-card {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    padding: 0 0 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.promo-card .image-container {
    position: relative;
    width: 100%;
}

.promo-card .features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Modern Features Showcase */
.features-showcase {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 30px;
    text-align: center;
}

.features-showcase h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.showcase-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card-modern {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(70, 27, 217, 0.2);
    border-color: #461bd9;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-modern i {
    font-size: 30px;
    color: #ffffff;
}

.feature-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

.promo-card .feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.promo-card .feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px auto;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card .feature-icon i {
    font-size: 20px;
    color: white;
}

.promo-card .feature-item h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.promo-card .feature-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.promo-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.promo-card .play-icon:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.promo-card h3 {
    font-size: 28px;
    color: #461bd9;
    margin: 20px 40px 15px 40px;
    font-weight: bold;
}

.promo-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 40px 15px 40px;
    color: #555;
}

.promo-features {
    margin: 30px 40px 0 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.promo-features h4 {
    color: #461bd9;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.promo-features .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.promo-features .feature-item {
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(70, 27, 217, 0.2);
}

.promo-features .feature-icon {
    font-size: 1.5em;
    margin-bottom: 6px;
    display: block;
}

.promo-features .feature-item h5 {
    color: #461bd9;
    font-size: 14px;
    margin: 6px 0 4px 0;
    font-weight: bold;
}

.promo-features .feature-item p {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-link {
    color: #461bd9;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #461bd9;
    text-decoration: underline;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    min-height: 400px;
}

.feature-card img {
    width: 100%;
    height: auto;
}

.aotearoa-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.aotearoa-section h2 {
    font-size: 36px;
    color: #461bd9;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 600;
}

.aotearoa-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.aotearoa-content {
    text-align: left;
}

.aotearoa-content h3 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.aotearoa-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aotearoa-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.aotearoa-card {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 8px;
    min-height: 400px;
}

.aotearoa-card h3 {
    color: #461bd9;
}

.aotearoa-card button {
    background: #461bd9;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.deal-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #461bd9 100%);
    padding: 25px 40px;
    margin: 40px auto;
    max-width: 1300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.banner-content {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.banner-content h2 {
    font-size: 32px;
    margin: 0 0 12px 0;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.banner-content > p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 20px 0 0 0;
    background: rgba(10, 10, 30, 0.8);
    border: 2px solid #461bd9;
    border-radius: 12px;
    padding: 0;
}

.banner-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: transparent;
    padding: 18px 15px;
    border-radius: 0;
    backdrop-filter: none;
    border-right: 1px solid rgba(70, 27, 217, 0.3);
}

.banner-feature:last-child {
    border-right: none;
}

.banner-feature i {
    font-size: 18px;
    color: #461bd9;
    background: transparent;
    width: auto;
    height: auto;
    display: inline;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.banner-feature span {
    font-size: 13px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

/* VoIP Packages */
.voip-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0 15px 0;
}

.voip-package {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voip-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.voip-package h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.voip-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffed4e;
    margin: 0 0 15px 0;
}

.voip-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.voip-btn:hover {
    background: #1a1a2e;
    transform: scale(1.05);
}

/* VoIP Packages Responsive */
@media (max-width: 992px) {
    .voip-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .voip-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .voip-package {
        padding: 12px 10px;
    }
    
    .voip-package h3 {
        font-size: 18px;
    }
    
    .voip-price {
        font-size: 16px;
    }
}

.banner-price {
    font-size: 15px;
    margin: 20px 0 18px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.banner-price strong {
    font-size: 32px;
    font-weight: 900;
    color: #ffed4e;
    display: block;
    margin-top: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-btn {
    background: white;
    color: #1a1a2e;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #ffed4e;
}

.banner-image {
    flex: 0 0 280px;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    transform: scale(1.02);
}

/* About Section - Surfshark Style */
.about-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #404040;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    position: relative;
}

.card-decorator {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.card-decorator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0) 100%);
    z-index: -1;
}

.teal-card .card-decorator::after {
    background: linear-gradient(to bottom, rgba(70, 27, 217, 1) 0%, rgba(70, 27, 217, 0) 100%);
}

.decorator-circle {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 4px solid #1a1a1a;
    position: relative;
}

.decorator-circle::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0) 70%);
    border-radius: 50%;
}

.decorator-circle i {
    font-size: 32px;
    color: #461bd9;
}

.feature-card-large .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 30px;
}

.feature-card-large h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card-large p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.internet-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.internet-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.internet-feature-item i {
    font-size: 18px;
    color: #461bd9;
}

.internet-feature-item span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.internet-feature-item i {
    font-size: 20px;
    color: #461bd9;
}

.internet-feature-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.feature-card-large .card-image {
    margin-top: 15px;
}

.feature-card-large .card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-card {
    background: #461bd9;
    border-radius: 20px;
    padding: 25px 25px 0 25px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.teal-card {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    overflow: visible;
    position: relative;
}

.voip-circle {
    background: #461bd9;
    border: 4px solid #461bd9;
}

.voip-circle::before {
    background: radial-gradient(circle, rgba(70, 27, 217, 0.8) 0%, rgba(70, 27, 217, 0) 70%);
}

.voip-circle i {
    color: white;
}

.feature-card .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 30px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: white;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
    color: white;
}

.feature-card .card-image {
    margin-top: 25px;
    margin-bottom: 0;
    text-align: center;
}

.feature-card .card-image img {
    width: 40%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: block;
    margin: 0 auto;
}

.feature-card .internet-features .internet-feature-item i {
    color: white;
}

.feature-card .internet-features .internet-feature-item span {
    color: white;
}

.stat-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px 18px;
    text-align: center;
}

.stat-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.stat-card:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.dark-stat {
    background: #1a1a1a;
    color: #ffffff;
}

.stat-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-icons i {
    font-size: 24px;
    color: #461bd9;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    border: 2px solid rgba(70, 27, 217, 0.3);
}

.stat-icons i.fa-lock {
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.3);
}

.stat-icons i.fa-envelope {
    color: #461bd9;
    background: white;
    border-color: rgba(70, 27, 217, 0.3);
}

.teal-stat {
    background: #461bd9;
    color: #ffffff;
}

.teal-stat .stat-number {
    color: #ffffff;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #461bd9;
}

.dark-stat .stat-number {
    color: #461bd9;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #404040;
}

.teal-stat .stat-label {
    color: white;
}

.dark-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
}

.benefit-btn:hover {
    background: #f5f5f5;
    border-color: #461bd9;
}

.benefit-icon {
    font-size: 20px;
}

.benefit-text {
    font-size: 14px;
    font-weight: 500;
    color: #404040;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #461bd9;
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #461bd9;
}

.faq-question i {
    font-size: 14px;
    color: #461bd9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Responsive for About Section */
@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .feature-card-large,
    .teal-card,
    .stat-card {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .about-section h2 {
        font-size: 36px;
    }
}

/* Desktop layout - ensure side-by-side on larger screens */
@media (min-width: 769px) {
    .pricing-table {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
    }
    
    .pricing-card {
        width: 280px;
        flex-shrink: 0;
    }
    
    .deal-row.carousel {
        display: flex !important;
    }
    
    .help-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        display: grid !important;
    }
    
    .faq-container {
        display: flex;
        flex-direction: column;
    }
}

.deal-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

/* Products Section - 3 Products Side by Side */
.products-section {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr !important;
    }
}

.product-card {
    background: transparent;
    min-height: 340px;
    height: 340px;
    perspective: 1200px;
    cursor: pointer;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.product-card.flipped .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front,
.product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card-front {
    background: linear-gradient(145deg, #ffffff 0%, #f8fcfc 100%);
    padding: 18px 16px;
    gap: 6px;
    justify-content: space-between;
    border: 1px solid rgba(70, 27, 217, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover .product-card-front {
    box-shadow: 0 15px 40px rgba(70, 27, 217, 0.15);
    border-color: rgba(70, 27, 217, 0.2);
    transform: translateY(-4px);
}

.product-card-back {
    background: linear-gradient(145deg, #461bd9 0%, #3a1599 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 16px 14px;
    gap: 6px;
    justify-content: flex-start;
    box-shadow: 0 15px 45px rgba(70, 27, 217, 0.25);
    overflow: hidden;
    border-radius: 12px;
}

.product-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1) 0%, rgba(248, 252, 252, 0.5) 100%);
    border-radius: 14px;
    padding: 10px;
    position: relative;
}

.product-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(70, 27, 217, 0.1));
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card-front h4 {
    font-size: 15px;
    margin: 4px 0;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.2px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    margin: 2px 0;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.6px;
}

.product-note {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    margin: 0;
    padding: 0 8px;
    font-weight: 500;
}

.product-btn {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-top: auto;
    width: 100%;
    max-width: 140px;
    box-shadow: 0 3px 10px rgba(70, 27, 217, 0.25);
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 27, 217, 0.35);
}

/* Back Side Styles */
.product-card-back h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.detail-item i {
    font-size: 15px;
    color: #461bd9;
    min-width: 18px;
}

.detail-item span {
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #1a1a1a;
    line-height: 1.3;
}

.price-detail {
    margin-top: auto;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.price-detail strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #ffed4e;
    margin-bottom: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-detail span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.product-btn-back {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #1a1a1a;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    width: 100%;
    max-width: 150px;
    box-shadow: 
        0 4px 12px rgba(255, 237, 78, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.product-btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 18px rgba(255, 237, 78, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ============================================
   CLEAN & PROFESSIONAL CARD DESIGN
   ============================================ */

.clean-card .product-card-front {
    background: #ffffff;
    padding: 30px 25px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.clean-card .product-card-front:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Clean Icon Box */
.clean-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.clean-card:hover .clean-icon-box {
    transform: scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.clean-icon-box i {
    font-size: 40px;
    color: #666;
    transition: all 0.3s ease;
}

.clean-card:hover .clean-icon-box i {
    color: #ffffff;
}

/* Clean Typography */
.clean-card .product-card-front h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.clean-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Clean Price */
.clean-price {
    margin: 20px 0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #461bd9;
    letter-spacing: -1px;
}

/* Clean Features */
.clean-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0f2f5;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 18px;
    color: #461bd9;
}

.feature-item span {
    font-size: 11px;
    color: #555;
    font-weight: 600;
}

/* Clean Button */
.clean-btn {
    background: #461bd9;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 180px;
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.25);
    transition: all 0.3s ease;
    margin-top: auto;
}

.clean-btn:hover {
    background: #17a2a2;
    box-shadow: 0 6px 16px rgba(70, 27, 217, 0.35);
    transform: translateY(-2px);
}

/* Phone Image for Clean Design */
.clean-phone-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.clean-phone-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Specific Card Color Accents */
.computer-card .clean-icon-box {
    background: linear-gradient(135deg, #e0f7f7 0%, #b3ecec 100%);
}

.computer-card:hover .clean-icon-box {
    background: linear-gradient(135deg, #461bd9 0%, #17a2a2 100%);
}

.computer-card .price-value,
.computer-card .feature-item i {
    color: #461bd9;
}

.computer-card .clean-btn {
    background: #461bd9;
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.25);
}

.computer-card .clean-btn:hover {
    background: #17a2a2;
    box-shadow: 0 6px 16px rgba(70, 27, 217, 0.35);
}

.software-card .clean-icon-box {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b3 100%);
}

.software-card:hover .clean-icon-box {
    background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
}

.software-card .price-value,
.software-card .feature-item i {
    color: #ffa726;
}

.software-card .clean-btn {
    background: #ffa726;
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.25);
}

.software-card .clean-btn:hover {
    background: #fb8c00;
    box-shadow: 0 6px 16px rgba(255, 167, 38, 0.35);
}

.phone-card .clean-icon-box {
    background: linear-gradient(135deg, #e0f7f7 0%, #b3ecec 100%);
}

.phone-card:hover .clean-icon-box {
    background: linear-gradient(135deg, #461bd9 0%, #17a2a2 100%);
}

.phone-card .price-value,
.phone-card .feature-item i {
    color: #461bd9;
}

.phone-card .clean-btn {
    background: #461bd9;
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.25);
}

.phone-card .clean-btn:hover {
    background: #17a2a2;
    box-shadow: 0 6px 16px rgba(70, 27, 217, 0.35);
}

/* Phone Carousel Styles */
.phone-deals-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-track .deal-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #461bd9;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.3);
}

.carousel-btn:hover {
    background: #3a1599;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(70, 27, 217, 0.5);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-btn i {
    font-size: 18px;
}

.deal-card {
    background-color: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10, 10, 10, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 420px;
}

.deal-card .deal-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6px;
}

.deal-card .deal-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

.deal-card h4 {
    font-size: 18px;
    margin: 6px 0;
    font-weight: 700;
    color: #1a1a1a;
}

.deal-card .upfront {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.deal-card .monthly {
    font-size: 20px;
    color: #461bd9;
    font-weight: 800;
}

.deal-card .deal-note {
    font-size: 13px;
    color: rgba(0,0,0,0.65);
    line-height: 1.5;
    margin: 6px 0 12px 0;
}

.deal-card button {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 22px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.deal-card button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

@media (max-width: 968px) {
    .deal-row {
        grid-template-columns: 1fr;
    }

    .deal-card .deal-image {
        height: 180px;
    }
}

.help-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #1a1a1a 100%);
    padding: 80px 20px;
    margin: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.help-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.help-container h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.help-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(70, 27, 217, 0.2);
}

.help-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.help-icon i {
    font-size: 22px;
    color: #ffffff;
}

.help-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.help-card p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.help-button {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 9px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.help-button:hover {
    background: #461bd9;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.35);
}

@media (max-width: 968px) {
    .help-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-container h2 {
        font-size: 32px;
    }
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-media-section {
    background: transparent;
    padding: 0px 20px 30px;
    text-align: center;
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5ec7 100%);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #833ab4 100%);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* ============================================
   COPYRIGHT SECTION
   ============================================ */
.copyright-section {
    background: transparent;
    padding: 20px;
    text-align: center;
}

.copyright-section p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

footer {
    background-color: #000;
    color: white;
    padding: 3px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    height: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #461bd9;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        height: 60px;
        position: relative;
    }
    
    .logo {
        position: static;
        transform: none;
        left: auto;
        height: 28px;
        flex: 0 0 auto;
    }
    
    .header-center {
        display: none; /* Hide menu on mobile (replaced by burger) */
        position: absolute;
        top: 60px;
        left: 12px;
        right: 12px;
        transform: none;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 16px;
        padding: 12px 12px;
        flex-direction: column;
        gap: 10px;
        z-index: 99999;
        box-shadow: 0 20px 60px rgba(0,0,0,0.16);
    }

    header.menu-open .header-center {
        display: flex;
    }

    .header-center a {
        font-size: 15px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(26,26,46,0.04);
    }

    .header-center a:hover {
        background: rgba(70,27,217,0.08);
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }
    
    .account-button {
        position: static;
        transform: none;
        right: auto;
        font-size: 14px;
        padding: 10px 15px;
        flex: 0 0 auto;
    }
    
    .hero {
        flex-direction: column;
        padding: 20px;
        min-height: 50vh;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .hero-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin: 10px 0;
    }
    
    .hero-text button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero img {
        max-width: 80%;
        max-height: 30vh;
        order: 2;
        margin-top: 20px;
    }
    
    .promo-row, .feature-row, .deal-row {
        flex-direction: column;
    }
    
    .aotearoa-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        justify-content: center;
        padding: 0 10px;
    }
    
    .nav-card {
        min-width: auto;
        padding: 12px 5px;
        text-align: center;
    }
    
    .nav-card h3 {
        font-size: 12px;
    }
    
    .nav-card i {
        font-size: 20px;
    }
    
    nav {
        padding: 10px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .help-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .help-button {
        width: 100%;
        max-width: 300px;
    }
    
    .promo-features .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-features .feature-item {
        padding: 12px;
    }
    
    .promo-features h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
        height: 55px;
    }
    
    .logo {
        height: 24px;
    }
    
    .header-center {
        display: none; /* Keep menu hidden until burger is opened */
        top: 55px;
        left: 10px;
        right: 10px;
    }

    header.menu-open .header-center {
        display: flex;
    }
    
    .account-button {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .nav-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .nav-card {
        padding: 10px 3px;
    }
    
    .nav-card h3 {
        font-size: 11px;
    }
    
    .hero {
        padding: 15px;
        min-height: 40vh;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text h2 {
        font-size: 16px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .hero-text button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .nav-card {
        min-width: 70px;
        padding: 8px 4px;
    }
    
    .nav-card h3 {
        font-size: 10px;
    }
    
    .nav-card i {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .main-content {
        padding: 10px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 85vh;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Super Cool Modal Styles */
.super-cool-modal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(70, 27, 217, 0.2);
    box-shadow:
        0 20px 60px rgba(70, 27, 217, 0.3),
        0 0 100px rgba(70, 27, 217, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.modal-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(70, 27, 217, 0.1),
        rgba(108, 92, 231, 0.2),
        transparent
    );
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(70, 27, 217, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    bottom: 25%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

.modal-header {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 30px;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(70, 27, 217, 0.4);
    animation: pulse-icon 2s ease-in-out infinite;
}

.title-icon i {
    font-size: 24px;
    color: white;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-title {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #461bd9 0%, #6c5ce7 50%, #461bd9 100%);
    border-radius: 2px;
    margin: 15px auto 0;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Enhanced Detail Items */
.detail-item {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 255, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(70, 27, 217, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(70, 27, 217, 0.08);
    margin-bottom: 15px;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 27, 217, 0.1), transparent);
    transition: left 0.5s ease;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(70, 27, 217, 0.2);
    border-color: rgba(70, 27, 217, 0.3);
}

.icon-container {
    position: relative;
    flex-shrink: 0;
}

.detail-icon {
    font-size: 28px;
    color: #461bd9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.detail-item:hover .detail-icon {
    transform: scale(1.2) rotate(5deg);
    color: #6c5ce7;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(70, 27, 217, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow-pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes icon-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.detail-content h4 {
    margin: 0 0 5px 0;
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.detail-content p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.detail-item:hover .detail-content h4 {
    color: #461bd9;
}

.detail-item:hover .detail-content p {
    color: #6c5ce7;
}

.item-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #461bd9 0%, #6c5ce7 100%);
    transition: width 0.4s ease;
}

.detail-item:hover .item-decoration {
    width: 100%;
}

/* Enhanced Note Section */
.internet-note {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(70, 27, 217, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.internet-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: note-shine 4s ease-in-out infinite;
}

@keyframes note-shine {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 10px;
    animation: bounce-icon 3s ease-in-out infinite;
}

.note-icon i {
    color: white;
    font-size: 18px;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.internet-note p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.note-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* New Login Modal Styles */
.login-modal-content {
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 50vh;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 20001;
}

/* Locate Modal Styles */
.locate-modal-content {
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    max-height: 90vh;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding: 35px 40px;
    z-index: 10001;
}

.locate-modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.locate-modal-content .modal-close:hover {
    color: #000;
}

/* WhatsApp Modal Styles */
.whatsapp-modal-content {
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding: 35px 40px;
    z-index: 10001;
}

.whatsapp-modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.whatsapp-modal-content .modal-close:hover {
    color: #000;
}

.whatsapp-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.whatsapp-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-qr-section,
.whatsapp-direct-section {
    width: 100%;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.whatsapp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 15px;
}

.whatsapp-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.whatsapp-divider span {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    color: #999;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    z-index: 1;
    border: 2px solid #e0e0e0;
}

.whatsapp-number {
    background: #f0f0f0;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.whatsapp-number i {
    font-size: 28px;
    color: #25D366;
}

.whatsapp-number span {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .whatsapp-modal-content {
        width: 95%;
        padding: 30px 25px;
    }

    .whatsapp-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-divider {
        display: none;
    }
}

/* ============================================
   Callback Request Modal Styles
   ============================================ */

.callback-modal-content {
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 35px 40px;
    z-index: 10001;
}

.callback-modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.callback-modal-content .modal-close:hover {
    color: #000;
}

.callback-form {
    width: 100%;
}

.callback-form-group {
    margin-bottom: 20px;
}

.callback-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.callback-form-group input,
.callback-form-group select,
.callback-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.callback-form-group input:focus,
.callback-form-group select:focus,
.callback-form-group textarea:focus {
    outline: none;
    border-color: #461bd9;
    box-shadow: 0 0 0 3px rgba(70, 27, 217, 0.1);
}

.callback-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.callback-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #461bd9 0%, #17a2a2 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.callback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 27, 217, 0.3);
}

.callback-submit-btn i {
    font-size: 18px;
}

.callback-success {
    text-align: center;
    padding: 40px 20px;
}

.callback-success i {
    font-size: 64px;
    color: #461bd9;
    margin-bottom: 20px;
}

.callback-success h4 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.callback-success p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.callback-close-btn {
    background: #461bd9;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.callback-close-btn:hover {
    background: #17a2a2;
}

@media (max-width: 1024px) {
    .callback-modal-content {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .callback-modal-content {
        width: 95%;
        padding: 30px 25px;
    }
    
    .whatsapp-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-divider {
        display: none;
    }
}

/* ============================================
   Computer/Laptop Modal Styles
   ============================================ */

.computer-modal-content {
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: auto;
    max-width: 1600px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 40px 50px;
    z-index: 10001;
}

.computer-modal-content::-webkit-scrollbar {
    width: 10px;
}

.computer-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.computer-modal-content::-webkit-scrollbar-thumb {
    background: #461bd9;
    border-radius: 10px;
}

.computer-modal-content::-webkit-scrollbar-thumb:hover {
    background: #17a2a2;
}

.computer-modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.computer-modal-content .modal-close:hover {
    color: #000;
}

.computer-section {
    margin-bottom: 40px;
}

.computer-section:last-of-type {
    margin-bottom: 0;
}

.computer-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 25px;
    max-width: 400px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #461bd9;
    border-radius: 8px;
}

.computer-section-header i {
    font-size: 26px;
    color: #461bd9;
}

.computer-section-header h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 0;
    font-weight: 700;
}

.computers-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 280px));
    gap: 50px;
    row-gap: 50px;
    justify-content: center;
}

/* PC Card Styles */
.pc-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    position: relative;
    perspective: 1000px;
    height: 340px;
    cursor: pointer;
}

.pc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.pc-card.flipped .pc-card-inner {
    transform: rotateY(180deg);
}

.pc-card-front,
.pc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 20px 18px;
    background: white;
    border: 2px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pc-card:hover .pc-card-front {
    border-color: #461bd9;
    box-shadow: 0 6px 20px rgba(70, 27, 217, 0.2);
}

.pc-card:hover .pc-card-back {
    border-color: #461bd9;
    box-shadow: 0 6px 20px rgba(70, 27, 217, 0.2);
}

.pc-card-back {
    transform: rotateY(180deg);
}

.pc-card.pc-featured .pc-card-front,
.pc-card.pc-featured .pc-card-back {
    border: 2px solid #461bd9;
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

.pc-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background: linear-gradient(135deg, #461bd9 0%, #17a2a2 100%);
    color: white;
    padding: 3px 30px;
    font-size: 9px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(70, 27, 217, 0.4);
    z-index: 5;
}

.pc-icon {
    font-size: 45px;
    color: #461bd9;
    margin-bottom: 8px;
}

.pc-card h5 {
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.pc-specs-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    flex: 1;
}

.pc-specs-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 6px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.pc-specs-list li i {
    color: #461bd9;
    font-size: 12px;
    width: 14px;
}

.pc-price {
    font-size: 22px;
    font-weight: 800;
    color: #461bd9;
    margin: 10px 0 8px 0;
}

.pc-view-btn,
.pc-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #461bd9 0%, #17a2a2 100%);
    color: white;
    padding: 9px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.pc-view-btn:hover,
.pc-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.4);
}

.pc-view-btn i,
.pc-order-btn i {
    font-size: 12px;
}

/* Back Side Styles */
.pc-image-wrapper {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
}

.pc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-info {
    flex: 1;
    text-align: left;
    margin: 8px 0;
}

.pc-info p {
    font-size: 11px;
    color: #555;
    margin: 0 0 6px 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pc-info p i {
    color: #461bd9;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pc-info strong {
    color: #1a1a2e;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .computers-container {
        grid-template-columns: repeat(3, minmax(250px, 280px));
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .computer-modal-content {
        width: 90%;
        padding: 35px 30px;
    }
    
    .computers-container {
        grid-template-columns: repeat(2, minmax(240px, 280px));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .computer-modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .computers-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pc-card {
        height: auto;
        min-height: 340px;
    }
    
    .computer-section-header {
        max-width: 100%;
    }
    
    .computer-section-header h4 {
        font-size: 20px;
    }
    
    .computer-section-header i {
        font-size: 24px;
    }
    
    .whatsapp-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .whatsapp-divider {
        display: none;
    }
}

.login-modal-content .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.login-modal-content .close:hover {
    color: #000;
}

.login-modal-inner {
    display: flex;
    height: 100%;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-brand h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.login-brand p {
    color: #461bd9;
    font-size: 16px;
}

.login-right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.simple-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.login-input-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.login-input-group input:focus {
    outline: none;
    border-color: #461bd9;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-checkbox input {
    cursor: pointer;
}

.forgot-link {
    color: #461bd9;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-submit-btn {
    background: #461bd9;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.login-submit-btn:hover {
    background: #3a1599;
}

.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.login-form-group input,
.login-form-group select,
.login-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.login-form-group input:focus,
.login-form-group select:focus,
.login-form-group textarea:focus {
    outline: none;
    border-color: #461bd9;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.social-login-btn:hover {
    background: #f8f9fa;
    border-color: #461bd9;
}

.social-login-btn.google {
    color: #DB4437;
}

.social-login-btn.facebook {
    color: #4267B2;
}

.social-login-btn i {
    font-size: 18px;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.register-link {
    color: #461bd9;
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover {
    text-decoration: underline;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.close {
    color: white;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    flex: 1;
    min-height: 0;
}

.modal-body h3 {
    text-align: center;
    color: #461bd9;
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Standardized modal sections */
.service-info-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Legacy support for existing classes */
.wifi-info-section,
.mobile-info-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wifi-description,
.mobile-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wifi-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.mobile-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.plan-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #461bd9, #461bd9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover {
    border-color: #461bd9;
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(2, 169, 247, 0.15);
}

.plan-card h4 {
    color: #461bd9;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #461bd9;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card li {
    padding: 6px 0;
    color: #555;
    font-size: 14px;
    position: relative;
}

.plan-card li::before {
    content: '✓';
    color: #461bd9;
    font-weight: bold;
    margin-right: 8px;
}

.plan-button {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 87, 122, 0.3);
}

/* Enhanced Modal Content Styles */
.wifi-info-section {
    margin-bottom: 40px;
    text-align: center;
}

.wifi-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-item h4 {
    color: #461bd9;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.plans-section {
    margin-bottom: 40px;
}

.plan-badge {
    background: #461bd9;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.plan-card.popular {
    border: 3px solid #461bd9;
    transform: scale(1.02);
    z-index: 1;
}

.plan-subtitle {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
    font-style: italic;
}

.price .period {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.plan-note {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

.additional-info {
    margin-top: 40px;
    border-top: 2px solid #f0f0f0;
    padding-top: 30px;
}

.info-tabs,
.modal-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-button {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border-color: #461bd9;
}

.tab-button:hover:not(.active) {
    background: #e9ecef;
}

.modal .tab-content {
    display: none !important;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.modal .tab-content.active {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.coverage-checker {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.address-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.address-input:focus {
    border-color: #461bd9;
}

.check-button {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.check-button:hover {
    transform: translateY(-2px);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Login Assistance Cards - Horizontal Layout */
.login-assistance-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.login-assistance-row .equipment-card {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.equipment-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: #461bd9;
    box-shadow: 0 12px 40px rgba(2, 169, 247, 0.15);
}

.equipment-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.equipment-card h5 {
    color: #461bd9;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.equipment-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #461bd9;
    box-shadow: 0 12px 40px rgba(2, 169, 247, 0.15);
}

.support-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.support-card h5 {
    color: #461bd9;
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
}

.support-card p {
    color: #666;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

/* Mobile Data Modal Specific Styles */
.mobile-info-section {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.mobile-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #461bd9, #461bd9);
    border-radius: 16px;
    color: white;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.device-offers {
    max-width: 500px;
    margin: 20px auto;
}

.device-item {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: left;
    border-left: 4px solid #461bd9;
}

.feature-comparison {
    max-width: 600px;
    margin: 20px auto;
}

.comparison-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.comparison-item:hover {
    border-color: #461bd9;
}

.feature-name {
    font-weight: 600;
    color: #461bd9;
    min-width: 180px;
    font-size: 14px;
}

.feature-desc {
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .modal-content {
        width: 85%;
    }
    
    .login-modal-content {
        width: 85%;
        height: 60vh;
    }
    
    .locate-modal-content {
        width: 85%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .login-modal-content {
        width: 95%;
        height: auto;
        min-height: 80vh;
    }
    
    .locate-modal-content {
        width: 95%;
        padding: 25px 20px;
    }
    
    .login-modal-inner {
        flex-direction: column;
    }
    
    .login-left {
        padding: 40px 30px;
    }
    
    .login-brand h2 {
        font-size: 24px;
    }
    
    .login-right {
        padding: 40px 30px;
    }
    
    .login-right h3 {
        font-size: 22px;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-body h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .wifi-plans {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plan-card {
        padding: 20px 15px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .coverage-checker {
        flex-direction: column;
        gap: 15px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .login-assistance-row {
        flex-wrap: nowrap;
        gap: 10px;
        margin: 15px 0;
    }
    
    .login-assistance-row .equipment-card {
        min-width: 120px;
        max-width: 150px;
        padding: 15px 10px;
    }
    
    .login-assistance-row .equipment-card h5 {
        font-size: 14px;
    }
    
    .login-assistance-row .equipment-card p {
        font-size: 12px;
    }
    
    .login-assistance-row .equipment-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .equipment-card, .support-card {
        padding: 20px 15px;
    }
    
    /* Mobile Data modal responsive styles */
    .mobile-plans {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .device-offers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mobile-info-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-table th,
    .feature-table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .network-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .mobile-info-section {
        padding: 15px;
    }
    
    .mobile-description {
        font-size: 14px;
    }
}

/* Billing Overview Styling */
.billing-overview {
    padding: 20px 0;
}

.billing-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #461bd9;
}

.billing-section h4 {
    margin: 0 0 15px 0;
    color: #461bd9;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-section h4 i {
    color: #461bd9;
    font-size: 20px;
}

.billing-info {
    display: grid;
    gap: 12px;
}

.info-item {
    padding: 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    line-height: 1.5;
}

.info-item strong {
    color: #461bd9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .billing-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .billing-section h4 {
        font-size: 16px;
    }
    
    .info-item {
        padding: 10px;
        font-size: 14px;
    }
}

/* Contact Modal Styling */
.contact-overview {
    padding: 20px 0;
}

.contact-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #461bd9;
}

.contact-section h4 {
    margin: 0 0 15px 0;
    color: #461bd9;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section h4 i {
    color: #461bd9;
    font-size: 20px;
}

.contact-info {
    display: grid;
    gap: 10px;
}

.contact-item {
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    line-height: 1.5;
}

.contact-item strong {
    color: #461bd9;
    font-weight: 600;
}

/* Contact Form Styling */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #461bd9;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #461bd9;
    box-shadow: 0 0 0 3px rgba(2, 169, 247, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 169, 247, 0.3);
}

.support-btn,
.feedback-btn {
    background: #461bd9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.support-btn:hover,
.feedback-btn:hover {
    background: #461bd9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-section h4 {
        font-size: 16px;
    }
    
    .contact-item {
        padding: 8px;
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
}

/* Support Modal Styling */
.support-overview {
    padding: 20px 0;
}

.support-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #461bd9;
}

.support-section h4 {
    margin: 0 0 15px 0;
    color: #461bd9;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-section h4 i {
    color: #461bd9;
    font-size: 20px;
}

.support-info {
    display: grid;
    gap: 10px;
}

.support-item {
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    line-height: 1.5;
}

.support-item strong {
    color: #461bd9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .support-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .support-section h4 {
        font-size: 16px;
    }
    
    .support-item {
        padding: 8px;
        font-size: 14px;
    }
}

/* Login Modal Styling */
.login-container {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.login-form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.login-form-section h4 {
    margin: 0 0 20px 0;
    color: #461bd9;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-form-section h4 i {
    color: #461bd9;
    font-size: 22px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-input {
    position: relative;
    width: 100%;
}

.password-input input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 45px; /* Account for toggle button */
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.password-toggle:hover {
    color: #461bd9;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #461bd9;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 169, 247, 0.3);
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.login-divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-weight: 600;
}

.social-login-section,
.biometric-login-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.social-login-section h4,
.biometric-login-section h4 {
    margin: 0 0 15px 0;
    color: #461bd9;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-login-section h4 i,
.biometric-login-section h4 i {
    color: #461bd9;
    font-size: 20px;
}

.social-buttons,
.biometric-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn,
.biometric-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover,
.biometric-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-btn {
    border-color: #db4437;
    color: #db4437;
}

.google-btn:hover {
    background: #db4437;
    color: white;
}

.facebook-btn {
    border-color: #3b5998;
    color: #3b5998;
}

.facebook-btn:hover {
    background: #3b5998;
    color: white;
}

.apple-btn {
    border-color: #000;
    color: #000;
}

.apple-btn:hover {
    background: #000;
    color: white;
}

.fingerprint-btn {
    border-color: #461bd9;
    color: #461bd9;
}

.fingerprint-btn:hover {
    background: #461bd9;
    color: white;
}

.face-id-btn {
    border-color: #461bd9;
    color: #461bd9;
}

.face-id-btn:hover {
    background: #461bd9;
    color: white;
}

.registration-section {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.register-card,
.existing-customer-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.register-card h5,
.existing-customer-card h5 {
    margin: 0 0 15px 0;
    color: #461bd9;
    font-size: 18px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    padding: 5px 0;
    color: #333;
}

.register-btn {
    background: linear-gradient(135deg, #461bd9, #461bd9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.register-btn:hover {
    transform: translateY(-1px);
}

/* =================== ENHANCED SECURITY STYLES =================== */

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Captcha Section */
.captcha-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

#captcha-canvas {
    border: 2px solid #461bd9;
    border-radius: 8px;
    background: white;
}

.refresh-captcha {
    background: #461bd9;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-captcha:hover {
    background: #461bd9;
    transform: rotate(180deg);
}

#captcha-input {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Security Warning Styles */
.security-warning {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: securityPulse 2s infinite;
    border-left: 4px solid #990000;
}

.security-warning i {
    font-size: 18px;
    animation: shake 0.5s ease-in-out;
}

@keyframes securityPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Rate Limiting Warning */
#rate-limit-warning {
    background: linear-gradient(135deg, #ff8800, #cc6600);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    border-left: 4px solid #996600;
}

#countdown {
    font-weight: bold;
    font-size: 18px;
    color: #ffff00;
}

/* Security Alert Styling */
.security-alert {
    position: relative;
    z-index: 10;
}

/* Enhanced Login Button */
.login-btn {
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none !important;
}

.login-btn:disabled:hover {
    box-shadow: none;
}

/* Secure Input Styling */
input[data-encrypted="true"] {
    background: linear-gradient(45deg, rgba(2, 169, 247, 0.05), rgba(2, 87, 122, 0.05));
    border-left: 3px solid #461bd9;
}

input[data-encrypted="true"]:focus {
    background: linear-gradient(45deg, rgba(2, 169, 247, 0.1), rgba(2, 87, 122, 0.1));
    box-shadow: 0 0 0 3px rgba(2, 169, 247, 0.2), 0 0 20px rgba(2, 169, 247, 0.1);
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00aa00, #008800);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
    animation: securityGlow 3s ease-in-out infinite;
}

@keyframes securityGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 170, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 170, 0, 0.6); }
}

/* Enhanced Form Security */
.secure-form {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.secure-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #461bd9, #461bd9);
    border-radius: 12px;
    z-index: -1;
    padding: 2px;
}

/* Security Indicators */
.security-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 14px;
    color: #461bd9;
}

.security-indicator.active {
    color: #00aa00;
}

.security-indicator i {
    font-size: 16px;
}

/* Mobile Security Styles */
@media (max-width: 768px) {
    .captcha-section {
        padding: 15px;
    }
    
    .captcha-container {
        flex-direction: column;
        gap: 15px;
    }
    
    #captcha-canvas {
        max-width: 100%;
        height: auto;
    }
    
    .security-warning {
        padding: 12px;
        font-size: 14px;
    }
    
    .strength-text {
        font-size: 11px;
    }
}

/* Additional Security Features */
.secure-connection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 1px solid #00aa00;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #006600;
}

.secure-connection i {
    color: #00aa00;
    font-size: 16px;
}

/* Anti-tamper Protection */
.tamper-evident {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tamper-evident::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* Security Tooltip */
.security-tooltip {
    position: relative;
    display: inline-block;
}

.security-tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background: #333;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.security-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* =================== END SECURITY STYLES ===================
    box-shadow: 0 6px 20px rgba(2, 169, 247, 0.3);
}

.register-btn.secondary {
    background: white;
    color: #461bd9;
    border: 2px solid #461bd9;
}

.register-btn.secondary:hover {
    background: #461bd9;
    color: white;
}

@media (max-width: 768px) {
    .login-container {
        gap: 20px;
    }
    
    .login-form-section,
    .social-login-section,
    .biometric-login-section {
        padding: 20px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .social-buttons,
    .biometric-buttons {
        gap: 10px;
    }
    
    .registration-section {
        grid-template-columns: 1fr;
    }
    
    /* Pricing table responsive */
    .pricing-table {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .pricing-card:nth-child(2) {
        transform: scale(1);
    }
    
    /* FAQ responsive */
    .faq-section {
        padding: 0 15px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
    
    /* Phone carousel responsive */
    .phone-deals-section {
        padding: 0 50px;
    }
    
    .carousel-track .deal-card {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    /* Phone deals responsive */
    .deal-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .deal-card .deal-image {
        height: 200px;
    }
    
    /* Help section responsive */
    .help-section {
        padding: 50px 15px;
    }
    
    .help-container h2 {
        font-size: 28px;
    }
    
    .help-subtitle {
        font-size: 14px;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-card {
        padding: 30px 20px;
    }
    
    /* Section titles responsive */
    .section-title {
        font-size: 28px;
    }
    
    /* Internet features responsive */
    .internet-features {
        max-width: 100%;
    }
    
    .internet-feature-item {
        flex: 0 0 calc(50% - 12px);
    }

@media (max-width: 480px) {
    .pricing-card h3 {
        font-size: 20px;
    }
    
    .pricing-card .price {
        font-size: 32px;
    }
    
    .help-container h2 {
        font-size: 24px;
    }
    
    .help-icon {
        width: 60px;
        height: 60px;
    }
    
    .help-icon i {
        font-size: 26px;
    }
    
    .deal-card h4 {
        font-size: 16px;
    }
    
    .deal-card .monthly {
        font-size: 18px;
    }
}

/* Utility Classes */
.hero-subtitle {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px 0;
}

.icon-teal {
    color: #461bd9;
}

.info-icon {
    color: #461bd9;
    cursor: pointer;
    margin-left: 5px;
}

.hidden {
    display: none;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

/* SweetAlert2 must render above signup/login modals */
.swal2-container {
    z-index: 30000 !important;
}

/* Pop-in animation for signup result icon */
@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.modal-overlay[style*="display: block"],
.modal-overlay[style*="display: flex"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    font-weight: 400;
    color: #461bd9;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 255, 0.9) 100%);
    border: 2px solid rgba(70, 27, 217, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20002;
}

.modal-close:hover {
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    color: white;
    border-color: #461bd9;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(70, 27, 217, 0.25);
}

.modal-title {
    color: #461bd9;
    margin: 0;
    padding: 25px 20px 0 20px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-text {
    color: #555;
    line-height: 1.6;
    padding: 15px 20px 20px 20px;
    font-size: 15px;
}

.modal-text p {
    margin: 15px 0;
}

.modal-highlight {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.05) 0%, rgba(70, 27, 217, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid #461bd9;
    color: #461bd9;
    font-weight: 600;
    font-size: 14px;
}

/* Startup Modal Specific Styles */
.plan-details {
    padding: 0;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.05) 0%, rgba(70, 27, 217, 0.02) 100%);
    border-radius: 12px;
}

.plan-price h4 {
    font-size: 32px;
    font-weight: 700;
    color: #461bd9;
    margin: 0 0 5px 0;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price h4 span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.setup-fee {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.total-first-month {
    color: #461bd9;
    font-size: 14px;
    margin: 8px 0 0 0;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.05) 0%, rgba(70, 27, 217, 0.02) 100%);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #461bd9;
}

.total-first-month strong {
    color: #461bd9;
    font-size: 16px;
    font-weight: 700;
}

.plan-includes {
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(70, 27, 217, 0.1);
    backdrop-filter: blur(10px);
}

.plan-includes h5 {
    color: #461bd9;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #461bd9;
    position: relative;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-includes h5::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    border-radius: 2px;
}

.plan-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.plan-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(70, 27, 217, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.plan-includes li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-includes li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 27, 217, 0.15);
    border-color: rgba(70, 27, 217, 0.2);
    background: rgba(255, 255, 255, 1);
}

.plan-includes li:hover::before {
    opacity: 1;
}

.plan-includes li i {
    color: #461bd9;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.1) 0%, rgba(70, 27, 217, 0.05) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plan-includes li:hover i {
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(70, 27, 217, 0.3);
}

.plan-features {
    margin-bottom: 25px;
}

.plan-features h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #461bd9;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.plan-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.plan-actions .plan-btn {
    flex: 1;
    max-width: 140px;
}

.modal-close-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #e9ecef;
    color: #333;
    border-color: #ccc;
}

/* Office Locations Styles */
.office-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 15px;
}

.office-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.office-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
    text-align: center;
    color: white;
}

.office-icon {
    width: 50px;
    height: 50px;
    background: #461bd9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.office-header h4 {
    font-size: 19px;
    margin: 0 0 6px 0;
    color: white;
}

.office-badge {
    display: inline-block;
    background: rgba(70, 27, 217, 0.2);
    color: #461bd9;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.office-details {
    padding: 18px;
}

.office-detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.office-detail-item i {
    color: #461bd9;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.office-detail-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
    margin-bottom: 5px;
}

.office-detail-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.office-btn {
    width: calc(100% - 36px);
    margin: 0 18px 18px;
    padding: 11px;
    background: #461bd9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.office-btn:hover {
    background: #3a1599;
}

.office-footer-note {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

.office-footer-note i {
    color: #461bd9;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .office-locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.error-box {
    background: #ff4444;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-email-text {
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.modal-email-address {
    font-size: 18px;
    color: #461bd9;
    font-weight: 600;
    margin: 15px 0;
}

.modal-email-subtext {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.modal-detail-text {
    font-size: 16px;
}

.modal-detail-highlight {
    color: #461bd9;
}

/* Calculator Modal Styles */
.calculator-form {
    padding: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #461bd9;
    box-shadow: 0 0 0 3px rgba(70, 27, 217, 0.1);
}

.calculated-price {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.05) 0%, rgba(70, 27, 217, 0.02) 100%);
    border-radius: 12px;
}

.calculated-price h4 {
    font-size: 22px;
    font-weight: 700;
    color: #461bd9;
    margin: 0 0 10px 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #461bd9;
    background: linear-gradient(135deg, #461bd9 0%, #3a1599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.calculator-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.calculator-actions .plan-btn {
    flex: 1;
    max-width: 140px;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-text {
        padding: 10px 15px 15px 15px;
    }
    
    .plan-includes {
        padding: 12px;
    }
    
    .plan-includes li {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .calculated-price {
        padding: 12px;
    }
    
    .calculated-price h4 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-width: 98%;
        border-radius: 15px;
    }
    
    .modal-text {
        padding: 8px 12px 12px 12px;
    }
    
    .plan-includes ul {
        gap: 6px;
    }
    
    .plan-includes li {
        padding: 6px 10px;
        gap: 10px;
    }
    
    .calculator-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .calculator-actions .plan-btn {
        max-width: none;
    }
}

/* Clean Modal - Simplified Design */
.clean-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(70, 27, 217, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(70, 27, 217, 0.15);
    max-width: 500px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.clean-modal-header {
    text-align: center;
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    color: white;
    position: relative;
}

.clean-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.clean-modal-icon i {
    font-size: 28px;
    color: white;
}

.clean-modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.clean-features-grid {
    display: grid;
    gap: 20px;
    padding: 30px;
}

.clean-feature-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(70, 27, 217, 0.08);
    border: 1px solid rgba(70, 27, 217, 0.1);
    transition: all 0.3s ease;
}

.clean-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 27, 217, 0.15);
    border-color: rgba(70, 27, 217, 0.2);
}

.clean-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.clean-feature-icon i {
    font-size: 20px;
    color: white;
}

.clean-feature-content h4 {
    margin: 0 0 4px 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

.clean-feature-content p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    font-weight: 400;
}

.clean-modal-cta {
    padding: 0 30px 30px 30px;
}

.clean-cta-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(70, 27, 217, 0.3);
}

.clean-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 27, 217, 0.4);
}

.clean-cta-button i {
    font-size: 18px;
}

/* Clean Modal Title - Must come after general modal-title rules */
.clean-modal .modal-title {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: none;
}

/* Login Modal Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(70, 27, 217, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(70, 27, 217, 0.4);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal overlay fade in effect */
.modal-overlay {
    animation: fadeIn 0.3s ease;
}

/* Input focus glow effect */
input:focus {
    outline: none;
}

/* ==========================================
   Local Chat Widget (Homepage)
   ========================================== */
.chat-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99990;
    font-family: inherit;
}

.chat-fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    box-shadow: 0 16px 40px rgba(70, 27, 217, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.chat-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(70, 27, 217, 0.42);
}

.chat-fab:active {
    transform: translateY(0);
    opacity: 0.95;
}

.chat-fab-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-size: 13px;
}

.chat-fab-text {
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 12px;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 56px;
    width: 380px;
    max-width: min(380px, calc(100vw - 24px));
    height: 540px;
    max-height: min(540px, calc(100vh - 120px));
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.22);
    overflow: hidden;
    border: 1px solid rgba(70, 27, 217, 0.12);
    display: flex;
    flex-direction: column;
}

/* `hidden` must always win (author styles override UA defaults) */
.chat-panel[hidden] {
    display: none !important;
}

.chat-panel-header {
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(70, 27, 217, 0.12) 0%, rgba(108, 92, 231, 0.10) 100%);
    border-bottom: 1px solid rgba(70, 27, 217, 0.10);
}

.chat-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-panel-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    box-shadow: 0 10px 26px rgba(70, 27, 217, 0.30);
}

.chat-panel-name {
    font-weight: 900;
    color: #1a1a2e;
    font-size: 14px;
    line-height: 1.1;
}

.chat-panel-sub {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.chat-panel-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-panel-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.85);
    cursor: pointer;
    color: #461bd9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
}

.chat-panel-btn:hover {
    transform: translateY(-1px);
    background: #fff;
}

.chat-panel-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.chat-msg {
    display: flex;
    margin-bottom: 10px;
}

.chat-msg.user {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}

.chat-msg.user .chat-bubble {
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.chat-msg.bot .chat-bubble {
    background: #f1f3ff;
    color: #1a1a2e;
    border: 1px solid rgba(70, 27, 217, 0.10);
    border-bottom-left-radius: 6px;
    font-weight: 600;
}

/* Keep all bot content visually consistent (text, lists, cards, how-it-works) */
.chat-msg.bot .chat-bubble * {
    font-family: inherit;
}

.chat-msg.bot .chat-bubble ol,
.chat-msg.bot .chat-bubble ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.chat-msg.bot .chat-bubble li {
    margin: 4px 0;
}

.chat-msg.bot .chat-bubble .chat-cards {
    margin-top: 2px;
}

.chat-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(70, 27, 217, 0.55);
    animation: chatDot 1.2s infinite;
}

.chat-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatDot {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
    40% { transform: translateY(-3px); opacity: 0.95; }
}

.chat-panel-footer {
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(70, 27, 217, 0.10);
    background: #fff;
}

.chat-inline-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.chat-inline-quick-grid .chat-chip {
    width: 100%;
    text-align: center;
}


.chat-chip {
    border: 1px solid rgba(70, 27, 217, 0.18);
    color: #461bd9;
    background: rgba(70, 27, 217, 0.06);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.chat-chip:hover {
    transform: translateY(-1px);
    background: rgba(70, 27, 217, 0.10);
}

.chat-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(70, 27, 217, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f5f6ff 100%);
}

.chat-input-row:focus-within {
    border-color: rgba(70, 27, 217, 0.38);
    box-shadow: 0 10px 26px rgba(70, 27, 217, 0.12);
}

.chat-input {
    flex: 1;
    resize: none;
    border-radius: 12px;
    border: none;
    background: transparent;
    padding: 8px 8px;
    font-size: 13px;
    line-height: 1.35;
    min-height: 36px;
    max-height: 96px;
    outline: none;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
    box-shadow: 0 10px 24px rgba(70, 27, 217, 0.26);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.chat-send:hover {
    transform: translateY(-1px);
}

.chat-send:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.chat-small {
    margin-top: 6px;
    color: #777;
    font-size: 11px;
}

.chat-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.chat-card {
    border: 1px solid rgba(70, 27, 217, 0.14);
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 10px 10px;
}

.chat-topup-card {
    border-color: rgba(70, 27, 217, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(241,243,255,0.96) 100%);
}

.chat-howitworks {
    display: grid;
    gap: 8px;
    width: 100%;
}

.chat-howitworks-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: #1a1a2e;
    font-size: 13px;
}

.chat-howitworks-title i {
    color: #461bd9;
}

.chat-howitworks-sub {
    font-weight: 900;
    color: #461bd9;
    font-size: 12px;
}

.chat-howitworks-steps {
    margin: 0;
    padding-left: 18px;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
}

.chat-howitworks-steps li {
    margin: 6px 0;
    padding-left: 6px;
}

.chat-howitworks-steps li i {
    color: #461bd9;
    margin-right: 8px;
}

.chat-howitworks-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.chat-howitworks-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(70, 27, 217, 0.14);
    background: rgba(70, 27, 217, 0.06);
    color: #1a1a2e;
    font-weight: 800;
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 12px;
}

.chat-howitworks-chip i {
    color: #461bd9;
}

@media (max-width: 420px) {
    .chat-howitworks-features {
        grid-template-columns: 1fr;
    }
}

.chat-card-title {
    font-weight: 900;
    color: #1a1a2e;
    font-size: 13px;
    margin-bottom: 4px;
}

.chat-card-meta {
    color: #461bd9;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 6px;
}

.chat-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 8px;
}

.chat-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(26, 26, 46, 0.12);
    background: rgba(26, 26, 46, 0.05);
    color: #1a1a2e;
    font-weight: 900;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 999px;
    line-height: 1;
}

.chat-card-desc {
    color: #444;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 8px;
}

.chat-card-list {
    margin: 0;
    padding-left: 16px;
    color: #333;
    font-size: 12px;
}

.chat-card-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.chat-card-btn {
    border: 1px solid rgba(70, 27, 217, 0.18);
    background: rgba(70, 27, 217, 0.08);
    color: #461bd9;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.chat-form {
    display: grid;
    gap: 10px;
    width: 100%;
}

.chat-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.chat-form input {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 10px 10px;
    font-size: 13px;
    width: 100%;
    min-width: 0;
}

@media (max-width: 420px) {
    .chat-form-row {
        grid-template-columns: 1fr;
    }
}

.chat-form-actions {
    display: flex;
}

.chat-form-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #461bd9 0%, #6c5ce7 100%);
}

.chat-form-note {
    font-size: 11px;
    color: #777;
}

.chat-domain {
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
}

.chat-domain.ok {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: rgba(40,167,69,0.35);
}

.chat-domain.bad {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border-color: rgba(220,53,69,0.35);
}

.chat-domain-title {
    font-weight: 1000;
    color: #1a1a2e;
    font-size: 13px;
    margin-bottom: 2px;
}

.chat-domain-sub {
    font-size: 12px;
    color: #333;
}

@media (max-width: 480px) {
    .chat-widget { right: 12px; bottom: 12px; }
    .chat-panel {
        width: calc(100vw - 24px);
        height: min(560px, calc(100vh - 110px));
    }
    .chat-fab-text { display: none; }
}

