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

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Amiri:wght@400;700&family=Lato:wght@400;700&family=Tajawal:wght@400;500&display=swap');

/* CSS Variables for Colors - Light Theme */
:root {
    --primary-gold: #BBA14F;
    --secondary-gold: #BBA14F;
    --royal-green: #455A48;
    --emerald-green: #455A48;
    --medium-green: #657960;
    --dark-base: #FFFFFF;
    --surface: #FFFFFF;
    --text-primary: #333333;
    --text-secondary: #657960;
    --accent: #455A48;
    --success: #455A48;
    --gradient-gold: linear-gradient(135deg, #BBA14F 0%, #BBA14F 100%);
    --gradient-green-gold: linear-gradient(135deg, #455A48 0%, #BBA14F 50%, #BBA14F 100%);
    --royal-gradient: linear-gradient(135deg, #455A48 0%, #657960 100%);
}

/* Base Body Styles */
body {
    font-family: 'Tajawal', 'Lato', sans-serif;
    background: var(--dark-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, .logo, .price {
    font-family: 'Amiri', 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(55, 140, 67, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(55, 140, 67, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Amiri', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #BBA14F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BBA14F;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: 0.3s;
}

/* Main Container */
.main-container {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(69, 90, 72, 0.05) 0%, rgba(187, 161, 79, 0.03) 30%, var(--dark-base) 70%);
    overflow: hidden;
    border-bottom: 1px solid rgba(69, 90, 72, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23455A48' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(69, 90, 72, 0.2));
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-green-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(69, 90, 72, 0.3));
}

.title-main {
    display: block;
    font-size: 1.2em;
}

.title-sub {
    display: block;
    font-size: 0.6em;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-green-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 90, 72, 0.3);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(69, 90, 72, 0.4);
    background: var(--primary-gold);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--royal-green);
    border: 2px solid var(--royal-green);
}

.btn-secondary:hover {
    background: var(--royal-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(69, 90, 72, 0.4);
}

/* Hero Visual - Hidden since we now use logo */
.hero-visual,
.diamond-container,
.diamond,
.ring,
.ring-1,
.ring-2,
.ring-3 {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    background: var(--royal-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(69, 90, 72, 0.5));
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.title-decoration {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* About Section */
.about {
    background: #f8f9fa;
    position: relative;
    border-top: 1px solid rgba(69, 90, 72, 0.1);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23BBA14F' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-20h20zM0 0h20v20c-11.046 0-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E");
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-details {
    margin: 3rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-right: 4px solid var(--royal-green);
    border-left: 2px solid var(--primary-gold);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(69, 90, 72, 0.1);
}

.detail-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(69, 90, 72, 0.15);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--royal-gradient);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-gold);
}

.detail-content h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-secondary);
}

.about-mission {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
}

/* Luxury Showcase */
.luxury-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(69, 90, 72, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(69, 90, 72, 0.08);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-green-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.showcase-item:hover::before {
    opacity: 0.1;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(69, 90, 72, 0.3);
    border-color: var(--primary-gold);
}

.showcase-item i {
    font-size: 3rem;
    background: var(--gradient-green-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(69, 90, 72, 0.3));
}

.showcase-item span {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    background: var(--dark-base);
    border-top: 1px solid rgba(69, 90, 72, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(69, 90, 72, 0.2);
    box-shadow: 0 4px 20px rgba(69, 90, 72, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(69, 90, 72, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(248, 249, 250, 1);
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(69, 90, 72, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--royal-gradient);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(69, 90, 72, 0.3);
}

.info-content h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-gold);
}

.whatsapp-link {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    color: var(--royal-green) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 3s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background: var(--royal-green);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 90, 72, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Enhanced Royal Green and Gold Styling */
.whatsapp-social {
    background: var(--royal-gradient) !important;
    border: 2px solid #25D366 !important;
}

.whatsapp-social:hover {
    background: #25D366 !important;
    color: white !important;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(69, 90, 72, 0.2);
    box-shadow: 0 4px 20px rgba(69, 90, 72, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(187, 161, 79, 0.3);
    border-radius: 10px;
    background: #f8f9fa;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-green);
    box-shadow: 0 0 10px rgba(69, 90, 72, 0.2);
    background: white;
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid rgba(69, 90, 72, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--primary-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(69, 90, 72, 0.1);
}

.footer-contact .contact-link:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(187, 161, 79, 0.3);
}

.footer-contact .contact-link i {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(187, 161, 79, 0.3);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(55, 140, 67, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(55, 140, 67, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-logo-img {
        height: 90px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-logo-img {
        height: 100px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .luxury-showcase {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 4rem 1rem;
    }

    .detail-item,
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .detail-item:hover,
    .info-item:hover {
        transform: translateY(-5px);
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-contact .contact-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .footer-logo .logo-img {
        height: 40px;
    }
    
    .hero-logo-img {
        height: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .diamond-container {
        width: 200px;
        height: 200px;
    }

    .diamond {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .ring-1 {
        width: 120px;
        height: 120px;
    }

    .ring-2 {
        width: 160px;
        height: 160px;
    }

    .ring-3 {
        width: 200px;
        height: 200px;
    }

    .footer-contact .contact-link {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .footer-container {
        padding: 2rem 1rem 1rem;
    }
}