* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-bg: #0b0f19; 
    --accent-color: #ff2e63; 
    --top-bar-bg: #16213e;
    --text-white: #ffffff;
    --text-dim: #aeb9cc;
}

h1, h2, h3, h4
{color:#FFFFFF}

h1{ font-size:24px; margin:5px 0;}
h2{ font-size:20px; margin:5px 0;}
h3{ font-size:20px;}
h4{ font-size:20px;}
h5{ font-size:20px;}

p{font-size:16px; line-height:26px;}
p span{color:#FFFF00; font-weight:bold}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: var(--top-bar-bg);
    padding: 6px 0;
    border-bottom: 1px solid #1f2937;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 12px;
}

.contact-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
}

.wa-link { color: #25D366 !important; }

/* Main Header */
.main-header {
    background-color: var(--primary-bg);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.highlight { color: var(--accent-color); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.btn-book {
    background: var(--accent-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-only { display: none; }

/* --- Responsiveness --- */

@media (max-width: 768px) {
    .container { padding: 0 10px; }  
    
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
    }

    .desktop-only { display: none; }
    .menu-toggle { display: block; }

    /* Mobile Menu Slide Down */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        padding: 0; /* No extra gaps */
        border-top: 1px solid #1f2937;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #1f2937;
    }

    .nav-links li a {
        display: block;
        padding: 12px;
        font-size: 16px;
    }

    .mobile-only {
        display: block;
        padding: 15px;
    }
}


/*------------*/

 
.premium-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
     
     background: url('image/bg.webp') no-repeat center center/cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

 
.premium-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

 
.main-title {
    font-size: clamp(32px, 6vw, 65px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.glow-text {
    color: #ff2e63;
    text-shadow: 0 0 20px rgba(255, 46, 99, 0.6);
}

.sub-title {
    font-size: clamp(28px, 5vw, 55px);
    color: #fff;
    margin-top: -10px;
    margin-bottom: 15px;
}

.experience-tag {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 40px;
}

 
.hero-action-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.call { background: #7c3aed; box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3); }
.wa { background: #25d366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

 
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.luxury-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2px;  
    transition: 0.4s;
    cursor: pointer;
}

.card-inner {
    background: #111827;
    border-radius: 22px;
    padding: 40px 20px;
    height: 100%;
    transition: 0.4s;
}

 
.luxury-card:hover {
    border-color: #ff2e63;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 46, 99, 0.3);
}

.luxury-card:hover .card-inner {
    background: linear-gradient(145deg, #ff2e63, #e11d48);
}

.gold-icon {
    font-size: 40px;
    color: #ff2e63;  
    margin-bottom: 20px;
    transition: 0.4s;
}

.luxury-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.luxury-card p { color: #94a3b8; font-size: 14px; transition: 0.4s; }

 
.luxury-card:hover .gold-icon,
.luxury-card:hover p {
    color: #fff;
}

 
@media (max-width: 992px) {
    .luxury-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 600px) {
    .premium-hero { padding: 40px 10px; }
    .luxury-grid { gap: 10px; }
    .card-inner { padding: 25px 10px; }
    .gold-icon { font-size: 30px; }
    .action-btn { width: 100%; justify-content: center; }
    .main-title { font-size: 35px; }
    .sub-title { font-size: 30px; }
}


 /*  --------  */
 
  
.main-body-content {
    background-color: #0f172a; 
    padding: 100px 0;
    border-top: 1px solid #ff2e63;  
}

.content-wrapper {
    max-width:1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-block {
    margin-bottom: 60px;
}

 
.body-title {
    font-size: clamp(20px, 3vw, 36px);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    color: #ff2e63;
}

.body-subtitle {
    font-size: 28px;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.body-text p {
    font-size: 16px;
    color: #94a3b8;  
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

 
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 46, 99, 0.3), transparent);
    margin: 40px 0;
}

 
.extra-services {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px dashed rgba(255, 46, 99, 0.3);
}

.accent-title {
    color: #ff2e63;
    font-size: 32px;
    margin-bottom: 10px;
}

.mini-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
}

.check-list li {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li i {
    color: #ff2e63;
}

 
@media (max-width: 768px) {
    .main-body-content {
        padding: 50px 0;  
    }

    .body-title {
        font-size: 28px;
    }

    .extra-services {
        padding: 20px;
    }

    .body-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}
  
/*-----*/  
  
 
 
.premium-gallery {
    padding: 60px 0;
    background: #000;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.gallery-heading {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.gold-text { color: #ffcc00; }

.heading-line {
    width: 60px;
    height: 3px;
    background: #ffcc00;
    margin: 0 auto 40px;
}

 
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 20px;
}

 
.profile-card {
    background: #000;
    border: 1.5px solid #ffcc00;  
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

 
.profile-card:hover {
    transform: translateY(-15px); 
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4);
}

.image-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card:hover .image-box img {
    transform: scale(1.1);  
    filter: brightness(0.7);
}

 
.profile-info {
    padding: 15px;
    text-align: left;
}

.name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.model-name {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.stars { color: #ffcc00; font-size: 12px; }

.city-tag {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    font-weight: 900;
    font-size: 11px;
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}

 
.age-button {
    background: #111;
    color: #ffcc00;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #333;
    transition: all 0.4s ease;
}

.profile-card:hover .age-button {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 0 15px #ffcc00;
}

 
.category-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: #ff2e63;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 2;
}

.image-stats {
    position: absolute;
    top: 10px; right: 10px;
    display: flex; gap: 5px;
    z-index: 2;
}

.image-stats span {
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

 
@media (max-width: 992px) {
    .profile-grid { grid-template-columns: repeat(2, 1fr); }  
}

@media (max-width: 500px) {
    .profile-grid { grid-template-columns: 1fr; } 
    .image-box { height: 350px; }
}

 
.load-more-container {
    text-align: center;
    margin-top: 50px; 
    padding-bottom: 40px;
}

.load-more-btn {
    display: inline-block;
    background-color: #ffcc00;  
    color: #000;  
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 45px;
    border-radius: 10px;  
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

 
.load-more-btn:hover {
    background-color: #000;  
    color: #ffcc00;  
    border-color: #ffcc00;  
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);  
}

 
@media (max-width: 768px) {
    .load-more-btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 80%;  
    }
}

/*--------*/
 .stress-relief-section {
    background-color: #000;  
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.relief-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px; 
}

 
.image-gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-item {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

 .grid-item:hover img {
    transform: scale(1.1);
}

 
.relief-content {
    flex: 1;
}

.relief-title {
    color: #ff2e63; 
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.relief-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
}

.relief-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

 
 
@media (max-width: 992px) {
    .relief-wrapper {
        flex-direction: column;  
        text-align: center;
    }
    
    .relief-text p {
        text-align: center;
    }

    .image-gallery-grid {
        width: 100%;
        max-width: 600px;
    }
}

 
@media (max-width: 600px) {
    .stress-relief-section {
        padding: 40px 15px;
    }

    .relief-title {
        font-size: 28px;
    }

    .relief-subtitle {
        font-size: 18px;
    }

    .grid-item {
        height: 150px;  
    }

    .image-gallery-grid {
        gap: 10px;
    }
}

/*-------------*/

 
.comparison-premium-updated {
     background:#0a0a2e; 
    padding: 100px 20px;
     color: #fff;
    position: relative;
}

 
.comparison-premium-updated::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    
    opacity: 0.3;
    pointer-events: none;
}

.comp-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.comp-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffcc00; 
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    text-transform: uppercase;
}

.vs-style { color: #fff; font-style: italic; opacity: 0.7; }

.title-bar {
    width: 80px;
    height: 4px;
    background: #ffcc00;
    margin: 0 auto 60px;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

 
.glow-card {
    background: rgba(255, 255, 255, 0.05);  
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px; 
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(15px);
}

.glow-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

 
.card-top {
    padding: 60px 20px;
}

.escort-theme .card-top {
    background: linear-gradient(45deg, #4b0082, #0000ff);
}

.relation-theme .card-top {
    background: linear-gradient(45deg, #d4145a, #fbab7e);
}

.icon-sphere {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-top h3 { font-size: 32px; margin-bottom: 10px; }
.card-top p { font-size: 14px; opacity: 0.8; }

 
.card-main {
    padding: 40px 30px;
}

.card-main ul { list-style: none; text-align: left; }

.card-main li {
    font-size: 16px;
    margin-bottom: 22px;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.4;
}

.card-main li i {
    color: #ffcc00;  
    margin-top: 4px;
}

 
.btn-glow {
    display: block;
    margin-top: 20px;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    transition: 0.4s;
    letter-spacing: 1.5px;
    text-align: center;
}

.purple-btn { background: #4b0082; box-shadow: 0 0 20px rgba(75, 0, 130, 0.5); }
.pink-btn { background: #d4145a; box-shadow: 0 0 20px rgba(212, 20, 90, 0.5); }

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    filter: brightness(1.3);
}

 
@media (max-width: 800px) {
    .comp-title { font-size: 32px; }
    .glow-card { margin: 0 5px; }
}


 /*-------------*/
 
 .dummy-content-section {
    background-color: #000000;  
    color: #ffffff;  
    padding: 60px 20px;
    min-height: 400px;
}

 
.title {
    color: #ff2e63;  
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.content-para {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;  
    text-align: justify;
}



/*----------*/

 
.location-section {
    background-color: #050505;  
    padding: 80px 20px;
   
    text-align: center;
}

.luxury-container {
    max-width: 1100px;
    margin: 0 auto;
}

.main-title {
  
    color: #ff2e63;  
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 300;
}

.description {
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

 
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

 
.loc-card {
    display: block;
    padding: 18px 10px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #333;
    border-radius: 50px;  
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

 
.loc-card:hover {
    color: #000;
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

 
.loc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F2D06B);
    transition: all 0.5s ease;
    z-index: -1;
}

.loc-card:hover::before {
    left: 0;
}

 
@media (max-width: 768px) {
    .main-title { font-size: 2rem; }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
}


/*------------*/

 
.rules-section {
    background-color: #0d1117;  
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.rules-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #161b22;  
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.rules-title {
    color: #f39c12;  
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

 
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

 
.rule-card {
    padding: 30px 15px;
    border-radius: 15px;
    color: #ffffff;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rule-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.rule-card h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

 
.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    filter: brightness(1.2);
}

 
.blue { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.green { background: linear-gradient(135deg, #065f46, #10b981); }
.red { background: linear-gradient(135deg, #991b1b, #ef4444); }
.purple { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }
.pink { background: linear-gradient(135deg, #9d174d, #ec4899); }
.indigo { background: linear-gradient(135deg, #3730a3, #6366f1); }
.orange { background: linear-gradient(135deg, #9a3412, #f97316); }
.teal { background: linear-gradient(135deg, #134e4a, #14b8a6); }

 
@media (max-width: 600px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rules-title { font-size: 1.8rem; }
}



/*-----------*/
 
.main-footer {
    background-color: #080a0f; 
    color: #ffffff;
    padding: 60px 0 20px 0;
 
    border-top: 2px solid #1a1e26;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

 
.footer-logo {
    
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo span {
    color: #ff2e63;  
}

.about-text {
    color: #a0a5b1;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

 
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #ff2e63;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0a5b1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ff2e63;
    padding-left: 5px;
}

 
.book-now a {
    color: #ff2e63 !important;
    font-weight: bold;
    text-transform: uppercase;
}

 
.social-icons a {
    color: #ffffff;
    background: #1a1e26;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ff2e63;
    transform: translateY(-5px);
}

 
.footer-bottom {
    border-top: 1px solid #1a1e26;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.disclaimer {
    margin-top: 5px;
    font-style: italic;
}

 
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff2e63;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 46, 99, 0.3);
}

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}



