:root {
    --primary-color: #D4AF37; /* Elegant Gold */
    --primary-dark: #b5952f;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --hero-bg: url('images/hero_curtains_1775500896323.png');
    --overlay-color: rgba(0, 0, 0, 0.4); /* As specified by instructions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

header .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-right: 50px;
    letter-spacing: 1px;
    transition: var(--transition);
}

header.scrolled .logo,
header.scrolled nav ul li a {
    color: var(--text-color);
}

nav ul {
    display: flex;
    margin-left: 50px;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Grid Layouts */
.grid-3, .grid-2 {
    display: grid;
    gap: 40px;
}

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

.grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Icon Boxes */
.icon-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.icon-box:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.icon-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.icon-box p {
    color: var(--text-light);
}

/* Image Boxes */
.image-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.image-wrapper {
    position: relative;
    height: 380px;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: right;
    transition: var(--transition);
}

.image-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 1.6rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-box:hover .image-overlay h3 {
    transform: translateY(0);
}

/* Contact Section */
.contact-info {
    padding-left: 30px;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-item i {
    font-size: 26px;
    color: var(--primary-color);
    margin-left: 20px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item a:hover {
    color: var(--primary-color);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-size: 1rem;
}

/* WhatsApp Float (Joinchat style) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Right for LTR naturally, but in RTL it moves, wait. Position left for RTL? The prompt says "bottom corner". Let's put it on the left bottom side, common for RTL. */
    left: 30px;
    right: auto;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    header { padding: 15px 20px; background-color: rgba(255, 255, 255, 0.95); }
    header .logo { margin-right: 0; color: var(--text-color);}
    nav ul { display: none; }
    .hero h1 { font-size: 2.5rem; margin-top: 50px; }
    .hero p { font-size: 1.2rem; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 33px; bottom: 20px; left: 20px; }
}
