/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #f8f3f3;
    background: linear-gradient(135deg, #f8f1e9, #e6d9c6);
    font-family: 'Poppins', sans-serif;
}

/* Luxury Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: #fffefe;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #d4af37;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.primary-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: 2px solid #d4af37;
}

.primary-btn:hover {
    background: #1a1a1a;
    color: #d4af37;
}

.secondary-btn {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.secondary-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.header__menu--items {
	list-style: none;
	position: relative;
}

.header__menu--items:hover .header__sub--menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
}

.header__sub--menu {
	position: absolute;
	z-index: 9;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 220px;
	margin-top: 20px;
	padding: 10px;
	list-style: none;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.header__sub--menu__items {
	margin: 12px;
}

.header__sub--menu__link {
	display: block;
	color: #333;
	text-decoration: none;
}

.header__sub--menu__link i {
    margin-right: 12px; 
    vertical-align: middle;
    font-size: 20px; 
}
.header__sub--menu__link:hover {
	color: #d4af37;
}

.header__menu--items > a {
	color: white;
	text-decoration: none;
}

/* loader */
#global-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.whirly-loader {
	width: 50px;
	height: 50px;
	border: 5px solid #ccc;
	border-top: 5px solid #d4af37;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.contact-section h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 50px;
    font-style: italic;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #d4af37;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 5px;
}

.info-item a {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.form-btn {
    background: #d4af37;
    color: #1a1a1a;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: #1a1a1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
}

.footer-column p a {
    color: #fff;
}

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

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

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

.footer-column ul li a:hover {
    color: #d4af37;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.payment-methods img {
    height: 30px;
}

/* Mobile Optimization and Hamburger Menu */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        font-size: 24px;
    }

    .nav-toggle-label {
        display: block;
    }

    header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #1a1a1a;
        padding: 20px 0;
    }

    #nav-toggle:checked ~ nav {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-actions {
        display: none;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }

    .contact-section h1 {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 26px;
    }

    .info-item i {
        font-size: 20px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    .info-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 22px;
    }

    .info-item h3 {
        font-size: 16px;
    }

}