body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.service-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 1px solid #4a5568;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #fbbf24;
}
.service-card.selected {
    background: linear-gradient(145deg, #2b6cb8, #1e40af);
    border-color: #60a5fa;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}
.floating-total {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.category-header {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.progress-bar {
    background: linear-gradient(90deg, #10b981, #059669);
}
.inquiry-form {
    background: linear-gradient(145deg, #374151, #1f2937);
    border: 1px solid #4b5563;
}
.btn-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(251, 191, 36, 0.3);
}
.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}
.service-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    max-width: 400px;
    width: 90%;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translate(-50%, -100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}
.notification.success {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}
.notification.error {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}
.quantity-input {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    color: white;
    width: 80px;
    text-align: center;
    padding: 4px;
}
.quantity-input:focus {
    border-color: #fbbf24;
    outline: none;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}
.quantity-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: #fbbf24;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: #012b36;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  color: #012b36;
  margin-bottom: 20px;
}

section p {
  text-align: center;
  margin-bottom: 20px;
}

/* Services List */
ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

ul li {
  display: inline-block;
  margin: 10px 20px;
  background: #e0f0f2;
  padding: 10px 20px;
  border-radius: 5px;
}

/* Portfolio Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.gallery-item {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.video-item {
  background-color: #000;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  font-size: 3rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox */
.dgs-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.dgs-lightbox.active {
  display: block;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  z-index: 1001;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
}

.lightbox-content iframe,
.lightbox-content video {
  width: 80vw;
  height: 45vw;
  max-width: 1000px;
  max-height: 562px;
  border: none;
  border-radius: 4px;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1002;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Booking Form */
form {
  background: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: auto;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  margin-top: 20px;
  background-color: #012b36;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #014d62;
}

/* Privacy Modal */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.privacy-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #012b36;
  color: #fff;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(90vh - 130px);
}

.privacy-content h4 {
  color: #012b36;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-content p {
  text-align: left;
  margin-bottom: 15px;
}

.privacy-content ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content ul li {
  display: list-item;
  list-style-type: disc;
  margin: 5px 0;
  background: none;
  padding: 0;
}

.ar-title, .ar-text {
  direction: rtl;
  text-align: right;
}

.modal-footer {
  padding: 15px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.modal-accept {
  background-color: #012b36;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.modal-accept:hover {
  background-color: #014d62;
}

/* Privacy Notice Section */
#privacy-notice {
  background-color: #f5f5f5;
  padding: 30px 0;
}

#privacy-notice h2 {
  margin-bottom: 15px;
}

#privacy-notice p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.privacy-link {
  color: #014d62;
  text-decoration: underline;
  cursor: pointer;
}

/* Form Enhancements */
.form-group {
  margin-bottom: 15px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-container label {
  margin-top: 0;
  font-size: 0.9rem;
}

.privacy-link-text {
  color: #014d62;
  text-decoration: underline;
  cursor: pointer;
}

.form-success {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

/* Footer */
footer {
  background: #012b36;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
    max-width: 400px;
  }
  
  .lightbox-content iframe,
  .lightbox-content video {
    width: 95vw;
    height: 53vw;
  }
  
  .modal-container {
    width: 95%;
  }
}
