* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0c0c0c;
    color: #fff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: #111;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: gold;
}

nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

/* Hero */
.hero {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #000, #222);
}

.hero h1 {
    font-size: 40px;
    color: gold;
}



.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}
.hero img {
    width: 100%;
}    

/* Services */
.services {
    padding: 50px;
    text-align: center;
}

.service-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Profiles */
.profiles {
    text-align: center;
}

.card {
    display: inline-block;
    background: #111;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    height:100%;
}

.card img {
    width: 110%;
    height:180%;
}

.call, .whatsapp {
    display: block;
    margin: 10px 0;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
}

.call {
    background: red;
    color: #fff;
}

.whatsapp {
    background: green;
    color: #fff;
}

/* CTA */
.cta {
    text-align: center;
    padding: 50px;
    background: #111;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
}
.content{
    padding:80px 20px;
    background:#0d0d0d;
}

.content .container{
    max-width:1000px;
    margin:auto;
}

.content h2{
    color:gold;
    margin-top:30px;
    margin-bottom:10px;
}

.content p{
    color:#ccc;
    line-height:1.7;
    margin-bottom:15px;
}
.internal-links{
    padding:70px 20px;
    background:#0b0b0b;
    text-align:center;
}

.internal-links h2{
    color:gold;
    margin-bottom:10px;
}

.internal-links p{
    color:#aaa;
    margin-bottom:30px;
}

.links-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:15px;
    max-width:1000px;
    margin:auto;
}

.links-grid a{
    background:#111;
    padding:15px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
    border:1px solid #222;
}

.links-grid a:hover{
    background:gold;
    color:#000;
    transform:translateY(-5px);
}
.other-locations{
    padding:70px 20px;
    background:#080808;
    text-align:center;
}

.other-locations h2{
    color:gold;
    margin-bottom:10px;
}

.other-locations p{
    color:#aaa;
    margin-bottom:30px;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:15px;
    max-width:1000px;
    margin:auto;
}

.location-grid a{
    background:#111;
    padding:14px;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    border:1px solid #222;
    transition:0.3s;
}

.location-grid a:hover{
    background:gold;
    color:#000;
    transform:scale(1.05);
}
/* PRICING SECTION */
.pricing-section{
    padding:60px 20px;
    text-align:center;
    background:#000;
    color:#fff;
}

.pricing-section h2{
    color:#ff4d6d;
    margin-bottom:30px;
}

/* GRID */
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* CARD */
.price-card{
    background:#111;
    padding:20px;
    border-radius:12px;
    border:2px solid #ff4d6d;
    transition:0.3s;
}

.price-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px #ff4d6d;
}

.price-card h3{
    color:gold;
}

.price{
    font-size:20px;
    margin:10px 0;
}

/* LIST */
.price-card ul{
    text-align:left;
    margin:10px 0;
}

/* BUTTON */
.price-card button{
    margin-top:10px;
    padding:10px 20px;
    background:gold;
    border:none;
    cursor:pointer;
    font-weight:bold;
}

/* VIP Highlight */
.premium{
    border-color:gold;
    box-shadow:0 0 20px gold;
}
.pricing{
    padding:50px;
    background:#000;
    color:#fff;
    text-align:center;
}

.price-box{
    border:1px solid #ff4d6d;
    padding:20px;
    margin:15px;
    border-radius:10px;
}

.price{
    color:gold;
    font-size:20px;
    margin:10px 0;
}