:root {
    --gold-gradient: linear-gradient(145deg, #CCA859, #BB9348, #876729);
    --dark-bg: #0a0a0a;
    --text-gold: #CCA859;
    --text-light: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    font-weight: 700;
}

a {
    color: var(--text-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

header {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

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

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 3rem;
}

nav ul a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-text {
    background: none;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    margin-top: 22vh;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
}

.cta-button {
    background: var(--gold-gradient);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    color: #000;
}

#services, #pricing {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures the child link doesn't spill out */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card .card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card p {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    align-self: center;
}

.card-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
}

.card-link:hover {
    color: var(--text-light);
}

th img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.mobile-pricing-img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.pricing-container-desktop {
    display: none; /* Hidden by default, shown on larger screens */
}

.pricing-container-mobile {
    display: block; /* Shown by default, hidden on larger screens */
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid var(--text-gold);
    border-radius: 50px;
    overflow: hidden;
}

.pricing-tabs button {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--text-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-tabs button.active {
    background: var(--gold-gradient);
    color: #000;
}

.pricing-table-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.pricing-table-container td {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 10px;
}

.pricing-table-container td[data-label="Service"] {
    text-align: left;
    font-weight: 700;
}

.pricing-table-container td[data-label="Price"] {
    text-align: right;
    font-weight: 700;
    color: var(--text-gold);
}


th, td {
    padding: 1.5rem;
    text-align: center;
}

th {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-gold);
    align-content: end;
}

td {
    background-color: #111;
    border: 1px solid #222;
}

/* Unify price styles across desktop and mobile */
.pricing-container-desktop td:not(:first-child) {
    color: var(--text-gold);
    font-weight: 700;
}

tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 700;
}

tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.vat-note {
    margin-top: 2rem;
    font-style: italic;
    color: #888;
}

footer {
    text-align: center;
    padding: 0 2rem 8rem;
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: #000;
    font-size: 2rem;
}

@media (min-width: 992px) {
    .pricing-container-desktop {
        display: block;
    }
    .pricing-container-mobile {
        display: none;
    }
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-gold);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: 1100;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-size: 2rem;
    margin: 2rem 0;
    color: var(--text-light);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text p {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}
