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

html, body { 
    width: 100%;
    overflow-x: hidden; 
    max-width: 100%;
    background-color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #eeeeee; 
    line-height: 1.6; 
    text-align: center; 
}

/* LINK COLOR FIX: Isse saare links yellow rahenge */
a {
    color: #FFD700 !important;
    text-decoration: none;
}

a:visited {
    color: #FFD700 !important;
}

.container { 
    width: 92%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* --- HEADER & BRANDING --- */
header { 
    background: #000 !important; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 3px solid #e71d36; 
    padding: 25px 0; 
}

.brand-name a {
    font-size: 48px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFD700 !important; 
    letter-spacing: 2px;
    display: inline-block;
}

/* --- SECTIONS & TYPOGRAPHY --- */
.section { padding: 60px 0; border-bottom: 1px solid #1a1a1a; }

h1, h2, h3, h4 { 
    text-transform: uppercase; 
    margin-bottom: 30px; 
    color: #fff; 
    font-weight: 800; 
    text-align: center;
}

h1 span, h2 span { color: #e71d36; }

p { 
    margin-bottom: 20px; 
    color: #bbbbbb; 
    font-size: 18px; 
    max-width: 900px; 
    margin: 0 auto 20px auto; 
    text-align: center;
}

mark { background: none; color: #FFD700; font-weight: bold; }

/* --- IMAGES & GALLERIES --- */
img { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 8px; }

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    justify-items: center;
    margin-bottom: 30px;
}

.triple-img { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin-bottom: 30px;
}

.triple-img img { 
    width: 100%; 
    max-width: 380px; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border: 2px solid #222;
    border-radius: 10px;
}

/* Massive Pleasures (Vertical Style) */
.massive-pleasures { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center; 
}

.massive-pleasures img { 
    width: 100%; 
    max-width: 380px; 
    height: 500px; 
    object-fit: cover; 
    border-radius: 10px; 
}

.round-img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 5px solid #e71d36; margin: 0 auto 15px; display: block; }
.round-img-small { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid #e71d36; margin: 10px auto; display: block; }

/* --- STATS SECTION --- */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-top: 40px; 
}

.stat-item { 
    background: #161616; 
    padding: 25px; 
    border-radius: 15px; 
    border-top: 4px solid #e71d36; 
}

.stat-item h3 { 
    color: #e71d36; 
    font-size: 32px; 
    margin-bottom: 5px; 
}

/* --- TABLES & PRICING --- */
.price-tables { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; margin-top: 30px; }

.table-box { 
    background: #111; 
    padding: 25px; 
    border-radius: 15px; 
    border: 1px solid #333; 
    flex: 1; 
    min-width: 300px; 
}

table { width: 100%; border-collapse: collapse; margin-top: 15px; color: #fff; }
table td { padding: 12px; border-bottom: 1px solid #222; text-align: center; font-weight: 600; }

/* --- FOOTER --- */
footer { 
    background-color: #050a14 !important; 
    padding: 60px 0 30px; 
    border-top: 2px solid #101a2c; 
    text-align: center; 
}

.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.footer-col { flex: 1; min-width: 250px; }

.footer-col h4 {
    color: #FFD700 !important; 
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-col p, .footer-links a {
    color: #cbd5e0 !important; 
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #101a2c;
    color: #718096;
}

.footer-bottom a { color: #e71d36; font-weight: bold; text-decoration: none; }

/* --- FLOATING CONTACT BUTTONS --- */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.float-btn i { font-size: 35px !important; }
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #e71d36; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .brand-name a { font-size: 32px; }
    h1 { font-size: 26px; }
    p { font-size: 16px; }
    .footer-grid { display: block; }
    .footer-col { margin-bottom: 35px; }
    .float-btn { width: 60px; height: 60px; }
    .float-btn i { font-size: 32px !important; }
    .triple-img img { max-width: 100%; }
    .massive-pleasures img { height: 400px; }
}