/* =========================================
   ROOT COLORS
========================================= */
:root {
  --red: #A0181B;
  --blue: #0C4285;
  --green: #568233;
  --gold: #FEDF3D;
}

/* =========================================
   GLOBAL
========================================= */
/* =========================================
   LOGO IMAGE
========================================= */
.logo-img {
  height: 60px;       /* تتحكمى في الارتفاع */
  width: auto;        /* يحافظ على التناسب */
  object-fit: contain;
  transition: 0.3s ease;
}

/* تأثير خفيف عند الهوفر */
.logo-img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}
body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background: #fff;
}

.section-padding {
  padding: 80px 0;
}

.gradient-primary {
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.gradient-soft {
  background: linear-gradient(135deg, var(--green), var(--gold));
}

/* =========================================
   BTN GRADIENT ANIMATED
========================================= */
.btn-gradient {
  background: linear-gradient(135deg, var(--blue), var(--red), var(--gold));
  background-size: 300% 300%; /* عشان التحريك يكون سلس */
  border: none;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  animation: gradientShift 5s ease infinite;
}

/* حركة الـ gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
/* =========================================
   NAVBAR
========================================= */
.navbar {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar-brand {
  background: white;
  padding: 6px 15px;
  border-radius: 8px;
}

.nav-link {
  position: relative;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================================
   LOADER
========================================= */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 6px solid white;
  border-top: 6px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,66,133,0.85),
    rgba(160,24,27,0.85)
  );
}
/* =========================================
   hero
========================================= */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   HERO SLIDER
========================================= */

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.2rem;
}

.carousel-item {
  transition: opacity 1s ease-in-out;
}
/* =========================================
   CARDS
========================================= */
.card-hover {
  transition: 0.7s ease;
  border: none;
}

.card-hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* =========================================
   CONTACT FORM
========================================= */
:root { 
            --german-blue: #003366; 
            --accent-gold: #d4af37;
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        body { 
            font-family: 'Inter', sans-serif; 
            background: #f0f2f5;
            color: #333;
        }

        /* Animated Background Header */
        .contact-header-visual {
            background: linear-gradient(-45deg, #003366, #001a33, #004a94, #002244);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            padding: 120px 0 180px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Main Contact Card */
        .main-contact-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.4);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            margin-top: -120px;
            overflow: hidden;
        }

        /* Side Info Panel */
        .info-panel {
            background: var(--german-blue);
            color: white;
            padding: 50px;
            height: 100%;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-right: 20px;
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 15px;
        }

        /* Form Styling */
        .form-section { padding: 50px; background: white; }
        
        .form-floating > .form-control:focus {
            border-color: var(--german-blue);
            box-shadow: none;
        }

        .btn-premium {
            background: linear-gradient(90deg, var(--german-blue), #0056b3);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.4s;
            width: 100%;
        }

        .btn-premium:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0,51,102,0.3);
            color: white;
        }

        @media (max-width: 991px) {
            .main-contact-card { margin-top: -50px; border-radius: 20px; }
            .info-panel, .form-section { padding: 30px; }
        }
/* =========================================
   GLOBAL REACH SECTION
========================================= */

.reach-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.reach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 28px;
  color: white;
}
/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--blue);
  color: white;
  padding: 40px 0;
}

footer a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: var(--gold);
}

/* =========================================
   COUNTER ANIMATION
========================================= */
.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--red);
}

/* ===== Modern Products Section ===== */
/* ===== PRODUCTS SECTION ===== */

.products-section{
    padding:110px 0;
    background:linear-gradient(135deg,#f8f9fa 0%,#eef3fb 100%);
}

/* ===== Title ===== */

.fancy-title{
    font-weight:700;
    color:#0C4285;
    letter-spacing:1px;
}

.title-line{
    width:70px;
    height:4px;
    background:#A0181B;
    margin:15px auto 25px;
    border-radius:10px;
}

.section-subtitle{
    color:#666;
    font-size:15px;
}

/* ===== Card ===== */

.product-modern{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(12,66,133,0.08);
    transition:0.4s ease;
    height:100%;
}

.product-modern:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(12,66,133,0.18);
}

/* ===== Image Area ===== */

.product-img-wrapper{
    background:#ffffff;
    padding:50px 30px 30px;
    text-align:center;
    position:relative;
}

.product-img-wrapper img{
    max-height:200px;
    transition:0.4s;
}

.product-modern:hover img{
    transform:scale(1.08);
}

/* ===== Badge ===== */

.product-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#0C4285;
    color:#fff;
    font-size:11px;
    padding:5px 12px;
    border-radius:20px;
    letter-spacing:0.5px;
}

/* ===== Text ===== */

.product-info{
    padding:25px;
    text-align:center;
}

.product-info h5{
    font-weight:600;
    color:#0C4285;
    margin-bottom:10px;
}

.product-info p{
    font-size:14px;
    color:#666;
    margin-bottom:20px;
}

/* ===== Button ===== */

.btn-product{
    background:linear-gradient(135deg,#A0181B,#c02529);
    color:#fff;
    border:none;
    border-radius:30px;
    padding:9px 26px;
    font-size:14px;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(160,24,27,0.3);
}

.btn-product:hover{
    background:linear-gradient(135deg,#568233,#6aa042);
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(86,130,51,0.4);
}

.section-title{
    font-weight:700;
    color:#0C4285;
}

.section-subtitle{
    color:#666;
    font-size:15px;
}

.product-modern{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-modern:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* ===== Image Area - Improved ===== */
.product-img-wrapper {
    background: #f4f6fa;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    transition: transform 0.4s ease;
    object-fit: contain;
}

/* تحريك الصور لليسار في قسم Liquids & Shots */
#liquids-row .product-img-wrapper img {
    margin-left: -35px;     /* غير الرقم ده حسب احتياجك (-20px إلى -50px) */
}

/* تأثير الهوفر */
.product-modern:hover img {
    transform: scale(1.08);
}
}

.product-modern:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:25px;
    text-align:center;
    flex-grow:1;
}

.product-info h5{
    font-weight:600;
    color:#0C4285;
    margin-bottom:10px;
}

.product-info p{
    font-size:14px;
    color:#666;
    margin-bottom:20px;
}

.btn-product{
    background:#A0181B;
    color:#fff;
    border-radius:30px;
    padding:8px 25px;
    font-size:14px;
    transition:0.3s;
}

.btn-product:hover{
    background:#568233;
    color:#fff;
}