:root {
    --primary-color: #1a237e;
    --secondary-color: #304ffe;
    --accent-color: #536dfe;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    direction: rtl;
    background-color: var(--light-bg);
    color: var(--text-color);
    padding-top: 140px;
}

header img {
    max-width: 150px;
}

/* Navigation Styles */
.top-nav {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    padding: 0.3rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    flex-direction: row-reverse; /* تغيير اتجاه العناصر */
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 90px;
}

.logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: contrast(1.2) brightness(1.05);
}

.logo:hover img {
    transform: scale(1.02);
    filter: contrast(1.3) brightness(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* أنماط الزر الجديد */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.hero-cta-button i {
    font-size: 1.2rem;
}

/* Announcement Section */
.announcement-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.announcement-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

.announcement-message {
    margin-bottom: 4rem;
}

.announcement-message h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.announcement-message p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.main-message {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.footer-logo {
    width: 160px; /* زيادة الحجم في الفوتر */
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) contrast(1.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

/* Watch Showcase Styles */
.watches-showcase {
    padding: 4rem 0;
    background-color: var(--white);
    margin-top: -40px;
}

.watch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.watch-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.watch-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.watch-image-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: linear-gradient(145deg, #f3f3f3, #ffffff);
}

.watch-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transform-style: preserve-3d;
    perspective: 1000px;
}

.watch-item:hover .watch-image-container img {
    animation: floatAndRotate 2s infinite ease-in-out;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2)) brightness(1.1);
}

/* تأثير هز الساعات */
@keyframes gentleShake {
     0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-1.5deg); }
    50% { transform: translate(-50%, -50%) rotate(0deg); }
    75% { transform: translate(-50%, -50%) rotate(1.5deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes floatAndRotate {
    0% {
        transform: translate(-50%, -50%) translateZ(0) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -60%) translateZ(20px) rotate(5deg);
    }
    50% {
        transform: translate(-50%, -50%) translateZ(30px) rotate(0deg);
    }
    75% {
        transform: translate(-50%, -40%) translateZ(20px) rotate(-5deg);
    }
    100% {
        transform: translate(-50%, -50%) translateZ(0) rotate(0deg);
    }
}

.watch-info {
    padding: 1.5rem;
    text-align: center;
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 1.8rem;
    max-width: 280px;
    min-height: auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.info-content a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-form {
    padding: 2.5rem;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(48, 79, 254, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.submit-button i {
    font-size: 1.2rem;
}

/* About Section Styles */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.95));
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-content {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-header {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-accent {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.about-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-vision {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-vision p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.tech-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(48,79,254,0.1), rgba(83,109,254,0.1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

/* Coming Soon Section */
.coming-soon {
    padding: 2rem;
    text-align: center;
    background-color: white;
    position: relative;
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(10px);
}

.coming-soon h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.coming-soon p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coming-soon .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 180px;
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem;
        min-height: 90px;
        gap: 1rem;
    }

    .logo {
        width: 240px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .footer-logo {
        width: 120px;
        height: 60px;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .announcement-message h2 {
        font-size: 1.8rem;
    }

    .announcement-message p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .watch-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .watch-info h3 {
        font-size: 1.1rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .about-content {
        padding: 2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 1.2rem;
    }

    .about-vision {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .watches-showcase {
        margin-top: -60px;
    }
    
    .watch-item {
        flex: 0 0 300px;
    }
    
    .watch-info h3 {
        font-size: 1.2rem;
    }
}

/* Carousel Styles */
.watch-carousel {
    position: relative;
    perspective: 1000px;
    height: 600px;
    margin: 2rem auto;
    max-width: 1200px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform-origin: 50% 50% -250px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.5s ease;
}

.watch-item:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg); }
.watch-item:nth-child(2) { transform: translate(-50%, -50%) rotateY(90deg); }
.watch-item:nth-child(3) { transform: translate(-50%, -50%) rotateY(180deg); }
.watch-item:nth-child(4) { transform: translate(-50%, -50%) rotateY(270deg); }

.watch-image-container {
    height: 65%;
    background: linear-gradient(145deg, #f3f3f3, #ffffff);
    position: relative;
    overflow: hidden;
}

.watch-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.watch-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

/* Watch Slider Styles */
.watches-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.slider-container {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    transition: transform 0.3s ease;
    cursor: grab;
    margin: 0 auto;
    max-width: 1800px;
}

.watch-item {
    flex: 0 0 500px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    transform: translateY(0);
    min-height: 600px;
}

.watch-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.watch-image-container {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(145deg, #f3f3f3, #ffffff);
    overflow: hidden;
}

.watch-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-item:hover .watch-image-container img {
    transform: translate(-50%, -50%) scale(1.1);
}

.watch-info {
    padding: 2.5rem;
    text-align: center;
    background: white;
}

.watch-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.watch-info p {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* تحديث التصميم المتجاوب */
@media (max-width: 768px) {
    .watches-showcase {
        margin-top: -60px;
    }
    
    .watch-item {
        flex: 0 0 350px;
        min-height: 450px;
    }
    
    .watch-info h3 {
        font-size: 1.4rem;
    }
    
    .watch-info p {
        font-size: 1rem;
    }
}