* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', Arial, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.navbar {
  padding: 0.8rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.logo h1 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

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

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #DAA520;
}

.language-btn {
  background: linear-gradient(45deg, #DAA520, #FFD700);
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.language-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 30%, #2c2c2c 70%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05), transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 75vh;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(45deg, #DAA520, #FFD700);
  color: #1a1a1a;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-primary::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.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(218, 165, 32, 0.5);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(218, 165, 32, 0.1);
  border-color: #DAA520;
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.feature-icon {
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(0, 0, 0, 0.1));
}

.floating-stats {
  position: absolute;
  top: -20px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-bubble {
  background: rgba(218, 165, 32, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
  animation: float 6s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #2c2c2c;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 20%, rgba(218, 165, 32, 0.05), transparent 40%),
    radial-gradient(circle at 75% 80%, rgba(255, 215, 0, 0.03), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.02), transparent 70%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(218,165,32,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
  opacity: 0.1;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1a1a1a 0%, #DAA520 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.2);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520);
  margin: 1rem auto 3rem;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.8) 100%);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(218, 165, 32, 0.1);
  background-clip: padding-box;
  border-radius: 30px;
  padding: 0;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(218, 165, 32, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, 
    rgba(218, 165, 32, 0.1) 0%, 
    rgba(255, 215, 0, 0.05) 50%, 
    rgba(218, 165, 32, 0.08) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: inherit;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520, #FFD700);
  background-size: 400% 400%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  border-radius: inherit;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(-5deg) scale(1.05);
  box-shadow: 
    0 35px 100px rgba(218, 165, 32, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.service-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 4;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.service-icon {
  font-size: 4.5rem;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.5));
  animation: iconPulse 3s ease-in-out infinite;
}

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

.service-content {
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 248, 248, 0.9) 100%);
  border-radius: 0 0 28px 28px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 0%, #DAA520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.2);
  letter-spacing: 0.5px;
}

.service-card p {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: none;
}

/* Video Showcase Section */
.video-showcase {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 30%, #2c2c2c 70%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05), transparent 50%);
  pointer-events: none;
}

.video-content-section {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.video-content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-content-section p {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 800px;
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-image,
.service-video {
  height: 250px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(218, 165, 32, 0.1) 0%, 
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.service-card:hover .service-image::after {
  background: linear-gradient(180deg, 
    rgba(218, 165, 32, 0.2) 0%, 
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 100%);
}

.service-image img,
.service-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: contrast(1.2) brightness(0.8) saturate(1.1);
}

.service-video video {
  object-fit: contain;
  background: #000;
}

.service-card:hover .service-image img,
.service-card:hover .service-video video {
  transform: scale(1.2) rotate(2deg);
  filter: contrast(1.3) brightness(1.1) saturate(1.3);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.9), rgba(255, 215, 0, 0.8));
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.stat:nth-child(2) {
  animation-delay: -2s;
}

.stat:nth-child(3) {
  animation-delay: -4s;
}

.stat:hover {
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat h3 {
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.stat p {
  color: #2c2c2c;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}



/* Contact Section */
.contact {
  padding: 5rem 0;
  background: white;
}

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

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 2rem;
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #666;
}

.contact-item .icon {
  font-size: 1.2rem;
}

.whatsapp-main-icon {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.snapchat-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.snapchat-contact:hover {
  background: rgba(255, 252, 0, 0.1);
  transform: scale(1.02);
}

.snapchat-contact:hover .snapchat-main-icon {
  fill: #FFFC00;
}

.snapchat-main-icon {
  width: 20px;
  height: 20px;
  fill: #FFFC00;
}

.instagram-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.instagram-contact:hover {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 220, 128, 0.1));
  transform: scale(1.02);
}

.instagram-contact:hover .instagram-main-icon {
  fill: #E1306C;
}

.instagram-main-icon {
  width: 20px;
  height: 20px;
  fill: #E1306C;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #666;
  position: relative;
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.whatsapp-contact:hover {
  background: rgba(37, 211, 102, 0.1);
  transform: scale(1.02);
}

.whatsapp-contact:hover .whatsapp-main-icon {
  fill: #128C7E;
}

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

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #DAA520;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.submit-btn {
  background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(45deg, #DAA520, #FFD700);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-logo p {
  opacity: 0.8;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  opacity: 0.7;
}

/* Language Direction Support */
[dir="ltr"] .hero-content {
  grid-template-columns: 1fr 1.2fr;
}

[dir="ltr"] .about-content {
  grid-template-columns: 1fr 1fr;
}

[dir="ltr"] .contact-content {
  grid-template-columns: 1fr 1fr;
}

[dir="ltr"] .footer-content {
  grid-template-columns: 1fr 1fr;
}

[dir="ltr"] .footer-links {
  justify-content: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    min-height: auto;
  }

  .hero-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

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

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-image-wrapper {
    height: 280px;
    transform: none;
  }

  .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .hero-image img,
  .about-image img {
    height: 200px;
    border-radius: 12px;
  }

  .services {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

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

  .service-card {
    border-radius: 20px;
  }

  .service-image,
  .service-video {
    height: 180px;
  }

  .service-content {
    padding: 2rem;
  }

  .service-icon {
    font-size: 3rem;
  }

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

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

  .stats {
    justify-content: space-around;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .video-showcase {
    padding: 3rem 0;
  }

  .videos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .video-wrapper {
    height: 400px;
  }

  .video-content-section h2 {
    font-size: 2rem;
  }

  .video-content-section p {
    font-size: 1.1rem;
  }
}

/* iPhone 16 Pro Max optimizations */
@media (max-width: 430px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo-image {
    height: 35px;
  }

  .logo h1 {
    font-size: 1.6rem;
  }

  .contact-details {
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.95rem;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(248, 248, 248, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.1);
  }

  .whatsapp-contact,
  .snapchat-contact,
  .instagram-contact {
    gap: 0.8rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    width: 100%;
  }

  .whatsapp-main-icon,
  .snapchat-main-icon,
  .instagram-main-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .contact-item span {
    font-size: 0.95rem;
    font-weight: 500;
  }

  .hero {
    padding: 2rem 0;
    margin-top: 70px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-features {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 1rem;
  }

  .hero-image-wrapper {
    height: 250px;
    max-width: 100%;
    border-radius: 20px;
  }

  .floating-stats {
    top: 15px;
    gap: 0.8rem;
  }

  .stat-bubble {
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-image img,
  .about-image img {
    height: 180px;
    border-radius: 10px;
  }

  .services {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image,
  .service-video {
    height: 170px;
  }

  .service-content {
    padding: 1.8rem;
  }

  .service-icon {
    font-size: 3rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .about {
    padding: 2.5rem 0;
  }

  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1.5rem;
  }

  .stat h3 {
    font-size: 1.6rem;
  }

  .stat p {
    font-size: 0.85rem;
  }

  .contact {
    padding: 2.5rem 0;
  }

  .contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    font-size: 1rem;
    gap: 0.8rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .footer-links {
    gap: 1.2rem;
    font-size: 0.95rem;
  }

  .video-showcase {
    padding: 2rem 0;
  }

  .videos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .video-wrapper {
    height: 300px;
    border-radius: 20px;
  }

  .video-content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .video-content-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
}