/* ========================================
   GLASSMORPHISM THEME - Lorenzo Susca
   Modern glass-style design system
   ======================================== */

/* CSS Variables */
:root {
  /* Colors - Vibrant Gradients */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  
  /* Glass Colors */
  --glass-white: rgba(255, 255, 255, 0.1);
  --glass-white-light: rgba(255, 255, 255, 0.05);
  --glass-white-strong: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-light: rgba(255, 255, 255, 0.1);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #1a1a2e;
  
  /* Shadows */
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
  
  /* Transitions */
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
}

/* ========================================
   GLOBAL STYLES & ANIMATED BACKGROUND
   ======================================== */

body, html {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: #0f0f23;
  overflow-x: hidden;
}

/* Animated Gradient Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
  z-index: -2;
  animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Floating Orbs Background */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3));
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.3));
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 400;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-primary {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   GLASS COMPONENTS
   ======================================== */

/* Base Glass Effect */
.glass {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.glass-light {
  background: var(--glass-white-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-light);
}

.glass-strong {
  background: var(--glass-white-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
}

/* Glass Card */
.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Glass Button */
.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.glass-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;
}

.glass-btn:hover::before {
  left: 100%;
}

.glass-btn:hover {
  background: var(--glass-white-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  color: var(--text-primary);
}

/* Gradient Button */
.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover {
  background: var(--primary-gradient);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION - Glass Navbar
   ======================================== */

#menu {
  padding: 15px 0;
  transition: var(--transition-smooth);
  background: transparent;
  border: none;
  box-shadow: none;
}

#menu.navbar-default {
  background: transparent;
  border-color: transparent;
}

#menu.scrolled {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  padding: 10px 0;
}

#menu a.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  text-transform: none;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#menu.navbar-default .navbar-nav > li > a {
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  color: var(--text-secondary) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin: 5px 4px;
  transition: var(--transition-fast);
  position: relative;
}

#menu.navbar-default .navbar-nav > li > a::after {
  display: none;
}

#menu.navbar-default .navbar-nav > li > a:hover {
  color: var(--text-primary) !important;
  background: var(--glass-white);
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: var(--glass-white-strong) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm);
}

/* Mobile Menu Toggle */
.navbar-default .navbar-toggle {
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  border-radius: var(--radius-sm);
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: var(--glass-white-strong);
}

.navbar-default .navbar-toggle .icon-bar {
  background: var(--text-primary);
}

/* ========================================
   HEADER / HERO SECTION
   ======================================== */

#header {
  position: relative;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url(../img/intro-bg.jpg) center center no-repeat;
  background-color: #e5e5e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  position: relative;
}

.intro .overlay {
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

header .intro-text {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.intro h1 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: none;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.intro h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.intro p {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-secondary);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

/* Hero Buttons */
.intro .btn-custom {
  margin: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--text-primary);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.3; }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

#features {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

#features .section-title {
  margin-bottom: 60px;
}

#features .section-title h2 {
  text-align: center;
}

.feature-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: auto;
  min-height: 280px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-card i {
  font-size: 2rem;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  transition: var(--transition-smooth);
}

.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.feature-card h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

#about {
  padding: 100px 0;
  background: transparent;
}

#about .about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#about .about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

#about img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-smooth);
}

#about img:hover {
  transform: scale(1.02);
}

#about .about-text {
  padding-left: 2rem;
}

#about h2 {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

#about h2::after {
  position: absolute;
  content: '';
  background: var(--primary-gradient);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

#about h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

#about p {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1.9;
}

#about .about-text li {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0;
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

#about .about-text li::before {
  content: '✓';
  font-family: inherit;
  background: var(--success-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 10px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

#services {
  padding: 100px 0;
  background: var(--glass-white-light);
  backdrop-filter: blur(10px);
  position: relative;
}

#services .row {
  display: flex;
  flex-wrap: wrap;
}

#services .row > .col-md-4 {
  float: none;
  min-height: auto;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

#services .section-title {
  position: relative;
  z-index: 1;
}

#services .section-title h2 {
  color: var(--text-primary);
}

#services .section-title h2::after {
  background: var(--primary-gradient);
}

