/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #06a8ff, #00b7ff, #00d0ff);
    min-height: 100vh;
    padding-top: 80px !important;
    overflow-x: hidden;
    /* Prevent image download via drag & drop */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable right-click context menu on images */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    /* Add overlay to prevent easy copying */
    position: relative;
}

/* Image protection overlay */
img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* ===== LOGIN MODAL STYLES ===== */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.show {
    opacity: 1;
}

.login-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-login-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-login-modal:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-header h2 {
    color: #1a202c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    color: #718096;
    font-size: 16px;
    line-height: 1.5;
}

.auth-tabs {
    display: flex;
    background: #f7fafc;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 25px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    color: #718096;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: white;
    color: #4299e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-tab:hover:not(.active) {
    color: #2d3748;
    background: rgba(255, 255, 255, 0.5);
}

.login-modal .auth-form {
    display: none;
}

.login-modal .auth-form.active {
    display: block;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-google {
    background: white;
    color: #444;
    border-color: #e2e8f0;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}

.btn-apple {
    background: #000;
    color: white;
}

.btn-apple:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-social svg {
    margin-right: 10px;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #a0aec0;
    font-size: 14px;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.separator span {
    padding: 0 15px;
}

.login-modal input[type="email"],
.login-modal input[type="password"],
.login-modal input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
}

.login-modal input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.15);
    outline: none;
}

.modal-terms {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #718096;
    font-size: 13px;
}

.modal-terms a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.modal-terms a:hover {
    text-decoration: underline;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer p {
    margin: 8px 0;
    color: #718096;
    font-size: 14px;
}

.form-footer .link-btn {
    color: #4299e1;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

.form-footer .link-btn:hover {
    text-decoration: underline;
}


/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #010436;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
    height: 80px;
    transform: translateZ(0);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 0;
    gap: 2rem;
    flex-wrap: nowrap;
    position: relative;
}

#navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: 120px;
    text-decoration: none;
}

#navbar__logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.branding-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* ===== UPDATED SEARCH CONTAINER ===== */
.search-container {
    flex: 1 1 300px;
    display: flex;
    min-width: 150px;
    max-width: 400px;
    transition: all 0.3s ease;
    margin-left: -30px;
    position: relative;
    align-items: center;
}

.search-container input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-right: none;
    border-radius: 20px 0 0 20px;
    font-size: 0.9rem;
    min-width: 80px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
    position: relative;
    z-index: 2;
}

.search-container input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-container button {
    padding: 0.75rem 1.5rem;
    background: #0011ff;
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.search-container button:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}

.search-placeholder-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.search-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.search-placeholder-text.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: gentlePulse 4s ease-in-out infinite;
}

.search-placeholder-text.hide {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-10px) scale(0.95);
}

.search-placeholder-text .search-label {
    color: #6c757d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.search-placeholder-text .separator {
    color: #718096;
    margin: 0 6px;
    font-weight: 400;
}

.search-placeholder-text .category {
    color: #3182ce;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-container input::placeholder {
    color: transparent;
}

.search-container input.has-focus~.search-placeholder-wrapper {
    opacity: 0.6;
}

@keyframes gentlePulse {

    0%,
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.search-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    margin-top: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-header {
    padding: 10px 20px;
    font-weight: bold;
    color: #555;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem;
}

.search-info {
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    margin: 1rem 0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-info span {
    font-weight: 500;
    color: #1976d2;
}

.clear-search-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: #c82333;
}

.search-highlight {
    background-color: rgba(66, 153, 225, 0.3);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
    color: #2c5282;
}

.quick-search {
    background: #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
}

.quick-search:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 7rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #00fff2;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a[href*="packages.php"] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a[href*="packages.php"] .crown {
    font-size: 1.2rem;
    margin-right: 4px;
    margin-top: -2px;
}

/* ===== NAVBAR RIGHT SIDE ===== */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.ai-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: rgb(234, 0, 0);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 200;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 20px;
    margin-right: 150px;
}

.ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ai-btn:hover .ai-icon {
    transform: scale(1.1);
    background: #f8f9fa;
}

.ai-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 150px;
}

.blog-btn::before {
    content: "B";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
    font-size: 25px;
}

.blog-btn:hover {
    background-color: #3367D6;
    transform: translateY(-1px);
}

.blog-btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .navbar-right {
        display: none !important;
    }
}

