@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Premium Colors */
  --primary-blue: #0b192c;      
  --primary-blue-light: #1a365d;
  --secondary-teal: #00b4d8;    
  --secondary-teal-hover: #0096c7;
  --accent-blue: #0077b6;
  
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-gray: #475569;
  --text-light: #94a3b8;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--secondary-teal));
  --gradient-dark: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --container-padding: 0 2rem;
  --section-padding: 5rem 0;
  
  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.3);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--bg-white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* Helpers */
.container { max-width: var(--max-width); margin: 0 auto; padding: var(--container-padding); width: 100%; }
.section { padding: var(--section-padding); position: relative; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.relative { position: relative; }
.z-10 { z-index: 10; position: relative; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-blue); margin-bottom: 1.2rem; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1.2rem; color: var(--text-gray); font-size: 1.05rem; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
.accent-text { 
  color: var(--secondary-teal); 
  text-transform: uppercase; 
  font-size: 0.85rem; 
  letter-spacing: 3px; 
  font-weight: 700; 
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Flex & Grid Utils */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.align-items-center { align-items: center; }

/* Animations */
.fade-in-up {
  opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

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

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-heading); font-weight: 600; 
  border-radius: 50px; cursor: pointer; border: none; font-size: 1.05rem; 
  transition: var(--transition-normal); text-align: center; position: relative; overflow: hidden;
}
.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.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary { 
  background: var(--gradient-primary); color: var(--bg-white); box-shadow: var(--shadow-md); 
}
.btn-primary:hover { 
  transform: translateY(-3px); box-shadow: var(--shadow-glow); color:var(--bg-white); 
}
.btn-outline { 
  background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); 
}
.btn-outline:hover { 
  background: var(--primary-blue); color: var(--bg-white); border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

/* Cards & Forms */
.card {
  background: var(--bg-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); 
  padding: 2.5rem; transition: var(--transition-normal); border: 1px solid rgba(0,0,0,0.03);
  position: relative; z-index: 1;
}

.form-control {
  width: 100%; padding: 16px 20px; border-radius: var(--radius-sm); border: 1px solid #e2e8f0;
  font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); background: #f8fafc;
  transition: var(--transition-fast);
}
.form-control:focus { 
  outline: none; border-color: var(--secondary-teal); background: var(--bg-white); 
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1); 
}

/* Header Navbar */
header { 
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 20px 0; position: sticky; top: 0; z-index: 999; transition: var(--transition-normal); 
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
header.scrolled { padding: 12px 0; box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.98); }
.logo { display: flex; align-items: center; text-decoration: none; }
.header-logo { max-height: 55px; width: auto; display: block; transition: var(--transition-normal); }
header.scrolled .header-logo { max-height: 45px; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links > a, .dropdown > a { 
  font-weight: 500; color: var(--text-dark); position: relative; font-family: var(--font-heading);
  font-size: 1.05rem; padding: 5px 0;
}
.nav-links > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gradient-primary); transition: var(--transition-normal);
}
.nav-links > a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links > a:hover, .dropdown > a:hover, .nav-links a.active { color: var(--secondary-teal); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  position: absolute; top: 120%; left: 50%; transform: translateX(-50%) translateY(15px);
  background: var(--bg-white); min-width: 780px;
  box-shadow: var(--shadow-lg); border-radius: var(--radius-md); opacity: 0; visibility: hidden;
  transition: var(--transition-normal); display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px 15px; padding: 20px; 
  border: 1px solid rgba(0,0,0,0.05);
}
.dropdown-content::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--bg-white); border-top: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
}
.dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-content a { 
  padding: 8px 12px; color: var(--text-gray); font-size: 0.95rem; border-radius: 8px;
  transition: var(--transition-fast);
}
.dropdown-content a:hover { 
  background: rgba(0, 180, 216, 0.05); color: var(--secondary-teal); transform: translateX(5px);
}

.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.menu-toggle span { width: 28px; height: 3px; background: var(--primary-blue); border-radius: 3px; transition: 0.3s; }

