* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #d4d0cb;
    background-color: rgb(22, 22, 22);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Promo Banner */
.promo-banner {
    background: #d4d0cb;
    color: rgb(22, 22, 22);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Header */
header {
    background: rgb(22, 22, 22);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212,208,203,0.15);
}

.logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.5);
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    color: #d4d0cb;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(30, 30, 30);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    border: 1px solid rgba(212,208,203,0.15);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(212,208,203,0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(212,208,203,0.1);
}

.book-btn {
    background: #d4d0cb;
    color: rgb(22, 22, 22);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid #d4d0cb;
}

.book-btn:hover {
    background: transparent;
    color: #d4d0cb;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d4d0cb;
    font-size: 24px;
    cursor: pointer;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('images/hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #d4d0cb;
}

.page-hero p {
    font-size: 18px;
    letter-spacing: 4px;
    margin-top: 15px;
    color: rgba(212,208,203,0.85);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-content img {
    max-width: 350px;
    margin-bottom: 30px;
    filter: brightness(1.5);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #d4d0cb;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: rgba(212,208,203,0.95);
}

.hero-btn {
    display: inline-block;
    background: #d4d0cb;
    color: rgb(22, 22, 22);
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    border: 2px solid #d4d0cb;
}

.hero-btn:hover {
    background: transparent;
    color: #d4d0cb;
}

/* Section Styles */
section {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 16px;
    color: rgba(212,208,203,0.75);
    letter-spacing: 2px;
}

/* Content Section */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 50px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 40px 0 20px;
    color: #d4d0cb;
}

.content-section p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(212,208,203,0.85);
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
}

.content-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(212,208,203,0.85);
}

.content-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4d0cb;
}

/* Services Grid */
.services {
    background: rgb(22, 22, 22);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: rgb(30, 30, 30);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 30px 25px;
    text-align: center;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #d4d0cb;
}

.service-card p {
    font-size: 14px;
    color: rgba(212,208,203,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card a {
    color: #d4d0cb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #fff;
}

/* Pricing */
.price {
    font-size: 28px;
    font-weight: 600;
    color: #d4d0cb;
    margin: 20px 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212,208,203,0.15);
}

.price-table th {
    color: #d4d0cb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.price-table td {
    color: rgba(212,208,203,0.85);
}

.price-table tr:hover {
    background: rgba(212,208,203,0.05);
}

/* CTA Section */
.cta-section {
    background: #d4d0cb;
    padding: 80px 50px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgb(22, 22, 22);
}

.cta-btn {
    display: inline-block;
    background: rgb(22, 22, 22);
    color: #d4d0cb;
    padding: 18px 60px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    border: 2px solid rgb(22, 22, 22);
}

.cta-btn:hover {
    background: transparent;
    color: rgb(22, 22, 22);
}

/* About Section */
.about {
    background: rgb(22, 22, 22);
    display: flex;
    align-items: stretch;
    padding: 0;
}

.about-image {
    flex: 1;
    background: url('images/stock.jpg') center/cover no-repeat;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(30, 30, 30);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(212,208,203,0.85);
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    background: rgb(22, 22, 22);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(212,208,203,0.85);
}

.contact-info a {
    color: #d4d0cb;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgb(30, 30, 30);
    border: 1px solid rgba(212,208,203,0.25);
    padding: 18px 20px;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    color: #d4d0cb;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(212,208,203,0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4d0cb;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: #d4d0cb;
    color: rgb(22, 22, 22);
    border: 2px solid #d4d0cb;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: transparent;
    color: #d4d0cb;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('images/blob2.png') center/cover;
    padding: 100px 50px;
    text-align: center;
}

.vip-section h2 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgb(22, 22, 22);
}

.vip-section p {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: rgba(22, 22, 22, 0.8);
}

.vip-btn {
    display: inline-block;
    background: rgb(22, 22, 22);
    color: #d4d0cb;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    border: 2px solid rgb(22, 22, 22);
}

.vip-btn:hover {
    background: transparent;
    color: rgb(22, 22, 22);
}

/* Product Card */
.product-card {
    background: rgb(30, 30, 30);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 32px;
    margin: 20px 0;
}

.product-card p {
    color: rgba(212,208,203,0.75);
    margin-bottom: 25px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: rgb(15, 15, 15);
    padding: 80px 50px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212,208,203,0.15);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #d4d0cb;
}

.footer-section p,
.footer-section a {
    color: rgba(212,208,203,0.75);
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4d0cb;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(1.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212,208,203,0.35);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: #d4d0cb;
    background: #d4d0cb;
    color: rgb(22, 22, 22);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: rgba(212,208,203,0.55);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    nav a:not(.book-btn) {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about {
        flex-direction: column;
    }

    .about-image {
        min-height: 400px;
    }

    header {
        padding: 15px 20px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .hero-content p {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .services-grid,
    .services-grid.three-col {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .section-title h2,
    .content-section h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .about-content {
        padding: 50px 30px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 10px;
    }
}