/* ===== MOBILE NAVIGATION ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    z-index: 9998;
    position: relative;
}

.hamburger:hover {
    transform: scale(1.1);
    color: #f0f0f0;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 80, 208, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 2rem;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    transform: translateX(0);
    display: flex;
}

.close-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53, #FFD166);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-btn::before {
    content: "←";
    font-size: 1.2rem;
    font-weight: bold;
}

.close-btn::after {
    content: "Back Home";
}

.close-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FF5252, #FF7B3D, #FFC857);
}

.close-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.mobile-nav li {
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.active li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.active li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.active li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.mobile-nav li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav li a[href*="packages.php"] {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-nav li a[href*="packages.php"]:hover {
    background: rgba(255, 215, 0, 0.25);
}

.crown {
    font-size: 1.3rem;
}

.ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        margin-left: -80px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .close-btn {
        padding: 10px 20px;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
    }

    .close-btn::after {
        content: "Home";
    }
}

@media screen and (max-width: 360px) {
    .close-btn {
        padding: 10px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .close-btn::after {
        content: "";
    }

    .close-btn::before {
        content: "←";
        font-size: 1.5rem;
        margin: 0;
    }
}

.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav.active::before {
    opacity: 1;
}

.close-btn.blue {
    background: linear-gradient(135deg, #2196F3, #21CBF3);
}

.close-btn.blue:hover {
    background: linear-gradient(135deg, #1976D2, #00B0FF);
}

.close-btn.green {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.close-btn.green:hover {
    background: linear-gradient(135deg, #388E3C, #689F38);
}

.close-btn.purple {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.close-btn.purple:hover {
    background: linear-gradient(135deg, #7B1FA2, #512DA8);
}

.mobile-nav,
.mobile-nav * {
    z-index: 9999 !important;
}

.close-btn {
    z-index: 10000 !important;
}

/* ===== USER ACCOUNT AREA ===== */
#accountArea {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2000;
    margin: 0;
}

#accountBtn {
    background: linear-gradient(135deg, #007bff, #0056d2);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

#accountBtn:hover {
    background: linear-gradient(135deg, #0056d2, #0041a8);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-avatar {
    display: flex;
    align-items: center;
    background: none;
    padding: 1px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    margin-top: -4px;
}

.profile-avatar:hover {
    background: #e9ecef;
}

.profile-avatar .avatar-letter {
    background: #25fe09ca;
    color: #fffb00;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 8px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 20px;
    min-width: 280px;
    width: 350px;
    display: none;
    animation: slideDown 0.2s ease-out;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dropdown-menu.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu .user-info {
    padding: 0 0 16px 0;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 16px;
    font-size: 14px;
    color: #2d3748;
    line-height: 1.5;
}

.dropdown-menu .user-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.dropdown-menu .user-info small {
    font-size: 13px;
    color: #718096;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #2b6cb0;
    transform: translateX(4px);
}

.dropdown-menu a:active {
    background: #edf2f7;
    transform: translateX(2px);
}

/* ===== AUTH FORM ===== */
.auth-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #f1f5f9;
}

.auth-form h4 {
    margin: 0 0 8px 0;
    color: #1a202c;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.auth-form .form-subtitle {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #2d3748;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
    margin-bottom: 0;
}

.auth-form input::placeholder {
    color: #000000;
    font-weight: 400;
}

.auth-form input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.15);
    outline: none;
    background: #fafcff;
}

.auth-form input:hover {
    border-color: #cbd5e0;
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 4px;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(66, 153, 225, 0.4);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.3);
}

.auth-form p {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.link-btn {
    background: none;
    border: none;
    color: #4299e1;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: inherit;
}

.link-btn:hover {
    color: #3182ce;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-btn:focus {
    outline: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-google {
    width: 100%;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* space between Google logo and text */
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn-google:hover {
    background-color: #f8f8f8;
    border-color: #c6c6c6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #444;
    transform: translateY(-1px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Optional: Google "G" icon inside button */
.btn-google .google-icon {
    width: 18px;
    height: 18px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center;
    background-size: contain;
}


.social-login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 4px 0;
    color: #666;
    font-size: 13px;
}

.social-login-separator::before,
.social-login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.social-login-separator span {
    padding: 0 8px;
}

#logoutBtn {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: inherit;
    margin-top: 12px;
}

#logoutBtn:hover {
    background: #fed7d7;
    border-color: #fc8181;
    color: #c53030;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 215, 215, 0.4);
}

#logoutBtn:active {
    transform: translateY(0);
}

#logoutBtn:focus {
    outline: none;
    border-color: #fc8181;
    box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.2);
}

.auth-form .form-footer {
    text-align: center;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid #f0f2f5;
}

.auth-form .form-footer p {
    margin: 12px 0 0 0;
    font-size: 13px;
}

.auth-form .form-footer .link-btn {
    font-size: 13px;
}