#services .section-title p {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.service-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 420px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card i {
  font-size: 1.8rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius-full);
  background: var(--glass-white-strong);
  border: 2px solid var(--glass-border);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.service-card:hover i {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.service-card p {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.8;
}

/* ========================================
   GALLERY / PORTFOLIO SECTION
   ======================================== */

#portfolio {
  padding: 100px 0;
  background: transparent;
}

#portfolio .section-title h2 {
  color: var(--text-primary);
}

.video-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.25);
}

.video-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-item:hover img {
  transform: scale(1.05);
}

.video-item h4 {
  padding: 1rem;
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: 700;
}

.video-item a {
  text-decoration: none;
  display: block;
}

.video-item a:hover h4 {
  background: var(--glass-white-strong);
}

/* Play Button Overlay */
.video-item::after {
  content: '\f04b';
  font-family: 'FontAwesome';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: var(--glass-white-strong);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.video-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

#social {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  position: relative;
}

#social .section-title h2 {
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #4a4a6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#social .section-title p {
  font-family: 'Open Sans', sans-serif;
  color: #555;
  font-size: 1.35rem;
  line-height: 1.7;
}

.social-content {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-glass);
}

#social .btn-custom {
  margin-top: 2rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

#testimonials {
  padding: 100px 0;
  background: transparent;
}

#testimonials .section-title h2 {
  color: var(--text-primary);
}

.testimonial-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass);
}

.testimonial-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.testimonial-content p {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-meta {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 1rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */

#team {
  padding: 100px 0;
  background: transparent;
}

#team .section-title h2 {
  color: var(--text-primary);
}

.team-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--glass-border);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.team-card:hover img {
  transform: scale(1.05);
  border-color: rgba(102, 126, 234, 0.5);
}

.team-card h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

#contact {
  padding: 100px 0 60px;
  background: var(--glass-white-light);
  backdrop-filter: blur(10px);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 100% 0%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

#contact .section-title h2 {
  color: var(--text-primary);
}

#contact .section-title h2::after {
  display: none;
}

#contact .section-title p {
  color: var(--text-secondary);
  text-align: left;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
}

#contact .form-control {
  background: var(--glass-white-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 14px 18px;
  font-size: 15px;
  transition: var(--transition-fast);
}

#contact .form-control:focus {
  background: var(--glass-white);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

#contact .form-control::placeholder {
  color: var(--text-muted);
}

#contact textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-glass);
  height: auto;
}

.contact-info-wrapper h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--glass-border);
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  color: white;
  margin-right: 1rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Social Icons in Contact */
#contact .social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

#contact .social ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

#contact .social ul li {
  display: inline-block;
  margin: 0;
}

#contact .social i.fa {
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

#contact .social i.fa:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Submit Button */
#contact .btn-custom {
  background: var(--primary-gradient);
  border: none;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

#contact .btn-custom:hover {
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

#footer {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 30px 0;
}

#footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

#footer a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

#footer a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* ========================================
   BUTTONS OVERRIDE
   ======================================== */

.btn-custom {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-custom:hover {
  background: var(--glass-white-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--text-primary);
}

/* ========================================
   SECTION TITLE STYLES
   ======================================== */

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.section-title h2::after {
  position: absolute;
  content: '';
  background: var(--primary-gradient);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 2px;
  transform: none;
}

.section-title p {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   COOKIE CONSENT - Glass Style
   ======================================== */

.cookie-consent-container {
  background: var(--glass-white-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.cookie-consent-content h4 {
  color: var(--text-primary);
}

.cookie-consent-content p {
  color: var(--text-secondary);
}

.cookie-consent-actions .btn-custom {
  background: var(--primary-gradient);
  border: none;
}

.cookie-consent-actions .btn-secondary {
  background: var(--glass-white);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
  #about .about-text {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .contact-info-wrapper {
    margin-top: 2rem;
  }
  
  .navbar-collapse {
    background: var(--glass-white-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-top: 10px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .intro h1 {
    font-size: 2.2rem;
  }
  
  .glass-card,
  .service-card,
  .feature-card {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  #features,
  #about,
  #services,
  #portfolio,
  #social,
  #testimonials,
  #team,
  #contact {
    padding: 60px 0;
  }
  
  .orb {
    display: none;
  }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Glow Effect */
.glow {
  box-shadow: var(--shadow-glow);
}

/* Gradient Border */
.gradient-border {
  position: relative;
  background: var(--glass-white);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--primary-gradient);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
