:root {
  --gold :#d8b874;
  --brand-gold-1: #b19861;
  --brand-gold-2: #b49d6e;
  --brand-gold-3: #a48959;
  --brand-gold-light: #b9a067;
}


body {
  font-family: "Cairo", sans-serif;
  background: #0b0f14;
  color: white;
}

/* Language */
.lang-switch {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 999;
}
.lang-switch button {
  background: transparent;
  border: 1px solid gold;
  color: var(--gold);
  padding: 5px 10px;
}
.lang-switch .active {
  background: gold;
  color: #000;
}

/* Hero */
.hero {
  min-height: 90vh;
  background: url("../img/bg1.png") center/cover;
  position: relative;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}
.hero .container {
  position: relative;
}
.hero h1 {
  color: var(--gold);
  font-size: 3rem;
}
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  border: none;
  color: #000;
}

/* Sections */
.companies {
  min-height: 90vh;
  background: url("../img/bg2.png") center/cover;
  position: relative;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: 40px;
}
a {
  text-decoration: none;
}
/* Cards */
.gold-card {
  background: #111;
  border: 1px solid rgba(177, 152, 97, 0.4); /* من لون اللوجو */
  padding: 15px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;

  box-shadow:
    0 10px 20px rgba(177, 152, 97, 0.08),
    0 20px 40px rgba(177, 152, 97, 0.06),
    0 30px 60px rgba(177, 152, 97, 0.04),
    inset 0 0 10px rgba(177, 152, 97, 0.05);
}

.gold-card:hover {
  border: 1px solid rgba(185, 160, 103, 0.8);

  box-shadow:
    0 0 20px rgba(185, 160, 103, 0.35),
    0 0 40px rgba(185, 160, 103, 0.25),
    0 0 80px rgba(185, 160, 103, 0.18),
    0 0 120px rgba(185, 160, 103, 0.1),

    inset 0 0 15px rgba(185, 160, 103, 0.25),
    inset 0 0 30px rgba(185, 160, 103, 0.18),
    inset 0 0 60px rgba(185, 160, 103, 0.1);

  transform: translateY(-5px);
}

.gold-card img {
  width: 100%;
  border-radius: 8px;
  height: 215px;
}
.gold-card h5 {
  color: white !important;
} 
/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.stats div {
  color: var(--gold);
  font-size: 1.5rem;
}

/* أنماط قسم التواصل */
.contact-us {
    background: url("../img/bg3.png") center/cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-us .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 20, 0.9);
}

.contact-container {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(216, 184, 116, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-header {
    background: linear-gradient(135deg, rgba(216, 184, 116, 0.2), rgba(177, 152, 97, 0.1));
    border-radius: 20px 20px 0 0;
    padding: 30px;
}

.contact-title {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 184, 116, 0.2);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(216, 184, 116, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(216, 184, 116, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #b19861);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: #000;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(216, 184, 116, 0.3) !important;
    color: white !important;
    padding: 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: rgba(216, 184, 116, 0.1) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(216, 184, 116, 0.2) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-btn {
    background: linear-gradient(135deg, var(--gold), #b19861);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 184, 116, 0.3);
    color: #000;
}

.contact-btn:active {
    transform: translateY(-1px);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(216, 184, 116, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(216, 184, 116, 0.1);
    border: 1px solid rgba(216, 184, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.working-hours {
    background: rgba(216, 184, 116, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.working-hours h6 {
    color: var(--gold);
    margin-bottom: 15px;
}

.working-hours p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.working-hours span {
    color: var(--gold);
    font-weight: 600;
}

/* أنيميشن للظهور */
.contact-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-element.visible {
    opacity: 1;
    transform: translateY(0);
}


/* استعلامات الوسائط */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .contact-container {
        margin: 15px;
    }
}

.star {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.star:hover,
.star.active {
    color: var(--gold);
    transform: scale(1.2);
}

/* مؤشر التحميل */
.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(216, 184, 116, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#subject option{
  color: black !important;
}
.nav-logo{
  width: 50px;
}
.nav-link{
  color: white !important;
}

.ratio{
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
  }
.about-us {
    background: url("../img/bg3.png") center/cover;
    position: relative;
    overflow: hidden;

}
.about-us .overlay{
  z-index: 0;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.about-us .container {
    position: relative;
    z-index: 1;
}

.title-underline {
    animation: underlineExpand 1s ease-out;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.image-wrapper {
    transform-style: preserve-3d;
}

.stats-card {
    animation-delay: 0.6s !important;
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    color: white;
}

/* أضف في ملف gstyle.css */

/* أنماط إضافية لصفحات الشركات */
.company-page .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(216, 184, 116, 0.3) !important;
    color: white !important;
    border-radius: 10px !important;
}

.company-page .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(216, 184, 116, 0.2) !important;
}

/* تأثيرات النصوص */
.company-page .text-gold {
    color: var(--gold) !important;
}

/* أنماط متجاوبة */
@media (max-width: 768px) {
    .company-page .company-title {
        font-size: 2rem;
    }
    
    .company-page .company-logo {
        width: 100px;
        height: 100px;
    }
    
    .company-page .company-logo i {
        font-size: 2.5rem;
    }
    
    .company-page .company-section {
        padding: 40px 0;
    }
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* CSS styles for tablet sizes go here */
  .ratio{
    width: 100%;
  }
}