/* Hero Slider */
.hero-slider {
  position: relative; width: 100%; overflow: hidden; background: var(--bg-light); margin-top: 0;
  height: auto;
  aspect-ratio: 1920 / 650;
}
.slider-container {
  display: flex; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; height: 100%;
}
.slide {
  min-width: 100%; box-sizing: border-box; height: 100%; position: relative;
}
.slide::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.8), rgba(11, 25, 44, 0.2));
}
.slide img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.slider-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 30px;
}
.dot {
  width: 12px; height: 12px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; cursor: pointer; transition: var(--transition-normal);
}
.dot.active, .dot:hover {
  background: var(--bg-white); transform: scale(1.3); box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Section Title */
.section-title { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }
.section-title h2 { position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after { 
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); 
  width: 80px; height: 5px; background: var(--gradient-primary); border-radius: 3px; 
}
.section-title.text-left { align-items: flex-start; text-align: left; }
.section-title.text-left h2::after { left: 0; transform: none; }

/* About Section */
.about-image { position: relative; border-radius: var(--radius-lg); overflow: visible; z-index: 1; }
.about-image::before {
  content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
  border: 2px dashed var(--secondary-teal); border-radius: var(--radius-lg); z-index: -1;
  opacity: 0.5;
}
.about-image img { 
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-lg); transition: var(--transition-normal);
}
.about-image:hover img { transform: translateY(-10px); }

.experience-badge {
  position: absolute; bottom: -30px; right: -30px; background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--primary-blue);
  width: 160px; height: 160px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center;
  border: 1px solid rgba(255,255,255,0.5); text-align: center; box-shadow: var(--shadow-lg); z-index: 5;
  animation: float 6s ease-in-out infinite;
}
.experience-badge::before {
  content: ''; position: absolute; inset: 5px; border-radius: 50%; border: 2px dashed var(--secondary-teal); opacity: 0.3;
}
.badge-num { font-size: 3rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.badge-text { font-size: 0.95rem; font-weight: 600; margin-top: 5px; }

.about-list { list-style: none; margin-top: 2rem; }
.about-list li { margin-bottom: 18px; position: relative; padding-left: 40px; font-weight: 500; color: var(--text-dark); font-size: 1.1rem; }
.about-list i { 
  color: var(--secondary-teal); font-size: 1.3rem; position: absolute; left: 0; top: 3px; 
  background: rgba(0, 180, 216, 0.1); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

/* Services */
.service-card { 
  text-align: center; cursor: pointer; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05); padding: 3rem 2rem;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
  background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 90px; height: 90px; margin: 0 auto 2rem; border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.05));
  display: flex; justify-content: center; align-items: center;
  color: var(--secondary-teal); font-size: 2.8rem; transition: var(--transition-normal);
  transform: rotate(-10deg);
}
.service-card:hover .service-icon { 
  background: var(--gradient-primary); color: var(--bg-white); transform: rotate(0) scale(1.1); 
  box-shadow: var(--shadow-glow);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; transition: var(--transition-fast); }
.service-card:hover h3 { color: var(--secondary-teal); }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--secondary-teal); font-weight: 600; margin-top: 1.5rem; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.service-link i { transition: var(--transition-normal); }
.service-card:hover .service-link i { transform: translateX(8px); }

