/* Studio Audino - Professional Medical Website Styles */

:root {
    --primary-color: #6fcf97;
    --primary-dark: #22c55e;
    --primary-light: #a8f0c6;
    --primary-gradient: linear-gradient(135deg, #6fcf97 0%, #22c55e 100%);
    --secondary-color: #f8f9fa;
    --accent-color: #6fcf97;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #6fcf97;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }
h4 { font-size: 1.25rem; line-height: 1.5; }
h5 { font-size: 1.125rem; line-height: 1.6; }
h6 { font-size: 1rem; line-height: 1.6; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
}

/* Enhanced Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    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;
}

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

.btn-primary, .btn-success, .btn-green {
    background: var(--primary-gradient) !important;
    color: var(--white) !important;
    border: none;
}

.btn-primary:hover, .btn-success:hover, .btn-green:hover {
    background: linear-gradient(135deg, #22c55e 0%, #6fcf97 100%) !important;
    color: var(--white) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Glass Morphism Effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Advanced Modern Navigation - stesso aspetto su tutte le pagine (home, chi-siamo, team, ecc.) */
#mainNavbar {
    background: var(--white) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: var(--shadow-sm);
}

#mainNavbar.scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

/* Enhanced Brand with Larger Logo */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.brand-logo img.logo-main {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.brand-subtitle {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.brand-logo {
    position: relative;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.brand-logo img.logo-main {
    height: 80px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Custom Hamburger Menu */
.custom-toggler {
    border: none;
    padding: 0.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.custom-toggler:focus {
    box-shadow: none;
    background: rgba(48, 167, 100, 0.1);
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.custom-toggler:not(.collapsed) .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler:not(.collapsed) .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler:not(.collapsed) .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(111, 207, 151, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(111, 207, 151, 0.15);
}

/* Simplified Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover {
    background: rgba(111, 207, 151, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

.dropdown-item.disabled:hover {
    background: transparent;
    transform: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 0.1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

/* CTA Button Styles */
.btn-cta {
    background: var(--primary-gradient);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
    text-decoration: none;
}

/* Phone Link Styles */
.phone-link {
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.phone-link:hover .phone-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.phone-number {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.phone-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Simplified Dropdown Menu - Additional Styles */
.dropdown-menu .container {
    max-width: 800px;
}

.dropdown-menu .row {
    margin: 0;
}

.dropdown-menu .col-md-4 {
    padding: 0 1rem;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .dropdown-menu .col-md-4 {
        padding: 0 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.dropdown-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 1rem 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-xl);
        margin-top: 1rem;
        padding: 1.5rem;
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-link {
        padding: 1rem !important;
        margin: 0.25rem 0;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        justify-content: space-between;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(48, 167, 100, 0.1);
        border-color: var(--primary-color);
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        transform: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
        min-width: auto;
        max-width: none;
    }
    
    .dropdown-item {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .btn-cta {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .phone-link {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        background: rgba(48, 167, 100, 0.05);
    }
    
    .nav-icon {
        font-size: 1.125rem;
    }
}

/* Dropdown Animations */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    animation: dropdownFadeIn 0.3s ease;
}

/* Active Page Indicator */
.navbar-nav .nav-link.active {
    background: rgba(48, 167, 100, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link.active::after {
        right: auto;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
    }
}

/* HERO FULL IMMERSIVE SLIDER */
.hero-immersive-slider {
    position: relative;
  width: 100vw;
  min-height: 100vh;
    overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100vw;
    min-height: 100vh;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(.77,0,.18,1);
  z-index: 1;
    display: flex;
    align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-overlay {
    position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(10,20,10,0.7) 0%, rgba(34,197,94,0.25) 100%);
  z-index: 3;
}

.hero-content-immersive {
    position: relative;
  z-index: 4;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.hero-badge-immersive {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 30px;
  padding: 10px 28px;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(34,197,94,0.08);
}

.hero-title-immersive {
  font-size: 3.2rem;
  font-weight: 900;
    line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

.hero-subtitle-immersive {
  font-size: 1.25rem;
  color: #e5e5e5;
    margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-cta-immersive {
  display: inline-block;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 38px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(34,197,94,0.13);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  margin-bottom: 1.5rem;
}
.hero-cta-immersive:hover {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(34,197,94,0.18);
}

/* Slider controls */
.hero-slider-controls {
    position: absolute;
  left: 0; right: 0; bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  gap: 32px;
}
.hero-slider-prev, .hero-slider-next {
  background: rgba(34,197,94,0.13);
  color: #22c55e;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34,197,94,0.08);
}
.hero-slider-prev:hover, .hero-slider-next:hover {
  background: #22c55e;
  color: #fff;
}

.hero-slider-dots {
  display: flex;
  gap: 12px;
}
.hero-slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34,197,94,0.18);
  border: 2px solid transparent;
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
}
.hero-slider-dot.active {
  background: #22c55e;
  border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-title-immersive { font-size: 2.1rem; }
  .hero-content-immersive { padding-top: 5vh; padding-bottom: 5vh; }
}
@media (max-width: 600px) {
  .hero-title-immersive { font-size: 1.3rem; }
  .hero-badge-immersive { font-size: 0.9rem; padding: 7px 18px; }
  .hero-cta-immersive { font-size: 1rem; padding: 12px 22px; }
  .hero-slider-controls { bottom: 18px; gap: 16px; }
  .hero-slider-prev, .hero-slider-next { width: 36px; height: 36px; font-size: 1.1rem; }
  .hero-slider-dot { width: 10px; height: 10px; }
}

/* HERO ASIMMETRICA E INNOVATIVA */
.hero-asymmetric {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

/* Background dinamico a strati */
.hero-bg-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-layer-1 {
    background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    opacity: 0.8;
}

.bg-layer-2 {
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
}

.bg-layer-3 {
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    animation: bgFlow 15s linear infinite;
}

@keyframes bgShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(-20px); }
    75% { transform: translateX(-10px) translateY(10px); }
}

@keyframes bgFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contenuto principale */
.hero-main-content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    color: white;
}

/* Colonna testo */
.hero-text-column {
    display: flex;
    align-items: center;
    padding-right: 60px;
}

.hero-text-content {
    max-width: 600px;
}

/* Badge dinamico */
.dynamic-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-animation {
    display: flex;
    gap: 6px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

.badge-dot:nth-child(2) { animation-delay: 0.3s; }
.badge-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 1px;
}

/* Headline spezzata */
.headline-container {
    margin-bottom: 30px;
}

.hero-headline-main {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    overflow: hidden;
}

.headline-word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: headlineSlide 0.8s ease forwards;
}

.headline-word-1 { animation-delay: 0.2s; }
.headline-word-2 { animation-delay: 0.4s; }
.headline-word-3 { animation-delay: 0.6s; }

@keyframes headlineSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headline-accent {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.accent-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.accent-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Descrizione con evidenziazioni */
.hero-description-enhanced {
    margin-bottom: 40px;
}

.description-main {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e5e5e5;
}

.highlight {
    color: #22c55e;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #22c55e;
    transform: scaleX(0);
    animation: highlightUnderline 0.6s ease 1s forwards;
}

@keyframes highlightUnderline {
    to { transform: scaleX(1); }
}

.description-sub {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.5;
}

/* CTA innovative */
.hero-cta-innovative {
    margin-bottom: 50px;
}

.cta-primary {
    display: inline-block;
    position: relative;
    text-decoration: none;
    margin-bottom: 20px;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cta-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50px;
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-primary:hover .cta-background {
    left: 0;
}

.cta-primary:hover .cta-content {
    transform: translateY(-2px);
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary-group {
    display: flex;
    gap: 15px;
    }
    
.cta-phone, .cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-phone {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-whatsapp {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cta-phone:hover, .cta-whatsapp:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

/* Stats dinamiche */
.hero-stats-dynamic {
    display: flex;
    gap: 40px;
}

.stat-item-dynamic {
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.stat-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-progress path:first-child {
    fill: none;
    stroke: rgba(34, 197, 94, 0.2);
    stroke-width: 2;
}

.stat-progress path:last-child {
    fill: none;
    stroke: #22c55e;
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: progressFill 2s ease 1s forwards;
}

@keyframes progressFill {
    to { stroke-dashoffset: 0; }
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: #22c55e;
}

.stat-label {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Colonna visual */
.hero-visual-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Immagine principale */
.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.main-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.main-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image-container:hover .main-hero-image {
    transform: scale(1.05);
}

.image-overlay-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay-dynamic {
    opacity: 1;
}

/* Elementi fluttuanti */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 180px;
    animation: floatCard 6s ease-in-out infinite;
    pointer-events: auto;
}

.card-excellence {
    top: -30px;
    right: -40px;
    animation-delay: 0s;
}

.card-technology {
    bottom: 30px;
    left: -50px;
    animation-delay: 2s;
}

.card-care {
    top: 50%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.card-icon-dynamic {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon-dynamic i {
    color: white;
    font-size: 20px;
}

.card-content-dynamic h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.card-content-dynamic p {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Scroll indicator dinamico */
.scroll-indicator-dynamic {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #a0a0a0;
    cursor: pointer;
}

.scroll-animation {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: scrollBounce 1.5s infinite;
}

.scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.scroll-dot:nth-child(3) { animation-delay: 0.4s; }

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

.scroll-indicator-dynamic span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sezione servizi asimmetrica */
.services-asymmetric {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(59, 130, 246, 0.05));
        opacity: 0;
    transition: opacity 0.3s ease;
    }

.service-item:hover .service-background {
        opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-large i {
    color: white !important;
    font-size: 35px;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    }
    
.service-link-dynamic {
    color: #22c55e;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    }
    
.service-link-dynamic:hover {
    color: #16a34a;
    transform: translateX(5px);
    text-decoration: none;
    }

/* Responsive */
@media (max-width: 992px) {
    .hero-text-column {
        padding-right: 20px;
        margin-bottom: 50px;
    }
    
    .hero-visual-column {
        padding-left: 20px;
    }
    
    .hero-headline-main {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-main-content {
        padding: 60px 0;
    }
    
    .hero-text-column {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-visual-column {
        padding-left: 0;
    }
    
    .hero-headline-main {
        font-size: 2.5rem;
    }
    
    .hero-stats-dynamic {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 2px solid var(--light-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: rgba(48, 167, 100, 0.2);
    color: var(--text-dark);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    
    .hero-section,
    .page-header {
        background: none !important;
        color: var(--text-dark) !important;
    }
}

.fade-in { animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(40px);} to { opacity:1; transform:translateY(0);} }

/* Icone e check verdi */
.fa-check-circle, .fa-check, .fa-filling, .fa-tooth, .fa-smile, .fa-user-nurse, .fa-cut, .fa-baby {
  color: #6fcf97 !important;
}

/* Titoli verdi */
h1.text-primary, h2.text-primary, h3.text-primary, h4.text-primary, h5.text-primary, h6.text-primary {
  color: #6fcf97 !important;
}

/* Badge verdi */
.badge.bg-primary, .badge.bg-success {
  background-color: #6fcf97 !important;
  color: #fff !important;
}

/* Link verdi */
a.text-primary, a.text-success, a.text-green {
  color: #6fcf97 !important;
}

/* Override icone nelle card */
.featured-icon i, .service-icon i, .support-icon i, .consultant-card i {
  color: #6fcf97 !important;
}

.service-mini-icon i {
    color: white !important;
}

/* --- Nuovo menu servizi --- */
.services-dropdown-menu {
  min-width: 240px;
  max-width: 320px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  padding: 0.5rem 0.5rem;
}
.services-dropdown-menu .dropdown-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0.5rem 1rem 0.2rem 1rem;
  margin-bottom: 0.1rem;
  letter-spacing: 0.5px;
  background: none;
  border: none;
}
.services-dropdown-menu .dropdown-divider {
  margin: 0.3rem 0;
  border-top: 1px solid var(--border-color);
}
.services-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background: none;
  transition: var(--transition);
}
.services-dropdown-menu .dropdown-item i {
  color: var(--primary-dark) !important;
  font-size: 1.1em;
  min-width: 1.3em;
  text-align: center;
}
.services-dropdown-menu .dropdown-item:hover,
.services-dropdown-menu .dropdown-item:focus {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.services-dropdown-menu .dropdown-item.disabled,
.services-dropdown-menu .dropdown-item.disabled:hover {
  color: var(--text-muted) !important;
  background: none !important;
  cursor: not-allowed;
}
.services-dropdown-menu .dropdown-item.disabled i {
  color: var(--text-muted) !important;
}
@media (max-width: 991.98px) {
  .services-dropdown-menu {
    min-width: 180px;
    max-width: 98vw;
    font-size: 1rem;
    padding: 0.3rem 0.2rem;
  }
  .services-dropdown-menu .dropdown-item {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
  }
}

/* Overlay per menu mobile */
#mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,32,16,0.35);
  z-index: 1040;
  transition: opacity 0.3s;
  opacity: 0;
}
#mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Animazione e stile menu servizi mobile */
@media (max-width: 991.98px) {
  .services-dropdown-menu {
    position: fixed !important;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 96vw;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 1050;
    font-size: 1.15rem;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    background: #fff;
    transform: translateY(-30px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.32s cubic-bezier(.77,0,.18,1);
  }
  .services-dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .services-dropdown-menu .dropdown-item {
    font-size: 1.15rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
  }
  .services-dropdown-menu .dropdown-section-title {
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem 0.3rem 1.2rem;
  }
}

/* Drawer mobile menu servizi */
#mobile-servizi-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 1060;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 0 0 22px 22px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(.77,0,.18,1);
  max-width: 98vw;
  margin: 0 auto;
}
#mobile-servizi-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.close-mobile-menu {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary-dark);
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 2;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.mobile-servizi-list {
  list-style: none;
  margin: 0;
  padding: 2.2rem 0.5rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mobile-servizi-list li {
  margin: 0.1rem 0;
}
.mobile-servizi-list a, .mobile-servizi-list span {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.18rem;
  color: var(--text-dark);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.mobile-servizi-list a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.mobile-servizi-list i {
  color: var(--primary-dark) !important;
  font-size: 1.3em;
  min-width: 1.5em;
  text-align: center;
}
.drawer-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0.7rem 1.5rem 0.3rem 1.5rem;
  letter-spacing: 0.5px;
  background: none;
  border: none;
}
.drawer-divider {
  border-top: 1px solid var(--border-color);
  margin: 0.5rem 0;
}
.mobile-servizi-list .disabled {
  color: var(--text-muted) !important;
  background: none !important;
  cursor: not-allowed;
}
.mobile-servizi-list .disabled i {
  color: var(--text-muted) !important;
}
@media (max-width: 991.98px) {
  #mobile-servizi-menu {
    width: 100vw;
    min-height: 60vh;
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  #mobile-servizi-menu, #mobile-menu-overlay { display: none !important; }
}

/* Footer ultra-premium Studio Audino */
.footer-ultrapremium {
  background: #f8fafc;
  color: #222;
  border-top: none;
  font-size: 1rem;
  padding: 0 0 0 0;
  position: relative;
}
.footer-ultrapremium .footer-separator {
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.08);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}
/* Forza logo footer come header */
.footer-ultrapremium .footer-brand img {
  height: 60px !important;
  width: auto !important;
  margin: 0 auto 1.2rem auto !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
  display: block;
}
.footer-ultrapremium .footer-links .footer-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.footer-ultrapremium .footer-links .footer-link:hover {
  color: #fff !important;
  background: var(--primary-dark);
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.10);
  text-decoration: none;
}
.footer-ultrapremium .footer-contact-link {
  color: var(--primary-dark) !important;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-ultrapremium .footer-contact-link:hover {
  color: #111 !important;
}
.footer-ultrapremium .footer-orari strong {
  color: var(--primary-dark);
}
.footer-ultrapremium .footer-cta .btn-green {
  background: transparent !important;
  color: var(--primary-dark) !important;
  font-weight: 700;
  font-size: 1.08rem;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  box-shadow: none;
  transition: background 0.18s, color 0.18s;
}
.footer-ultrapremium .footer-cta .btn-green:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}
.footer-ultrapremium .footer-seo-keywords {
  font-size: 0.85rem;
  color: #888 !important;
  font-style: italic;
}
.footer-ultrapremium .footer-copyright {
  font-size: 0.82rem;
  color: #b0b0b0 !important;
  margin-top: 1.2rem;
}
.footer-ultrapremium .footer-social {
  gap: 1.5rem;
  margin-top: 1.1rem;
  justify-content: center !important;
}
.footer-ultrapremium .footer-social-link {
  color: var(--primary-dark) !important;
  font-size: 1.7rem;
  border: none;
  background: none;
  padding: 0;
  transition: color 0.18s, transform 0.18s;
}
.footer-ultrapremium .footer-social-link:hover {
  color: #22c55e !important;
  transform: scale(1.18);
}
.footer-ultrapremium .footer-main {
  padding: 2.5rem 0 1.2rem 0;
}
@media (max-width: 991.98px) {
  .footer-ultrapremium .row > div {
    margin-bottom: 2.2rem;
  }
  .footer-ultrapremium .footer-cta .btn-green {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
  .footer-ultrapremium .footer-social {
    justify-content: center !important;
  }
  .footer-ultrapremium .footer-links {
    align-items: center !important;
  }
  .footer-ultrapremium .footer-main {
    padding: 1.5rem 0 0.7rem 0;
  }
  .footer-ultrapremium .footer-brand img {
    height: 44px;
    margin-bottom: 0.9rem;
  }
}

/* Team Section Premium */
.team-section-premium {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.team-section-premium .team-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.team-section-premium .team-subtitle {
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}
.team-card-premium {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.08);
  border: 1.5px solid #e6f7ed;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 2.2rem;
}
.team-card-premium:hover {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.16);
  transform: translateY(-6px) scale(1.025);
}
.team-avatar-premium {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.1rem auto;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.10);
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name-premium {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}
.team-role-premium {
  font-size: 1.05rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.team-bio-premium {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 1.1rem;
  min-height: 48px;
}
.team-social-premium {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 0.2rem;
}
.team-social-premium a {
  color: var(--primary-dark);
  font-size: 1.25rem;
  transition: color 0.18s, transform 0.18s;
}
.team-social-premium a:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}
@media (min-width: 992px) {
  .team-section-premium .team-row {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
  }
  .team-section-premium .team-card-premium {
    flex: 1 1 0;
    min-width: 0;
    max-width: 370px;
  }
}
@media (max-width: 991.98px) {
  .team-section-premium .team-row {
    display: block;
  }
  .team-section-premium .team-card-premium {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}

/* Technology Section Premium */
.technology-section-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.technology-section-premium::before {
    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="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%236fcf97" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.technology-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.technology-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technology-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technology-category {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.technology-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.technology-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(111, 207, 151, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.technology-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.technology-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--light-bg);
}

.technology-item:hover {
    background: rgba(111, 207, 151, 0.05);
    transform: translateX(5px);
}

.tech-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

.tech-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tech-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.btn-technology {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-technology:hover {
    background: linear-gradient(135deg, #22c55e 0%, #6fcf97 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .technology-category {
        padding: 1.5rem;
    }
    
    .technology-title {
        font-size: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .technology-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .tech-icon {
        align-self: center;
    }
}

/* News Section Premium */
.news-section-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.news-section-premium::before {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236fcf97" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.news-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Featured Article */
.news-featured {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.news-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-featured:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 207, 151, 0.9) 0%, rgba(34, 197, 94, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
}

.featured-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: flex-start;
}

.featured-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.featured-content {
    padding: 2rem;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.btn-featured {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-featured:hover {
    background: linear-gradient(135deg, #22c55e 0%, #6fcf97 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Regular Articles */
.news-regular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-card-premium {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.news-card-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card-premium:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-date, .news-reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.news-card-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.btn-news-premium {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-news-premium:hover {
    background: linear-gradient(135deg, #22c55e 0%, #6fcf97 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-regular {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 1rem;
    }
    
    .featured-title {
        font-size: 1.25rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .news-card-content {
        padding: 1rem;
    }
    
    .news-card-title {
        font-size: 1.125rem;
    }
}

/* About Page Premium Styles */

/* Hero Section */
.about-hero-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero-premium::before {
    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="%236fcf97" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-hero-image {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Story Section */
.story-section-premium {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.timeline-item-premium {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item-premium:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    margin: 0 3rem;
    flex: 1;
    position: relative;
    min-height: 200px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.timeline-item-premium:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item-premium:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-achievements {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.achievement {
    background: rgba(111, 207, 151, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Team Section */
.team-section-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    padding: 6rem 0;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.team-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-card-premium {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.team-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}


.team-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-premium:hover .team-avatar-premium img {
    transform: scale(1.05);
}

.team-social-premium {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.team-social-premium a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-social-premium a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.team-info-premium {
    padding: 2rem;
}

.team-name-premium {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role-premium {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio-premium {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.credential i {
    color: var(--primary-color);
    width: 16px;
}

/* Values Section */
.values-section-premium {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.values-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-premium {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.value-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.value-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card-premium p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.value-features span {
    background: rgba(111, 207, 151, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Studio Features */
.studio-features-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    padding: 6rem 0;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.studio-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.studio-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.studio-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.studio-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.studio-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.studio-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.studio-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.about-cta-premium {
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-cta-premium::before {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta-primary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-premium {
        padding: 6rem 0 4rem;
    }
    
    .story-section-premium,
    .team-section-premium,
    .values-section-premium,
    .studio-features-premium {
        padding: 4rem 0;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .story-timeline::before {
        left: 3rem;
    }
    
    .timeline-item-premium {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .timeline-item-premium:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
        padding: 2rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .studio-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-hero-premium {
        padding: 4rem 0 3rem;
    }
    
    .story-section-premium,
    .team-section-premium,
    .values-section-premium,
    .studio-features-premium {
        padding: 3rem 0;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-title, .team-title, .values-title, .studio-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
        padding: 1.5rem;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        min-width: 100px;
    }
    
    .team-avatar-premium {
        height: 200px;
    }
    
    .team-info-premium {
        padding: 1.5rem;
    }
    
    .value-card-premium, .studio-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .about-hero-content {
        gap: 1.5rem;
    }
    
    .hero-main-image {
        height: 300px;
    }
}

/* About Page Styles - Clean and SEO Optimized */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Studio Overview */
.studio-overview {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(111, 207, 151, 0.3);
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section Professional */
.team-section {
    background: white;
}

.team-card-professional {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card-professional:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.team-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-specialty {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.team-content {
    padding: 2rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-qualifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.qualification i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.qualification span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(111, 207, 151, 0.3);
}

.reason-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Services Overview */
.services-overview {
    background: var(--light-bg);
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(111, 207, 151, 0.3);
}

.service-overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About CTA */
.about-cta {
    background: var(--primary-gradient);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.about-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .team-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .overview-card,
    .reason-card,
    .service-overview-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Services Pages Styles - Clean and SEO Optimized */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Cards Professional */
.service-card-professional {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card-professional:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-professional:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(111, 207, 151, 0.3);
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Choose Services */
.why-choose-services {
    background: var(--light-bg);
}

/* Services CTA */
.services-cta {
    background: var(--primary-gradient);
    color: white;
}

.services-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.services-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Service Detail Hero */
.service-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
}

.service-detail-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-detail-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Detail Content */
.service-detail-content {
    background: white;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
}

.service-detail-content .card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-content .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-content .card-header {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px 12px 0 0;
}

.service-detail-content .accordion-button {
    background: white;
    border: 1px solid #e9ecef;
    color: var(--text-dark);
    font-weight: 500;
}

.service-detail-content .accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
}

.service-detail-content .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(111, 207, 151, 0.25);
}

/* Related Services */
.related-services {
    background: var(--light-bg);
}

.related-services .card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.related-services .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    color: var(--primary-color);
}

.related-services .card-body {
    text-align: center;
}

.related-services i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.related-services h6 {
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero-title,
    .service-detail-hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero-cta,
    .service-detail-hero-cta {
        flex-direction: column;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-hero,
    .service-detail-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero-title,
    .service-detail-hero-title {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1rem;
    }
}

/* New Clean Service Detail Styles */
.service-detail-content {
    background: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content .lead {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-content ol {
    padding-left: 1.5rem;
}

.service-detail-content ol li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Technology Cards */
.technology-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.technology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.technology-icon i {
    font-size: 2rem;
    color: white;
}

.technology-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.technology-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Treatment Cards */
.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.treatment-icon i {
    font-size: 1.5rem;
    color: white;
}

.treatment-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.treatment-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Treatment Phases */
.treatment-phases {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phase-card {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateX(5px);
}

.phase-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.phase-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.phase-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Info Sidebar */
.info-sidebar {
    position: sticky;
    top: 120px;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.info-card ul li {
    padding: 0.3rem 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card ol li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.info-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-divider {
    height: 1px;
    background: #e9ecef;
    margin: 1.5rem 0;
}

.contact-buttons {
    margin-bottom: 1.5rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Info Alert */
.info-alert {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #90caf9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.info-alert i {
    color: #1976d2;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.info-alert p {
    color: #1565c0;
    margin: 0;
    line-height: 1.6;
}

/* Related Services */
.related-services {
    background: white;
}

.related-services h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.service-link-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

/* Responsive Design for New Service Detail */
@media (max-width: 768px) {
    .service-detail-hero-title {
        font-size: 2rem;
    }
    
    .service-detail-hero-cta {
        flex-direction: column;
    }
    
    .service-detail-hero-cta .btn {
        width: 100%;
    }
    
    .phase-card {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .info-sidebar {
        position: static;
        margin-top: 2rem;
    }
}


.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color)!important;
    }


    .text-primary {
        --bs-bg-opacity: 1;
        color: var(--primary-color)!important;
        }

        .fa-check, .fa-filling, .fa-tooth, .fa-smile, .fa-user-nurse, .fa-cut, .fa-baby {
            color: #fff !important;
            }

            .featured-icon i, .service-icon i, .support-icon i, .consultant-card i {
                color: #fff !important;
                }