/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    background-color: #000;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Forum', display;
    color: #ffd966;

    @media (max-width: 767px) {
    /*text-align: left;*/
    font-size: 29px;
    }
}

h1 {
    font-size: 45px;
    font-weight: 700;
}
h2 {
    font-size: 35px;
    font-weight: 700;
}
h3 {
    font-size: 30px;
    font-weight: 600;
}

strong {
    color: #ffd966;
}

/* ========================================
   HEADER - YELLOW BACKGROUND
   ======================================== */
.header-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFB300 100%);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 3px solid #1a3c8a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-yellow .domain-name {
 /*   font-size: 32px;*/
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0033cc 0%, #0066ff 25%, #3399ff 50%, #0066ff 75%, #0033cc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineBlue 3s linear infinite;
    transition: all 0.3s ease;
}

.header-yellow .domain-name:hover {
/*    transform: scale(1.03);
    text-shadow: 0 0 20px rgba(0,102,255,0.8);*/
}

@keyframes shineBlue {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@media (max-width: 576px) {
    .header-yellow .domain-name {
        font-size: 20px;
        padding: 5px 10px;
    }
}

/* ========================================
   MODELS CARDS - EXACT SAME AS ELEMENTOR
   ======================================== */
.model-list-item {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.model-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.model-list-item .model-img img {
    /*max-width: 150px;
    max-height: 200px;*/
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ff4081;
}

.model-list-item .model-details h3 {
    font-size: 20px;
    color: #ff4081;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.model-list-item .rating {
    color: gold;
    font-weight: bold;
    margin-left: 8px;
}

.model-list-item .model-details p {
    margin: 12px 0;
    font-size: 14px;
    color: #ffffff;
}

/* Keywords - Only text color change, NO background */
.model-list-item .model-details p a {
    color: #ff80ab;
    text-decoration: none;
    background: transparent !important;
    padding: 0;
    margin: 0;
}

.model-list-item .model-details p a:hover {
    color: #ff4081;
    text-decoration: underline;
    background: transparent !important;
}

.model-list-item .price {
    color: #00e676;
    font-weight: bold;
}

.model-list-item .bio {
    color: #ddd;
    font-size: 14px;
    margin-top: 6px;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    color: #ffcc00;
    font-size: 2.2rem;
    border-left: 5px solid #ffcc00;
    padding-left: 20px;
    margin: 40px 0 25px;
}


/* ========================================
   CONTENT TEXT
   ======================================== */
.content-text {
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
}

.content-text p {
    margin-bottom: 20px;
}


/* ========================================
   PAGINATION
   ======================================== */
.pagination-custom .btn-pag {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 8px 18px;
    margin: 0 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.pagination-custom .btn-pag:hover {
    background: #ff4081;
}

.pagination-custom .btn-pag.active {
    background: #ffcc00;
    color: #000;
}

/* ========================================
   STICKY FOOTER
   ======================================== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.sticky-footer a {
    width: 50%;
    text-align: center;
    padding: 14px 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.sticky-footer a:hover {
    opacity: 0.85;
    text-decoration: none;
}

.sticky-footer .call-btn {
    background: #007bff;
}

.sticky-footer .whatsapp-btn {
    background: #25D366;
}

/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer {
    background: #070707;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }
    .model-list-item .model-img img {
        max-width: 120px;
        max-height: 160px;
    }
}

@media (max-width: 576px) {
    .sticky-footer a {
        font-size: 15px;
        padding: 12px 8px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .model-list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .model-list-item .model-img img {
        max-width: 100%;
        max-height: 250px;
        margin-right: 0;
        margin-bottom: 12px;
    }
}

/* ============================================================
   STICKY FOOTER - LEFT SIDE (All Devices - Desktop/Tablet/Mobile)
   ============================================================ */
.sticky-footer-left {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99999;
    background: transparent !important;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.sticky-footer-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Left Side - Call Button */
.sticky-footer-left .call-btn {
    background: rgba(0, 123, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.sticky-footer-left .call-btn:hover {
    transform: scale(1.12);
    background: rgba(0, 123, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 123, 255, 0.6);
}

/* Left Side - WhatsApp Button */
.sticky-footer-left .whatsapp-btn {
    background: rgba(37, 211, 102, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.sticky-footer-left .whatsapp-btn:hover {
    transform: scale(1.12);
    background: rgba(37, 211, 102, 0.9);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation - Left Side */
.sticky-footer-left a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulseRing 2s ease-out infinite;
}

.sticky-footer-left a:nth-child(2)::after {
    animation-delay: 0.6s;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================================
   STICKY FOOTER - BOTTOM (Tablet & Mobile Only)
   ============================================================ */
.sticky-footer-bottom {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* HIDE ON DESKTOP - Show only on Tablet & Mobile */
    display: none !important;
}

/* Show Bottom Footer ONLY on Tablet and Mobile */
@media (max-width: 1024px) {
    .sticky-footer-bottom {
        display: flex !important;
    }
}

.sticky-footer-bottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Bottom - Call Button */
.sticky-footer-bottom .call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.sticky-footer-bottom .call-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 25px rgba(0, 123, 255, 0.7);
}

/* Bottom - WhatsApp Button */
.sticky-footer-bottom .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.sticky-footer-bottom .whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
}

/* Pulse Animation - Bottom */
.sticky-footer-bottom a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseRingBottom 2s ease-out infinite;
}

.sticky-footer-bottom a:nth-child(2)::after {
    animation-delay: 0.5s;
}

@keyframes pulseRingBottom {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE - Left Side
   ============================================================ */
@media (max-width: 1024px) {
    .sticky-footer-left {
        left: 12px;
        gap: 12px;
    }
    
    .sticky-footer-left a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .sticky-footer-left {
        left: 10px;
        gap: 10px;
    }
    
    .sticky-footer-left a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .sticky-footer-left a::after {
        display: none; /* Mobile par pulse hatana */
    }
}