/* Experience Counters */
.experience-section { 
  background: var(--gradient-dark); padding: 6rem 0; color: var(--bg-white); position: relative; overflow: hidden; 
}
.experience-section::before { 
  content: ''; position: absolute; top:-50%; left:-50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 60%); 
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-icon { font-size: 3.5rem; color: var(--secondary-teal); margin-bottom: 1.5rem; filter: drop-shadow(0 0 10px rgba(0,180,216,0.5)); }
.stat-item h3 { font-size: 4rem; color: var(--bg-white); margin-bottom: 0.5rem; font-weight: 800; }
.stat-item p { color: rgba(255,255,255,0.8); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Scrolling Containers */
.scroll-container { display: flex; gap: 2.5rem; overflow-x: auto; padding: 20px 5px 40px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.scroll-container::-webkit-scrollbar { display: none; }
.scroll-container > * { flex: 0 0 380px; scroll-snap-align: center; }

/* Video Cards */
.video-card { 
  background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; 
  box-shadow: var(--shadow-md); transition: var(--transition-normal); border: 1px solid rgba(0,0,0,0.05);
}
.video-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(0, 180, 216, 0.3); }
.video-card iframe { width: 100%; height: 240px; border: none; }
.video-info { padding: 1.8rem; background: var(--bg-white); }
.video-info h4 { margin-bottom: 0; color: var(--text-dark); font-size: 1.2rem; line-height: 1.4; }

/* Event Cards */
.event-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-normal); }
.event-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.event-card img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition-slow); }
.event-card:hover img { transform: scale(1.05); }
.event-info { padding: 2rem; position: relative; background: var(--bg-white); }
.event-date { 
  display: inline-block; background: var(--gradient-primary); color: var(--bg-white); 
  padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; 
  margin-bottom: 1.2rem; box-shadow: var(--shadow-sm); position: absolute; top: -20px;
}
.event-info h4 { color: var(--primary-blue); font-size: 1.3rem; margin-top: 1rem; }

/* Testimonials */
.blob-bg { 
  position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; 
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, rgba(59,130,246,0.05) 50%, transparent 70%); 
  border-radius: 50%; filter: blur(40px); z-index: 0;
}
.testimonial-card { 
  text-align: left; padding: 3rem 2.5rem; background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
}
.stars { color: #F59E0B; margin-bottom: 1.5rem; font-size: 1.2rem; display: flex; gap: 5px; }
.quote { font-style: italic; color: var(--text-dark); font-size: 1.15rem; line-height: 1.8; margin-bottom: 2rem; }
.author { display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.5rem; }
.author h5 { margin-bottom: 5px; color: var(--primary-blue); font-size: 1.2rem; }
.author span { font-size: 0.95rem; color: var(--text-gray); font-weight: 500; }

/* FAQ */
.faq-section { position: relative; }
.faq-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, var(--bg-white), transparent); pointer-events: none; }
.faq-accordion { border-radius: var(--radius-lg); background: var(--bg-white); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-item:last-child { border-bottom: none; }
.faq-header { padding: 1.8rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition-normal); }
.faq-header h5 { margin-bottom: 0; color: var(--text-dark); font-size: 1.2rem; font-weight: 600; padding-right: 20px; }
.faq-header i { 
  transition: var(--transition-normal); color: var(--secondary-teal); font-size: 1.2rem;
  background: rgba(0, 180, 216, 0.1); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.faq-item:hover .faq-header { background: rgba(0, 0, 0, 0.01); }
.faq-item.active .faq-header { background: rgba(0, 180, 216, 0.03); }
.faq-item.active .faq-header h5 { color: var(--secondary-teal); }
.faq-item.active .faq-header i { transform: rotate(135deg); background: var(--secondary-teal); color: var(--bg-white); box-shadow: var(--shadow-glow); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 2rem; opacity: 0; }
.faq-item.active .faq-content { padding-bottom: 2rem; padding-top: 0.5rem; opacity: 1; }

/* Contact Wrapper */
.contact-form-wrapper { padding: 3.5rem; border-radius: var(--radius-lg); }
.contact-info-bubbles { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.bubble { 
  display: flex; align-items: flex-start; gap: 20px; background: var(--bg-white); 
  padding: 20px 25px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); 
  transition: var(--transition-normal); border: 1px solid rgba(0,0,0,0.02);
}
.bubble:hover { transform: translateX(10px); border-color: rgba(0, 180, 216, 0.3); }
.bubble i { 
  width: 50px; height: 50px; min-width: 50px; background: linear-gradient(135deg, var(--accent-blue), var(--secondary-teal)); 
  color: var(--bg-white); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.3rem; 
  box-shadow: var(--shadow-md);
}
.bubble h5 { margin-bottom: 5px; font-size: 1.1rem; }
.bubble p { margin-bottom: 0; font-size: 1rem; line-height: 1.5; }

/* Footer */
.footer { background: var(--primary-blue); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 4rem; margin-bottom: 2rem; }
.footer-logo { max-height: 65px; width: auto; display: block; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; color: rgba(255,255,255,0.8); }
.footer h4 { color: var(--bg-white); font-size: 1.3rem; margin-bottom: 2rem; position: relative; display: inline-block; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--secondary-teal); border-radius: 2px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 15px; }
.footer ul a { color: rgba(255,255,255,0.7); transition: var(--transition-fast); display: inline-block; }
.footer ul a:hover { color: var(--secondary-teal); transform: translateX(5px); color: var(--bg-white); }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { 
  display: inline-flex; width: 45px; height: 45px; background: rgba(255,255,255,0.05); 
  border-radius: 50%; justify-content: center; align-items: center; color: var(--bg-white); 
  transition: var(--transition-normal); font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1);
}
.footer-socials a:hover { 
  background: var(--secondary-teal); transform: translateY(-5px); border-color: var(--secondary-teal);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4);
}
.footer-contact p { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.05rem; }
.footer-contact i { color: var(--secondary-teal); margin-top: 5px; font-size: 1.2rem; }
.footer-bottom { text-align: center; font-size: 1rem; color: rgba(255,255,255,0.6); }

