
 
 
/* NAVBAR */

    .info-section {
      padding: 24px 24px;
      position: relative;
      overflow: hidden;
    }

    /* subtle background decoration */
    .info-section::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(11,114,133,0.04) 0%, rgba(255,255,255,0) 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .info-section::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(183,110,74,0.03) 0%, rgba(255,255,255,0) 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .info-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
      z-index: 2;
    }

    /* MODERN CARD DESIGN - glassmorphism + soft shadows */
    .info-card {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(2px);
      border-radius: 32px;
      padding: 32px 28px;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0,0,0,0.02);
      position: relative;
    }

    .info-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
      border-color: rgba(11, 114, 133, 0.2);
    }

    /* Card Header with icon */
    .card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .icon-circle {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #eef7f5 0%, #e0f0ed 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .icon-circle i {
      font-size: 26px;
      color: #0b7285;
    }

    .info-card h3 {
      font-size: 1.65rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: #1a2c30;
      margin: 0;
      font-family: 'Playfair Display', serif;
    }

    /* time slots styling */
    .time-list {
      margin: 20px 0 28px;
    }

    .time-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px dashed #e2e8f0;
    }

    .time-item:last-child {
      border-bottom: none;
    }

    .day {
      font-weight: 600;
      color: #2c4a4e;
    }

    .hours {
      font-weight: 500;
      color: #5f7a7e;
      background: #f1f6f9;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.85rem;
    }

    .badge-appt {
      background: #0b7285;
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 30px;
      display: inline-block;
      margin-top: 8px;
    }

    /* Modern Button */
    .btn-modern {
      width: 100%;
      background: #0b7285;
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 44px;
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s;
      cursor: pointer;
      margin-top: 16px;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 4px 10px rgba(11,114,133,0.2);
    }

    .btn-modern i {
      font-size: 1.1rem;
      transition: transform 0.2s;
    }

    .btn-modern:hover {
      background: #095c6b;
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(11,114,133,0.25);
    }

    .btn-modern:hover i {
      transform: translateX(4px);
    }

    /* Input group (premium style) */
    .input-group {
      margin-bottom: 20px;
    }

    .input-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #6b8a8f;
      margin-bottom: 8px;
    }

    .input-group input {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid #e2edf2;
      border-radius: 28px;
      font-size: 0.95rem;
      transition: all 0.25s;
      background: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    .input-group input:focus {
      outline: none;
      border-color: #0b7285;
      box-shadow: 0 0 0 3px rgba(11,114,133,0.1);
    }

    /* HIGHLIGHT CARD (make appointment) - warm & premium */
    .info-card.highlight {
      background: linear-gradient(135deg, #0b7285 0%, #0e5f6e 100%);
      color: white;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .info-card.highlight::after {
     
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 60px;
      opacity: 0.1;
      pointer-events: none;
    }

    .info-card.highlight .icon-circle {
      background: rgba(255, 255, 255, 0.2);
    }

    .info-card.highlight .icon-circle i {
      color: white;
    }

    .info-card.highlight h3 {
      color: white;
    }

    .info-card.highlight p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
      line-height: 1.5;
      margin: 18px 0 22px;
    }

    .call-btn-premium {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: white;
      color: #0b7285;
      padding: 14px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.2rem;
      transition: all 0.3s;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .call-btn-premium i {
      font-size: 1.3rem;
    }

    .call-btn-premium:hover {
      transform: scale(1.02);
      background: #fef9f2;
      gap: 18px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .small-note {
      font-size: 0.7rem;
      margin-top: 16px;
      text-align: center;
      opacity: 0.8;
    }

    /* Request call back - modern with floating effect */
    .floating-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      opacity: 0.2;
      font-size: 42px;
      color: #0b7285;
      pointer-events: none;
    }

    .info-card:not(.highlight) {
      position: relative;
    }

    /* Responsive elegance */
    @media (max-width: 1000px) {
      .info-container {
        gap: 24px;
      }
      .info-card {
        padding: 28px 22px;
      }
      .card-header h3 {
        font-size: 1.45rem;
      }
    }

    @media (max-width: 850px) {
      .info-container {
        grid-template-columns: 1fr;
        max-width: 520px;
      }
      .info-section {
        padding: 60px 20px;
      }
    }

    @media (max-width: 480px) {
      .info-card {
        padding: 24px 20px;
      }
      .call-btn-premium {
        font-size: 1rem;
        padding: 12px 18px;
      }
      .btn-modern {
        padding: 12px 16px;
      }
    }

    /* subtle animation on load */
    .info-card {
      animation: fadeUp 0.5s ease-out forwards;
      opacity: 0;
      transform: translateY(20px);
    }
    .info-card:nth-child(1) { animation-delay: 0.05s; }
    .info-card:nth-child(2) { animation-delay: 0.1s; }
    .info-card:nth-child(3) { animation-delay: 0.15s; }

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

    /* ========== REDESIGNED ABOUT SECTION РђЊ PREMIUM & MODERN ========== */
    .about-premium {
      padding: 100px 24px;
      background: linear-gradient(120deg, #ffffff 0%, #fefaf7 100%);
      position: relative;
      overflow: hidden;
    }

    /* elegant decorative circles */
    .about-premium::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -5%;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(11,114,133,0.03) 0%, rgba(255,255,255,0) 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-premium::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(183,110,74,0.04) 0%, rgba(255,255,255,0) 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-container-premium {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* LEFT CONTENT AREA РђЊ elegant typography */
    .about-text-premium {
      animation: fadeInLeft 0.6s ease-out;
    }

    .premium-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(11, 114, 133, 0.1);
      padding: 6px 18px 6px 16px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #0b7285;
      margin-bottom: 24px;
    }

    .premium-tag i {
      font-size: 0.8rem;
    }

    .about-text-premium h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.6rem;
      font-weight: 600;
      line-height: 1.2;
      color: #1a2c30;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .about-text-premium h1 span {
      color: #b76e4a;
      font-style: italic;
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .about-text-premium h1 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(183, 110, 74, 0.2);
      z-index: -1;
      border-radius: 4px;
    }

    .elegant-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-style: italic;
      color: #5f7a7e;
      margin-bottom: 24px;
      padding-left: 20px;
      border-left: 3px solid #b76e4a;
      font-weight: 500;
    }

    .desc-text {
      color: #4a5e63;
      line-height: 1.7;
      margin-bottom: 28px;
      font-size: 1rem;
    }

    /* FEATURE GRID РђЊ premium icons */
    .feature-grid-premium {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 32px 0 36px;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      background: #ffffff;
      padding: 18px 16px;
      border-radius: 20px;
      transition: all 0.3s;
      border: 1px solid #f0e6df;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .feature-item:hover {
      transform: translateY(-5px);
      border-color: rgba(183, 110, 74, 0.3);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #fef5ef, #faeede);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon i {
      font-size: 24px;
      color: #b76e4a;
    }

    .feature-item h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #1a2c30;
    }

    .feature-item p {
      font-size: 0.8rem;
      color: #7a8e92;
      line-height: 1.4;
    }

    /* CTA BUTTON (modern) */
    .btn-about-premium {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #0b7285;
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s;
      box-shadow: 0 6px 14px rgba(11, 114, 133, 0.25);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .btn-about-premium i {
      transition: transform 0.2s;
    }

    .btn-about-premium:hover {
      background: #095c6b;
      transform: translateY(-2px);
      box-shadow: 0 12px 22px rgba(11, 114, 133, 0.3);
      gap: 16px;
    }

    .btn-about-premium:hover i {
      transform: translateX(4px);
    }

    /* RIGHT IMAGE РђЊ modern curved + overlay */
    .about-image-premium {
      position: relative;
      animation: fadeInRight 0.6s ease-out;
    }

    .image-wrapper {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s;
    }

    .image-wrapper:hover {
      transform: scale(1.01);
    }

    .about-image-premium img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s;
      object-fit: cover;
    }

    .image-wrapper:hover img {
      transform: scale(1.02);
    }

    /* floating badge on image */
    .floating-badge {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      padding: 12px 20px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      font-weight: 700;
      color: #1a2c30;
      font-size: 0.9rem;
    }

    .floating-badge i {
      color: #b76e4a;
      font-size: 1.2rem;
    }


    /* animations */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* responsive design */
    @media (max-width: 1024px) {
      .about-container-premium {
        gap: 40px;
      }
      .about-text-premium h1 {
        font-size: 2.8rem;
      }
      .feature-grid-premium {
        gap: 12px;
      }
    }

    @media (max-width: 900px) {
      .about-premium {
        padding: 70px 20px;
      }
      .about-container-premium {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .about-text-premium h1 {
        font-size: 2.5rem;
      }
      .feature-grid-premium {
        grid-template-columns: repeat(3, 1fr);
      }
      .floating-badge {
        bottom: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 0.8rem;
      }
    }

    @media (max-width: 600px) {
      .feature-grid-premium {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .trust-stats {
        flex-direction: column;
        gap: 12px;
      }
      .about-text-premium h1 {
        font-size: 2rem;
      }
      .elegant-quote {
        font-size: 1.1rem;
      }
    }

    /* decorative plus sign */
    .decor-dots {
      position: absolute;
      bottom: 30px;
      left: 30px;
      width: 80px;
      height: 80px;
      background-image: radial-gradient(#0b7285 2px, transparent 2px);
      background-size: 12px 12px;
      opacity: 0.2;
      pointer-events: none;
      z-index: 1;
    }

    /* ========== DENTAL SERVICES SECTION - PREMIUM REDESIGN ========== */
    .dental-services {
      background: linear-gradient(145deg, #fefdfb 0%, #f8f4ef 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    /* decorative elements */
    .dental-services::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(11,114,133,0.03) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .dental-services::after {
    
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: 120px;
      opacity: 0.03;
      pointer-events: none;
      transform: rotate(-15deg);
    }

    /* section title - elegant dental focus */
    .dental-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .dental-title .subtitle-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(11, 114, 133, 0.12);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #0b7285;
      margin-bottom: 18px;
    }

    .dental-title h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: #1a3c3f;
      letter-spacing: -0.02em;
    }

    .dental-title h2 span {
      color: #b76e4a;
      font-style: italic;
      position: relative;
      display: inline-block;
    }

    .dental-title h2 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(183, 110, 74, 0.25);
      z-index: -1;
      border-radius: 3px;
    }

    .dental-title .title-desc {
      color: #6b8a8f;
      max-width: 550px;
      margin: 16px auto 0;
      font-size: 1rem;
    }

    /* FLIP CARD - DENTAL PREMIUM STYLE */
    .flip-card {
      background: transparent;
      width: 100%;
      height: 400px;
      perspective: 1500px;
      cursor: pointer;
      margin-bottom: 30px;
    }

    .flip-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      transform-style: preserve-3d;
      border-radius: 28px;
    }

    .flip-card:hover .flip-inner,
    .flip-card.active .flip-inner {
      transform: rotateY(180deg);
    }

    /* FRONT & BACK common */
    .flip-front, .flip-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 28px;
      overflow: hidden;
    }

    /* FRONT SIDE - elegant dental card */
    .flip-front {
      background: #ffffff;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 20px;
      text-align: center;
      border: 1px solid rgba(183, 110, 74, 0.15);
      transition: all 0.3s;
    }

    .flip-front:hover {
      border-color: rgba(11, 114, 133, 0.3);
      box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.12);
    }

    /* dental icon wrapper (modern) */
    .dental-icon-wrapper {
      width: 25px;
      height: 35px;
      background: linear-gradient(135deg, #eef7f5, #e2f0ec);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s;
    }

    .flip-front:hover .dental-icon-wrapper {
      transform: scale(1.05);
      background: linear-gradient(135deg, #e0f0ed, #d4e8e4);
    }

    .dental-icon-wrapper i {
      font-size: 32px;
      color: #0b7285;
    }

    /* service image (tooth model or icon style) */
    .service-visual {
      width: 100%;
      max-width: 280px;
      height: 230px;
      margin: 12px 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

  .service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ­ЪћЦ fills entire box */
  border-radius: 10px; /* optional for clean UI */
}

    .flip-front:hover .service-visual img {
      transform: scale(1.02);
    }

    .flip-front h5 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1a3c3f;
      margin-top: 12px;
      margin-bottom: 0;
      letter-spacing: -0.2px;
    }

    .service-tag {
      font-size: 0.7rem;
      color: #b76e4a;
      font-weight: 600;
      background: #fef5ef;
      padding: 4px 12px;
      border-radius: 30px;
      margin-top: 10px;
      display: inline-block;
    }

    /* BACK SIDE - elegant gradient with dental feel */
    .flip-back {
      background: linear-gradient(145deg, #0b7285 0%, #0e5f6e 100%);
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      box-shadow: 0 20px 35px -10px rgba(11, 114, 133, 0.3);
    }

    .flip-back::before {
    
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 55px;
      opacity: 0.08;
      pointer-events: none;
    }

    .flip-back p {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 28px;
      font-weight: 500;
    }

    .btn-dental {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #ffffff;
      color: #0b7285;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.85rem;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn-dental i {
      transition: transform 0.2s;
    }

    .btn-dental:hover {
      background: #FFD700;
      color: #1a3c3f;
      gap: 16px;
      transform: translateY(-2px);
    }

    .btn-dental:hover i {
      transform: translateX(4px);
    }

    /* floating animation for cards */
    @keyframes gentleFloat {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-6px); }
      100% { transform: translateY(0px); }
    }

    .flip-card {
      animation: gentleFloat 4s ease-in-out infinite;
      animation-delay: calc(var(--delay, 0) * 0.15s);
    }

    .flip-card:nth-child(1) { --delay: 1; }
    .flip-card:nth-child(2) { --delay: 2; }
    .flip-card:nth-child(3) { --delay: 3; }
    .flip-card:nth-child(4) { --delay: 4; }
    .flip-card:nth-child(5) { --delay: 5; }
    .flip-card:nth-child(6) { --delay: 6; }

    /* glow border effect on hover (premium) */
    .flip-card {
      position: relative;
      border-radius: 28px;
    }

    .flip-card::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(135deg, #b76e4a, #0b7285, #f3b33d);
      border-radius: 30px;
      opacity: 0;
      transition: opacity 0.4s;
      z-index: -1;
    }

    .flip-card:hover::after {
      opacity: 0.5;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .dental-services {
        padding: 70px 0;
      }
      .dental-title h2 {
        font-size: 2.8rem;
      }
      .flip-card {
        height: 380px;
      }
    }

    @media (max-width: 768px) {
      .dental-title h2 {
        font-size: 2.2rem;
      }
      .flip-card {
        height: 360px;
      }
      .flip-front h5 {
        font-size: 1.1rem;
      }
      .dental-icon-wrapper {
        width: 70px;
        height: 70px;
      }
      .dental-icon-wrapper i {
        font-size: 34px;
      }
    }

    @media (max-width: 576px) {
      .dental-services {
        padding: 50px 0;
      }
      .flip-card {
        height: 340px;
      }
      .service-visual {
        max-width: 240px;
        height: 170px;
      }
      .flip-back p {
        font-size: 0.85rem;
      }
      .btn-dental {
        padding: 8px 20px;
        font-size: 0.75rem;
      }
    }

    /* image modal (preserved from original) */
    .image-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      align-items: center;
      justify-content: center;
    }
    .close-modal {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      cursor: pointer;
    }
    
    /* ========== PREMIUM DOCTOR SECTION - ATTRACTIVE & ANIMATED ========== */
    .doctor-premium {
      padding: 100px 24px;
      background: linear-gradient(145deg, #fefdfb 0%, #f9f6f2 100%);
      position: relative;
      overflow: hidden;
    }

    /* decorative elements */
    .doctor-premium::before {
   
      position: absolute;
      top: 5%;
      left: -3%;
      font-size: 180px;
      opacity: 0.03;
      pointer-events: none;
      transform: rotate(-20deg);
    }

    .doctor-premium::after {
      content: '';
      position: absolute;
      bottom: -15%;
      right: -5%;
      width: 600px;
      height: 500px;
      background: radial-gradient(circle, rgba(11,114,133,0.03) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .doctor-container-premium {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    /* LEFT SIDE - ELEGANT TEXT SECTION */
    .doctor-info-premium {
      flex: 1;
      animation: slideInLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    }

    .premium-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(11, 114, 133, 0.12);
      padding: 6px 20px 6px 18px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #0b7285;
      margin-bottom: 24px;
    }

    .premium-badge i {
      font-size: 0.8rem;
    }

    .doctor-info-premium h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      color: #1a3c3f;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .doctor-info-premium h2 span {
      color: #b76e4a;
      position: relative;
      display: inline-block;
    }

    .doctor-info-premium h2 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(183, 110, 74, 0.3);
      z-index: -1;
      border-radius: 3px;
    }

    .doctor-desc {
      color: #6b8a8f;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 450px;
    }

    .stats-row {
      display: flex;
      gap: 35px;
      margin-bottom: 35px;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #0b7285;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #8aa6ab;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-premium {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: linear-gradient(115deg, #0b7285, #0d5e6e);
      color: white;
      padding: 14px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s;
      box-shadow: 0 8px 20px rgba(11, 114, 133, 0.3);
      border: none;
      cursor: pointer;
    }

    .btn-premium i {
      transition: transform 0.2s;
    }

    .btn-premium:hover {
      transform: translateY(-3px);
      background: linear-gradient(115deg, #0d5e6e, #0a4d5a);
      box-shadow: 0 14px 28px rgba(11, 114, 133, 0.4);
      gap: 18px;
    }

    .btn-premium:hover i {
      transform: translateX(5px);
    }

    /* RIGHT SIDE - DOCTOR CARDS (ENLARGED WIDTH & HEIGHT) */
    .doctor-cards-premium {
      flex: 1.4;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .doctor-card-premium {
      background: #ffffff;
      border-radius: 32px;
      overflow: hidden;
      width: 300px;  /* INCREASED WIDTH */
      min-width: 300px;
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
      box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
      position: relative;
      animation: fadeUp 0.7s ease forwards;
      opacity: 0;
      transform: translateY(30px);
      cursor: pointer;
    }

    .doctor-card-premium:nth-child(1) {
      animation-delay: 0.1s;
    }
    .doctor-card-premium:nth-child(2) {
      animation-delay: 0.3s;
    }

    .doctor-card-premium:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 35px 55px -18px rgba(0, 0, 0, 0.22);
    }

    /* image wrapper - INCREASED HEIGHT */
    .card-img-wrapper {
      position: relative;
      overflow: hidden;
      height: 360px;  /* INCREASED HEIGHT for better visibility */
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .doctor-card-premium:hover .card-img-wrapper img {
      transform: scale(1.08);
    }

    .img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .doctor-card-premium:hover .img-overlay {
      opacity: 1;
    }

    /* card content - more spacing */
    .card-content-premium {
      padding: 24px 22px 30px;
      text-align: center;
      background: white;
      position: relative;
    }

    .doctor-icon {
      width: 65px;
      height: 65px;
      background: linear-gradient(135deg, #eef7f5, #e2f0ec);
      border-radius: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -48px auto 18px;
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .doctor-icon i {
      font-size: 30px;
      color: #0b7285;
    }

    .card-content-premium h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1a3c3f;
      margin-bottom: 8px;
    }

    .specialty {
      color: #b76e4a;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fef5ef;
      padding: 6px 18px;
      border-radius: 40px;
      margin-bottom: 18px;
    }

    /* VIEW PROFILE BUTTON - NEW ADDITION */
    .view-profile-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: transparent;
      border: 2px solid #0b7285;
      color: #0b7285;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.3s;
      margin-top: 8px;
      width: 100%;
      cursor: pointer;
    }

    .view-profile-btn i {
      font-size: 0.85rem;
      transition: transform 0.2s;
    }

    .view-profile-btn:hover {
      background: #0b7285;
      color: white;
      gap: 14px;
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(11, 114, 133, 0.25);
    }

    .view-profile-btn:hover i {
      transform: translateX(4px);
    }


.social-icons {
  opacity: 0;
  transform: translateY(10px);
}


.doctor-card-premium .social-icons {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.doctor-card-premium:hover .social-icons {
 color: #8aa6ab;
  opacity: 1;
  transform: translateY(0);
}

#footer .social-icons {
  opacity: 1;
  transform: translateY(0);
}

    .experience-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: rgba(255, 215, 0, 0.95);
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 800;
      color: #1a3c3f;
      z-index: 3;
      backdrop-filter: blur(4px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* animations */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

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

    /* floating animation for cards */
    @keyframes gentleFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-6px); }
    }

    .doctor-card-premium {
      animation: fadeUp 0.7s ease forwards, gentleFloat 5s ease-in-out infinite;
      animation-delay: 0.1s, 0.5s;
    }

    .doctor-card-premium:nth-child(2) {
      animation-delay: 0.2s, 0.7s;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .doctor-cards-premium {
        gap: 30px;
      }
      .doctor-card-premium {
        width: 290px;
      }
      .card-img-wrapper {
        height: 330px;
      }
    }

    @media (max-width: 1000px) {
      .doctor-container-premium {
        gap: 50px;
      }
      .doctor-info-premium h2 {
        font-size: 2.6rem;
      }
      .doctor-card-premium {
        width: 300px;
      }
      .card-img-wrapper {
        height: 340px;
      }
    }

    @media (max-width: 900px) {
      .doctor-premium {
        padding: 70px 20px;
      }
      .doctor-container-premium {
        flex-direction: column;
        text-align: center;
      }
      .doctor-info-premium {
        text-align: center;
      }
      .doctor-desc {
        margin-left: auto;
        margin-right: auto;
      }
      .stats-row {
        justify-content: center;
      }
      .doctor-cards-premium {
        justify-content: center;
      }
      .btn-premium {
        margin: 0 auto;
      }
    }

    @media (max-width: 700px) {
      .doctor-info-premium h2 {
        font-size: 2.2rem;
      }
      .doctor-card-premium {
        width: 100%;
        max-width: 360px;
      }
      .card-img-wrapper {
        height: 320px;
      }
      .stats-row {
        gap: 25px;
      }
      .stat-number {
        font-size: 1.6rem;
      }
      .card-content-premium h3 {
        font-size: 1.35rem;
      }
    }

    @media (max-width: 480px) {
      .doctor-card-premium {
        max-width: 100%;
      }
      .card-img-wrapper {
        height: 280px;
      }
      .view-profile-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
      }
    }

    
    /* ========== PREMIUM BEFORE & AFTER SECTION - REDESIGNED ========== */
    .ba-premium {
      padding: 100px 24px;
      background: linear-gradient(145deg, #fefdfb 0%, #faf7f3 100%);
      position: relative;
      overflow: hidden;
    }

    /* decorative elements */
    .ba-premium::before {
     
      position: absolute;
      top: 5%;
      right: 3%;
      font-size: 200px;
      opacity: 0.03;
      pointer-events: none;
    }

    .ba-premium::after {
     
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(11,114,133,0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ba-container-premium {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* SECTION HEADER - ELEGANT */
    .ba-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .ba-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(11, 114, 133, 0.12);
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #0b7285;
      margin-bottom: 20px;
    }

    .ba-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: #1a3c3f;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .ba-header h2 span {
      color: #b76e4a;
      font-style: italic;
      position: relative;
    }

    .ba-header h2 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(183, 110, 74, 0.25);
      z-index: -1;
      border-radius: 3px;
    }

    .ba-header p {
      color: #6b8a8f;
      max-width: 550px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* CARD GRID */
    .ba-grid {
      display: flex;
      justify-content: center;
      gap: 35px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    /* INDIVIDUAL CARD - GLASS MORPHISM STYLE */
    .ba-card-premium {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(2px);
      border-radius: 32px;
      overflow: hidden;
      width: 380px;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.6);
      cursor: pointer;
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
      transform: translateY(30px);
    }

    .ba-card-premium:nth-child(1) { animation-delay: 0.1s; }
    .ba-card-premium:nth-child(2) { animation-delay: 0.2s; }
    .ba-card-premium:nth-child(3) { animation-delay: 0.3s; }

    .ba-card-premium:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.15);
      border-color: rgba(11, 114, 133, 0.2);
    }

    /* SLIDER CONTAINER */
    .ba-slider-premium {
      position: relative;
      height: 320px;
      overflow: hidden;
      background: #f0ebe5;
    }

    .ba-slider-premium img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .after-wrapper-premium {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      overflow: hidden;
      height: 100%;
      transition: none;
    }

    .after-wrapper-premium img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left;
    }

    /* LABELS */
    .label-premium {
      position: absolute;
      bottom: 15px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      color: white;
      padding: 5px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      border-radius: 30px;
      letter-spacing: 0.5px;
      z-index: 5;
    }

    .before-label-premium {
      left: 15px;
    }

    .after-label-premium {
      right: 15px;
    }



    /* VIEW ALL BUTTON */
    .view-all-premium {
      text-align: center;
      margin-top: 20px;
    }

    .btn-premium-gallery {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(115deg, #0b7285, #0d5e6e);
      color: white;
      padding: 14px 38px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 6px 14px rgba(11, 114, 133, 0.25);
    }

    .btn-premium-gallery i {
      transition: transform 0.2s;
    }

    .btn-premium-gallery:hover {
      transform: translateY(-3px);
      background: linear-gradient(115deg, #0d5e6e, #0a4d5a);
      box-shadow: 0 12px 22px rgba(11, 114, 133, 0.35);
      gap: 16px;
    }

    .btn-premium-gallery:hover i {
      transform: translateX(5px);
    }

    /* MODAL - PREMIUM VERSION */
    .modal-premium {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(8px);
      justify-content: center;
      align-items: center;
      z-index: 2000;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content-premium {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 90%;
      padding: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 40px;
      backdrop-filter: blur(4px);
    }

    .modal-content-premium img {
      width: 350px;
      max-width: 45vw;
      border-radius: 24px;
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .close-premium {
      position: absolute;
      top: 25px;
      right: 35px;
      color: white;
      font-size: 42px;
      cursor: pointer;
      transition: 0.2s;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .close-premium:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    .modal-caption {
      text-align: center;
      color: white;
      margin-top: 20px;
      font-size: 0.9rem;
    }

    /* animations */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .ba-premium {
        padding: 70px 20px;
      }
      .ba-header h2 {
        font-size: 2.5rem;
      }
      .ba-card-premium {
        width: 100%;
        max-width: 420px;
      }
      .ba-slider-premium {
        height: 280px;
      }
      .modal-content-premium img {
        width: 280px;
      }
    }

    @media (max-width: 600px) {
      .ba-header h2 {
        font-size: 2rem;
      }
      .ba-slider-premium {
        height: 250px;
      }
      .modal-content-premium {
        gap: 15px;
      }
      .modal-content-premium img {
        width: 100%;
        max-width: 280px;
      }
      .close-premium {
        top: 15px;
        right: 20px;
        font-size: 32px;
      }
    }
    .drag-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  z-index: 6;
}

.drag-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.drag-circle::before {
  content: "Рєћ";
  font-size: 16px;
  color: #0b7285;
}
@media (max-width: 576px) {

  .ba-premium {
    padding: 50px 15px;
  }

  .ba-card-premium {
    border-radius: 20px;
  }

  .ba-slider-premium {
    height: 220px; /* smaller = better UX */
  }

  .ba-grid {
    gap: 20px;
  }

}

   .video-strip-section {
  padding: 40px 20px;
  background: #faf7f3;
  text-align: center;
}

.video-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.video-header span {
  color: #b76e4a;
}

.video-header p {
  color: #6b8a8f;
  margin-bottom: 40px;
}

/* SLIDER */
.video-slider {
  overflow: hidden;
  width: 100%;
}

.video-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollVideo 30s linear infinite;
}

.video-card {
  min-width: 320px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ANIMATION */
@keyframes scrollVideo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* BUTTON */
.video-btn {
  margin-top: 40px;
}

.video-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.video-btn a:hover {
  background: #cc0000;
  transform: translateY(-3px);
}


    /* ========== PREMIUM HERO SECTION - COMPLETE REDESIGN ========== */
    .hero-premium {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #0a2f35 0%, #144d55 50%, #1a6b6b 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* animated background particles */
    .hero-premium::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="50" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="150" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="170" cy="150" r="1.8" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="160" r="2" fill="rgba(255,255,255,0.07)"/></svg>');
      background-repeat: repeat;
      opacity: 0.4;
      pointer-events: none;
    }

    /* floating tooth decorations */
    .hero-premium::after {
      content: '­Ъди';
      position: absolute;
      bottom: 5%;
      right: 3%;
      font-size: 180px;
      opacity: 0.04;
      pointer-events: none;
      transform: rotate(-15deg);
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      position: relative;
      z-index: 2;
    }

    /* LEFT CONTENT - MODERN TYPOGRAPHY */
    .hero-left-premium {
      flex: 1.2;
      animation: fadeSlideRight 0.8s ease forwards;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 8px 20px;
      border-radius: 60px;
      margin-bottom: 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trust-badge i {
      color: #ffd700;
      font-size: 0.9rem;
    }

    .trust-badge span {
      color: white;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .hero-left-premium h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.8rem;
      font-weight: 700;
      line-height: 1.2;
      color: white;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .hero-left-premium h1 span {
      color: #ffd700;
      position: relative;
      display: inline-block;
    }

    .hero-left-premium h1 span::after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(255, 215, 0, 0.3);
      border-radius: 4px;
      z-index: -1;
    }

    .hero-desc {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 550px;
    }

    /* FEATURE LIST */
    .feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-bottom: 35px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-item i {
      width: 32px;
      height: 32px;
      background: rgba(255, 215, 0, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffd700;
      font-size: 0.9rem;
    }

    .feature-item span {
      color: white;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* BUTTON GROUP */
    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .btn-primary-premium {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(115deg, #ffd700, #ffb347);
      color: #1a3c3f;
      padding: 14px 34px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s;
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .btn-primary-premium i {
      transition: transform 0.2s;
    }

    .btn-primary-premium:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
      gap: 16px;
    }

    .btn-primary-premium:hover i {
      transform: translateX(5px);
    }

    .btn-outline-premium {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: white;
      padding: 12px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s;
    }

    .btn-outline-premium:hover {
      border-color: #ffd700;
      background: rgba(255, 215, 0, 0.1);
      transform: translateY(-2px);
      gap: 14px;
    }

    /* RIGHT SIDE - MODERN CARD FORM */
    .hero-right-premium {
      flex: 0.9;
      animation: fadeSlideLeft 0.8s ease forwards;
    }

    .appointment-card {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(0px);
      border-radius: 32px;
      padding: 32px 30px;
      box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s;
    }

    .appointment-card:hover {
      transform: translateY(-5px);
    }

    .card-header-premium {
      text-align: center;
      margin-bottom: 25px;
    }

    .card-header-premium i {
      font-size: 45px;
      color: #ffd700;
      background: #1a3c3f;
      width: 70px;
      height: 70px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 30px;
      margin-bottom: 15px;
    }

    .card-header-premium h3 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #1a3c3f;
      margin-bottom: 5px;
    }

    .card-header-premium p {
      font-size: 0.8rem;
      color: #7a8e92;
    }

    /* FORM STYLES */
    .form-group {
      margin-bottom: 18px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.2s;
      background: #fefefe;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #ffd700;
      box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    }

    .form-group textarea {
      height: 30px;
      resize: vertical;
    }

    .input-icon {
      position: relative;
    }

    .input-icon i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #b0c4c7;
      font-size: 1rem;
    }

    .input-icon input {
      padding-left: 42px;
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(115deg, #0b7285, #0d5e6e);
      color: white;
      border: none;
      padding: 14px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      background: linear-gradient(115deg, #0d5e6e, #0a4d5a);
      transform: translateY(-2px);
      gap: 15px;
      box-shadow: 0 8px 20px rgba(11, 114, 133, 0.3);
    }

    /* small note */
    .form-note {
      text-align: center;
      font-size: 0.7rem;
      color: #8aa6ab;
      margin-top: 18px;
    }

    /* animations */
    @keyframes fadeSlideRight {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeSlideLeft {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .hero-left-premium h1 {
        font-size: 3rem;
      }
      .hero-container {
        padding: 50px 30px;
      }
    }

    @media (max-width: 950px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }
      .hero-left-premium {
        text-align: center;
      }
      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }
      .feature-list {
        justify-content: center;
      }
      .button-group {
        justify-content: center;
      }
      .hero-right-premium {
        width: 100%;
        max-width: 500px;
      }
      .hero-left-premium h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 550px) {
      .hero-container {
        padding: 40px 20px;
      }
      .hero-left-premium h1 {
        font-size: 2rem;
      }
      .button-group {
        flex-direction: column;
        align-items: stretch;
      }
      .btn-primary-premium, .btn-outline-premium {
        justify-content: center;
      }
      .appointment-card {
        padding: 25px 20px;
      }
      .feature-list {
        gap: 15px;
      }
    }
    
    /* ========== TESTIMONIALS SECTION - INFINITE LOOP SLIDER ========== */
    .testimonials-premium {
      padding: 100px 24px;
      background: linear-gradient(145deg, #fefdfb 0%, #f9f6f2 100%);
      position: relative;
      overflow: hidden;
    }

    /* decorative elements */
    .testimonials-premium::before {
    
      position: absolute;
      top: 5%;
      right: 5%;
      font-size: 250px;
      font-family: 'Playfair Display', serif;
      color: rgba(11, 114, 133, 0.05);
      pointer-events: none;
    }

    .testimonials-premium::after {
  
      position: absolute;
      bottom: 3%;
      left: 3%;
      font-size: 120px;
      opacity: 0.04;
      pointer-events: none;
    }

    .testimonials-container {
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* SECTION HEADER */
    .testimonials-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(11, 114, 133, 0.12);
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #0b7285;
      margin-bottom: 20px;
    }

    .testimonials-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      color: #1a3c3f;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .testimonials-header h2 span {
      color: #b76e4a;
      position: relative;
    }

    .testimonials-header h2 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(183, 110, 74, 0.3);
      z-index: -1;
      border-radius: 3px;
    }

    .testimonials-header p {
      color: #6b8a8f;
      max-width: 550px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.6;
    }

    .rating-stars {
      display: flex;
      justify-content: center;
      gap: 5px;
      margin-top: 20px;
    }

    .rating-stars i {
      color: #ffc107;
      font-size: 1rem;
    }

    .rating-stars span {
      color: #8aa6ab;
      font-size: 0.85rem;
      margin-left: 8px;
    }

    /* ========== SLIDER STYLES (INFINITE LOOP) ========== */
    .slider-wrapper {
      position: relative;
      overflow: hidden;
      padding: 20px 0 40px;
    }

    .testimonial-slider {
      display: flex;
      gap: 30px;
      transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      will-change: transform;
    }

    /* TESTIMONIAL CARD */
    .testimonial-card {
      background: #ffffff;
      border-radius: 28px;
      width: 350px;
      flex-shrink: 0;
      padding: 32px 28px;
      transition: all 0.3s ease;
      box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.03);
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.15);
      border-color: rgba(11, 114, 133, 0.15);
    }

    .quote-icon {
      font-size: 2.5rem;
      color: #0b7285;
      opacity: 0.3;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #4a5e63;
      margin-bottom: 25px;
      font-style: normal;
    }

    .patient-info {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 10px;
    }

    .patient-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: linear-gradient(135deg, #eef7f5, #e2f0ec);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #0b7285;
    }

    .patient-details h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a3c3f;
      margin-bottom: 4px;
    }

    .patient-details .treatment {
      font-size: 0.7rem;
      color: #b76e4a;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .stars-small {
      display: flex;
      gap: 3px;
      margin-top: 5px;
    }

    .stars-small i {
      font-size: 0.7rem;
      color: #ffc107;
    }

    .verified-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #e8f5e9;
      padding: 4px 10px;
      border-radius: 30px;
      font-size: 0.6rem;
      font-weight: 600;
      color: #2e7d32;
    }

    /* SLIDER CONTROLS */
    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .slider-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      border: 1px solid #e2e8f0;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #0b7285;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .slider-btn:hover {
      background: #0b7285;
      color: white;
      transform: scale(1.05);
      border-color: #0b7285;
    }

    /* DOTS / PAGINATION */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 25px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d0dce0;
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      width: 28px;
      border-radius: 20px;
      background: #0b7285;
    }

    /* AUTOPLAY INDICATOR */
    .autoplay-indicator {
      text-align: center;
      margin-top: 20px;
      font-size: 0.7rem;
      color: #8aa6ab;
    }

    .autoplay-indicator i {
      margin-right: 5px;
    }

    /* STATS */
    .stats-wrapper {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #e9e2db;
    }

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

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #0b7285;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #8aa6ab;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .testimonials-premium {
        padding: 70px 20px;
      }
      .testimonials-header h2 {
        font-size: 2.5rem;
      }
      .testimonial-card {
        width: 300px;
        padding: 25px 20px;
      }
    }

    @media (max-width: 550px) {
      .testimonials-header h2 {
        font-size: 2rem;
      }
      .testimonial-card {
        width: 280px;
      }
      .stats-wrapper {
        gap: 30px;
      }
      .slider-btn {
        width: 42px;
        height: 42px;
      }
    }