.plans-btn {
    background: linear-gradient(135deg, #0078ff, #00c6ff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 10px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 120, 255, 0.25);
}

.plans-btn:hover {
    background: linear-gradient(135deg, #005fcc, #0090ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 120, 255, 0.35);
}

.plans-btn .crown {
    font-size: 1.1rem;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: none;
    padding: 1.5rem;
    position: relative;
    z-index: 999;
    width: 100%;
    margin-top: -20px;
    flex-wrap: nowrap;
}

.cta-buttons .btn {
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    border: none;
    max-height: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgb(255, 255, 255);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-client {
    background: #0b034f;
    color: #fff;
}

.btn-client:hover {
    background: #06084d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-dashboard {
    background: #10b981;
    color: #fff;
}

.btn-dashboard:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* ===== TOASTS ===== */
#toastContainer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2600;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    opacity: 0.95;
    animation: fadeInOut 3s ease forwards;
    z-index: 9999;
    transform: translateX(8px);
    opacity: 0;
    transition: all 300ms ease;
}

.toast.show {
    transform: none;
    opacity: 1;
}

@keyframes fadeInOut {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    10%,
    90% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===== UTILITIES ===== */
.close-1btn {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.navbar-spacer {
    height: 80px;
    width: 100%;
}

/* ===== COMPACT AVATAR STYLES ===== */
.profile-avatar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 18px;
    transition: background-color 0.3s ease;
    font-family: inherit;
    color: #333;
    min-width: auto;
}

.profile-avatar:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.user-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.avatar-letter {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid #333;
    flex-shrink: 0;
}

#userMenuName {
    color: #ffffff;
    font-weight: 500;
    display: inline !important;
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

/* ===== AUTH MESSAGE STYLES ===== */
.auth-message {
    padding: 10px 12px;
    margin: 10px 0 15px 0;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.auth-message-error {
    background-color: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.auth-message-success {
    background-color: #dfd;
    color: #080;
    border: 1px solid #afa;
}

.auto-registered-badge {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.user-type-badge {
    display: inline-block;
    margin-top: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #e8f4fc, #d4e8ff);
    color: #0066cc;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.btn-primary.loading:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

/* ===== FOOTER STYLES ===== */
.pg-footer {
    background: linear-gradient(135deg, #ff0000, #fff200, #eeff00, #00ff00);
    color: #000000;
    padding: 60px 20px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.pg-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.pg-footer-brand h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.pg-footer-brand p {
    opacity: 0.9;
    font-size: 15px;
}

.pg-footer-links h4,
.pg-footer-cta h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.pg-footer-links ul {
    list-style: none;
    padding: 0;
}

.pg-footer-links li {
    margin-bottom: 10px;
}

.pg-footer-links a {
    color: #000000;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.pg-footer-links a:hover {
    opacity: 1;
}

.pg-footer-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #ffffff;
    color: #E94560;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pg-footer-btn:hover {
    background: #E94560;
    color: #ffffff;
}

.pg-footer-bottom {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    opacity: 0.9;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Medium screens */
@media (max-width: 1024px) {
    .navbar__container {
        gap: 1.5rem;
        padding: 0.75rem 0;
    }

    .search-container {
        flex: 1 1 250px;
        max-width: 300px;
        margin-right: 150px;
    }

    .search-placeholder-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links li a {
        font-size: 0.95rem;
    }

    .branding-text {
        font-size: 1.1rem;
    }

    .login-modal-content {
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .navbar__container {
        gap: 1rem;
    }

    .search-container {
        flex: 1 1 200px;
        max-width: 300px;
        margin-right: 150px;
    }

    .search-placeholder-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .search-container input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .search-container button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
    }

    .ai-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-right: 100px;
    }

    .branding-text {
        font-size: 1rem;
    }
}

/* Tablet screens */
@media (max-width: 768px) {
    .site-header {
        padding: 0 15px;
    }

    .navbar__container {
        gap: 0.8rem;
    }

    .search-container {
        flex: 1 1 180px;
        max-width: 200px;
        min-width: 100px;
        margin-right: 150px;
    }

    .search-placeholder-wrapper {
        padding-left: 8px;
        padding-right: 8px;
        height: 20px;
    }

    .search-placeholder-text {
        font-size: 0.8rem;
    }

    .search-container input {
        padding: 0.9rem 0.9rem;
        min-width: 100px;
        font-size: 0.85rem;
    }

    .search-container button {
        padding: 0.7rem 1rem;
        max-width: 70px;
        font-size: 0.85rem;
    }

    #navbar__logo {
        min-width: 100px;
    }

    #navbar__logo img {
        height: 35px;
    }

    .branding-text {
        font-size: 0.9rem;
        margin-left: 0.3rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links li a {
        font-size: 0.85rem;
    }

    .ai-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    #accountArea {
        top: 8px;
        right: 15px;
    }

    #accountBtn {
        font-size: 13px;
        padding: 3px 10px;
    }

    .profile-avatar {
        padding: 1px 10px;
        font-size: 11px;
    }

    .profile-avatar .avatar-letter {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .login-modal-content {
        padding: 25px 20px;
        width: 95%;
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .social-login-buttons {
        flex-direction: column;
    }

    .btn-social {
        padding: 10px;
        font-size: 14px;
    }

    .ai-label {
        display: none;
    }

    .ai-btn {
        padding: 0.5rem 0.8rem;
        margin-right: 100px;
    }

    .ai-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .cta-buttons {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: row;
        overflow-x: auto;
        justify-content: center;
        margin-top: -5px;
    }

    .cta-buttons .btn {
        min-width: 140px;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .search-suggestions {
        width: 200%;
        right: -100%;
        max-height: 350px;
    }

    .search-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .clear-search-btn {
        align-self: flex-end;
    }

    .quick-search {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin: 3px;
    }

    .no-results {
        padding: 2rem 1rem;
        margin: 1rem;
    }
}

/* Small screens */
@media (max-width: 650px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .search-container {
        flex: 1 1 150px;
        max-width: 250px;
        min-width: 100px;
    }

    .search-placeholder-wrapper {
        padding-left: 6px;
        padding-right: 6px;
    }

    .navbar__container {
        gap: 0.5rem;
    }

    .search-container input {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .search-container button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .branding-text {
        display: none;
    }

    #accountArea {
        top: 8px;
        right: 15px;
    }

    #accountBtn {
        font-size: 12px;
        padding: 3px 10px;
    }

    .profile-avatar {
        padding: 1px 10px;
        font-size: 11px;
    }

    .profile-avatar .avatar-letter {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .modal-logo {
        width: 60px;
        height: 60px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-header p {
        font-size: 14px;
    }

    .auth-tabs {
        margin-bottom: 20px;
    }

    .auth-tab {
        padding: 10px;
        font-size: 14px;
    }

    .desktop-nav.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 15px;
    }

    .desktop-nav.mobile-active .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
    }

    .desktop-nav.mobile-active .nav-links li {
        border-bottom: 1px solid #e9ecef;
    }

    .desktop-nav.mobile-active .nav-links li:last-child {
        border-bottom: none;
    }

    .desktop-nav.mobile-active .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 1rem;
    }

    .ai-btn {
        padding: 0.4rem 0.8rem;
        margin-right: 80px;
    }

    .ai-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .cta-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.75rem;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: auto;
        font-size: 0.95rem;
        padding: 0.1rem 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .site-header {
        padding: 0 10px;
    }

    .navbar__container {
        gap: 0.5rem;
    }

    .search-container {
        flex: 1 1 120px;
        max-width: 180px;
        min-width: 80px;
    }

    .search-placeholder-wrapper {
        padding-left: 5px;
        padding-right: 5px;
        height: 18px;
    }

    .search-placeholder-text {
        font-size: 0.75rem;
    }

    .search-container input {
        padding: 0.6rem 0.8rem;
        min-width: 80px;
        font-size: 0.8rem;
    }

    .search-container button {
        padding: 0.6rem 0.8rem;
        max-width: 60px;
        font-size: 0.8rem;
    }

    #navbar__logo {
        min-width: 80px;
    }

    #navbar__logo img {
        height: 30px;
    }

    .login-modal-content {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .separator span {
        font-size: 12px;
    }

    .modal-terms {
        font-size: 11px;
    }

    .ai-btn {
        padding: 0.4rem 0.6rem;
        margin-right: 70px;
    }

    .ai-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .navbar-right {
        gap: 0.5rem;
    }

    #accountArea {
        top: 6px;
        right: 10px;
    }

    #accountBtn {
        font-size: 11px;
        padding: 2px 8px;
    }

    .profile-avatar {
        padding: 1px 8px;
    }

    .quick-search {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Mobile responsive - Keep name visible on all screens */
@media (max-width: 768px) {
    .profile-avatar {
        padding: 3px 6px;
        gap: 5px;
    }

    .user-avatar-img,
    .avatar-letter {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    #userMenuName {
        display: inline !important;
        font-size: 12px;
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .profile-avatar {
        padding: 2px 5px;
        gap: 4px;
    }

    .user-avatar-img,
    .avatar-letter {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    #userMenuName {
        display: inline !important;
        font-size: 11px;
        max-width: 70px;
    }
}

@media (max-width: 360px) {
    .profile-avatar {
        padding: 2px 4px;
        gap: 3px;
    }

    .user-avatar-img,
    .avatar-letter {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    #userMenuName {
        display: inline !important;
        font-size: 10px;
        max-width: 60px;
    }

    .ai-btn {
        padding: 0.3rem 0.5rem;
        margin-right: 3px;
    }

    .ai-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

@media screen and (max-width: 768px) {
    .pg-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 480px) {
    .pg-footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pg-footer-btn {
        width: 100%;
        text-align: center;
    }
}