/* Responsive */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-image { margin-bottom: 4rem; }
  .experience-badge { right: 50%; transform: translateX(50%); bottom: -40px; }
  .d-none-mobile { display: none; }
  
  .hero-slider {
    aspect-ratio: 1920 / 650;
  }
  .slider-dots {
    bottom: 15px;
    padding: 6px 12px;
    gap: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 350px; height: 100vh; background: var(--bg-white);
    flex-direction: column; align-items: flex-start; padding: 100px 30px 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999;
  }
  .nav-links.active { right: 0; }
  .menu-toggle { display: flex; z-index: 1000; position: relative; }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: var(--secondary-teal); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); background: var(--secondary-teal); }
  
  .dropdown-content { position: static; box-shadow: none; border-left: 2px solid var(--secondary-teal); border-top: none; display: none; margin-top: 10px; width: 100%; transform: none; padding: 10px; border-radius: 0; }
  .dropdown-content::before { display: none; }
  .dropdown:hover .dropdown-content { display: flex; flex-direction: column; transform: none; }
  
  .section { padding: 4rem 0; }
  .contact-form-wrapper { padding: 2rem; }
}

/* Floating Icons */
.floating-icons {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}
.float-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2), inset 0 -4px 6px rgba(0,0,0,0.1), inset 0 4px 6px rgba(255,255,255,0.3);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.float-icon::before {
  content: ''; position: absolute; top: 10%; left: 15%; width: 70%; height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0));
  border-radius: 50% / 100% 100% 0 0; pointer-events: none;
}
.float-icon:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3), inset 0 -4px 6px rgba(0,0,0,0.1), inset 0 4px 6px rgba(255,255,255,0.4);
  color: white;
}
.float-icon.whatsapp {
  background: radial-gradient(circle at center, #2ecc71, #27ae60);
}
.float-icon.whatsapp:hover {
  background: radial-gradient(circle at center, #2ecc71, #1e8449);
}
.float-icon.callback {
  background: radial-gradient(circle at center, #00b4d8, #0077b6);
  animation: pulse-ring 2s infinite;
}
.float-icon.callback i { transform: scaleX(-1); }

@media (max-width: 768px) {
  .floating-icons { bottom: 20px; right: 20px; gap: 15px; }
  .float-icon { width: 55px; height: 55px; font-size: 1.8rem; }
}

/* Color Utilities */
.text-white, 
.text-white p, 
.text-white div, 
.text-white i, 
.text-white span, 
.text-white h1, 
.text-white h2, 
.text-white h3, 
.text-white h4, 
.text-white h5, 
.text-white h6 {
  color: #ffffff !important;
}

