 
::selection {
            background: #d4af3760; 
            color: #ffffff60; 
        }
        
        :root {
          --black: #000000;
          --dark-black: #0a0a0a;
          --darker-black: #111111;
          --medium-black: #1a1a1a;
          --light-black: #242424;
          --gold: #d4af37;
          --light-gold: #f4e179;
          --dark-gold: #b38728;
          --white: #ffffff;
          --off-white: #f8f8f8;
          --gray: #666666;
          --light-gray: #999999;
          --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
          --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--darker-black) 100%);
          --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.8);
          --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.9);
          --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.95);
          --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
          --radius-sm: 10px;
          --radius-md: 20px;
          --radius-lg: 30px;
          --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          --transition-medium: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
          --transition-slow: 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        html {
          scroll-behavior: smooth;
          scrollbar-width: thin;
          scrollbar-color: var(--gold) var(--black);
        }

        body {
          font-family: 'Inter', sans-serif;
          font-size: 16px;
          line-height: 1.6;
          color: var(--off-white);
          background-color: var(--black);
          overflow-x: hidden;
        }

        ::-webkit-scrollbar {
          width: 6px;
        }

        ::-webkit-scrollbar-track {
          background: var(--black);
        }

        ::-webkit-scrollbar-thumb {
          background: var(--gold);
          border-radius: 3px;
        }

        .container {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 2rem;
        }

        a {
          text-decoration: none;
          color: inherit;
          transition: all var(--transition-fast);
        }

        ul {
          list-style: none;
        }

        img {
          max-width: 100%;
          height: auto;
          border-radius: 15px;
        }

        h1, h2, h3, h4, h5, h6 {
          font-family: 'Playfair Display', serif;
          font-weight: 600;
          line-height: 1.2;
          margin-bottom: 1rem;
          color: var(--white);
        }

        h1 {
          font-size: clamp(3rem, 8vw, 5rem);
          font-weight: 700;
          letter-spacing: -0.02em;
        }

        h2 {
          font-size: clamp(2rem, 5vw, 3.5rem);
          margin-bottom: 3rem;
          letter-spacing: -0.01em;
        }

        h3 {
          font-size: clamp(1.5rem, 3vw, 2rem);
        }

        p {
          margin-bottom: 1.5rem;
          color: var(--light-gray);
          font-weight: 400;
        }

        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 16px 32px;
          font-weight: 600;
          text-align: center;
          cursor: pointer;
          border: none;
          border-radius: 15px;
          transition: all var(--transition-fast);
          text-transform: uppercase;
          letter-spacing: 1px;
          font-size: 0.9rem;
          position: relative;
          overflow: hidden;
          z-index: 1;
          font-family: 'Inter', sans-serif;
        }

        .btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
          transition: all 0.6s;
          z-index: -1;
        }

        .btn:hover::before {
          left: 100%;
        }

        .btn-primary {
          background: var(--gradient-gold);
          color: var(--black);
          box-shadow: var(--shadow-gold);
        }

        .btn-primary:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
          background: transparent;
          border: 2px solid var(--gold);
          color: var(--gold);
        }

        .btn-secondary:hover {
          background-color: var(--gold);
          color: var(--black);
          transform: translateY(-3px);
          box-shadow: var(--shadow-gold);
        }

        .btn-large {
          padding: 20px 40px;
          font-size: 1rem;
        }

        .header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          background: rgba(0, 0, 0, 0.95);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-bottom: 1px solid rgba(212, 175, 55, 0.1);
          z-index: 1000;
          transition: all var(--transition-fast);
        }

        .header.scrolled {
          background: rgba(0, 0, 0, 0.98);
          box-shadow: var(--shadow-md);
        }

        .navbar {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1rem 0;
          transition: all var(--transition-fast);
        }

        .logo-text {
          font-family: 'Playfair Display', serif;
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--white);
          letter-spacing: 1px;
        }

        .logo-highlight {
          background: var(--gradient-gold);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          -webkit-text-fill-color: transparent;
          animation: glow 3s ease-in-out infinite alternate;
          position: relative;
          display: inline-block;
        }

        @keyframes glow {
          0% {
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
          }
          100% {
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
          }
        }

        .nav-list {
          display: flex;
          gap: 2rem;
        }

        .nav-link {
          font-weight: 500;
          position: relative;
          padding: 0.8rem 1rem;
          color: var(--light-gray);
          border-radius: 15px;
          transition: all var(--transition-fast);
        }

        .nav-link::after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: 0;
          left: 50%;
          background: var(--gradient-gold);
          transition: all var(--transition-fast);
          transform: translateX(-50%);
        }

        .nav-link:hover {
          color: var(--gold);
          background: rgba(212, 175, 55, 0.1);
        }

        .nav-link:hover::after {
          width: 80%;
        }

        .nav-contact {
          display: flex;
          align-items: center;
          gap: 1.5rem;
        }

        .phone {
          font-weight: 500;
          color: var(--gold);
          display: flex;
          align-items: center;
          gap: 0.5rem;
          transition: all var(--transition-fast);
        }

        .phone:hover {
          color: var(--light-gold);
        }

        .burger {
          display: none;
          flex-direction: column;
          cursor: pointer;
          z-index: 2000;
          padding: 0.5rem;
        }

        .burger span {
          display: block;
          width: 25px;
          height: 3px;
          background-color: var(--white);
          margin: 3px 0;
          border-radius: 3px;
          transition: all 0.4s ease;
        }

        .burger.active span:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
          background-color: var(--gold);
        }

        .burger.active span:nth-child(2) {
          opacity: 0;
        }

        .burger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(6px, -6px);
          background-color: var(--gold);
        }

        .hero {
          height: 100vh;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          overflow: hidden;
          background: radial-gradient(ellipse at center, var(--darker-black) 0%, var(--black) 100%);
        }

        .hero-bg-elements {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 1;
        }

        .bg-element {
          position: absolute;
          border: 1px solid rgba(212, 175, 55, 0.1);
          border-radius: 50%;
        }

        .bg-element-1 {
          width: 200px;
          height: 200px;
          top: 10%;
          left: 10%;
          animation: float 15s ease-in-out infinite;
        }

        .bg-element-2 {
          width: 150px;
          height: 150px;
          top: 60%;
          right: 15%;
          animation: float 12s ease-in-out infinite reverse;
        }

        .bg-element-3 {
          width: 100px;
          height: 100px;
          bottom: 20%;
          left: 20%;
          animation: float 18s ease-in-out infinite;
        }

        .bg-element-4 {
          width: 80px;
          height: 80px;
          top: 20%;
          right: 30%;
          animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
          0%, 100% {
            transform: translateY(0px) rotate(0deg);
          }
          50% {
            transform: translateY(-20px) rotate(180deg);
          }
        }

        .floating-icons {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 2;
        }

        .floating-icon {
          position: absolute;
          color: rgba(212, 175, 55, 0.15);
          font-size: 1.5rem;
          animation: floatingIcon 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        @keyframes floatingIcon {
          0% {
            transform: translateY(100vh) rotate(0deg) scale(0);
            opacity: 0;
          }
          10% {
            transform: translateY(90vh) rotate(36deg) scale(1);
            opacity: 1;
          }
          90% {
            transform: translateY(-10vh) rotate(324deg) scale(1);
            opacity: 1;
          }
          100% {
            transform: translateY(-100px) rotate(360deg) scale(0);
            opacity: 0;
          }
        }

        .floating-icon:nth-child(1) {
          left: 10%;
          animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
          left: 20%;
          animation-delay: 3s;
        }

        .floating-icon:nth-child(3) {
          left: 30%;
          animation-delay: 6s;
        }

        .floating-icon:nth-child(4) {
          left: 40%;
          animation-delay: 9s;
        }

        .floating-icon:nth-child(5) {
          left: 50%;
          animation-delay: 12s;
        }

        .floating-icon:nth-child(6) {
          left: 60%;
          animation-delay: 15s;
        }

        .floating-icon:nth-child(7) {
          left: 70%;
          animation-delay: 18s;
        }

        .floating-icon:nth-child(8) {
          left: 80%;
          animation-delay: 21s;
        }

        .floating-icon:nth-child(9) {
          left: 90%;
          animation-delay: 24s;
        }

        .hero-content {
          position: relative;
          z-index: 10;
          max-width: 900px;
          padding: 2rem;
          opacity: 1;
          visibility: visible;
        }

        .hero-subtitle {
          font-size: clamp(1rem, 2vw, 1.2rem);
          color: var(--gold);
          font-weight: 500;
          letter-spacing: 3px;
          text-transform: uppercase;
          margin-bottom: 1rem;
          opacity: 1;
          transform: translateY(0);
        }

        .hero-title {
          font-family: 'Playfair Display', serif;
          font-size: clamp(3.5rem, 8vw, 6rem);
          font-weight: 700;
          letter-spacing: -0.02em;
          margin-bottom: 2rem;
          line-height: 1.1;
          opacity: 1;
          transform: translateY(0);
          text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-title .logo-highlight::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 100%;
          height: 3px;
          background: var(--gradient-gold);
          border-radius: 2px;
        }

        .hero-description {
          font-size: clamp(1.1rem, 2.5vw, 1.4rem);
          margin-bottom: 3rem;
          color: var(--light-gray);
          font-weight: 300;
          line-height: 1.8;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
          opacity: 1;
        }

        .hero-actions {
          display: flex;
          gap: 1.5rem;
          justify-content: center;
          flex-wrap: wrap;
          opacity: 1;
          transform: translateY(0);
        }

        .section {
          padding: 6rem 0;
          position: relative;
        }

        .section:nth-child(even) {
          background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(36, 36, 36, 0.5) 100%);
        }

        .section-title {
          text-align: center;
          position: relative;
          padding-bottom: 2rem;
        }

        .section-title::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: var(--gradient-gold);
          border-radius: 2px;
        }

        .section-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: var(--light-gray);
          margin-bottom: 3rem;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
          margin-top: 3rem;
        }

        .service-card {
          background: linear-gradient(135deg, var(--medium-black) 0%, var(--light-black) 100%);
          border-radius: 25px;
          padding: 3rem;
          text-align: center;
          border: 1px solid rgba(212, 175, 55, 0.15);
          transition: all var(--transition-medium);
          position: relative;
          overflow: hidden;
          transform: translateY(0);
        }

        .service-card::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
          opacity: 0;
          transition: all var(--transition-medium);
          transform: rotate(45deg);
        }

        .service-card::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
          transform: translateX(-100%);
          transition: transform 0.8s;
        }

        .service-card:hover {
          transform: translateY(-15px) scale(1.02);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
          border-color: rgba(212, 175, 55, 0.4);
        }

        .service-card:hover::before {
          opacity: 1;
          transform: rotate(45deg) scale(1.2);
        }

        .service-card:hover::after {
          transform: translateX(100%);
        }

        .service-icon {
          font-size: 3.5rem;
          background: var(--gradient-gold);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          margin-bottom: 1.5rem;
          display: block;
          animation: float 3s ease-in-out infinite;
          position: relative;
          z-index: 1;
        }

        .service-card:hover .service-icon {
          animation-play-state: paused;
          transform: scale(1.1);
        }

        .service-title {
          font-size: 1.5rem;
          margin-bottom: 1rem;
          color: var(--white);
        }

        .service-description {
          color: var(--light-gray);
          line-height: 1.8;
          margin-bottom: 1.5rem;
        }

        .service-price {
          font-size: 1.3rem;
          color: var(--gold);
          font-weight: 600;
        }

        .masters-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
          margin-top: 3rem;
        }

        .master-card {
          background: linear-gradient(135deg, var(--medium-black) 0%, var(--light-black) 100%);
          border-radius: 25px;
          overflow: hidden;
          border: 1px solid rgba(212, 175, 55, 0.15);
          transition: all var(--transition-medium);
          text-align: center;
          position: relative;
          transform: translateY(0);
        }

        .master-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
          transition: left 0.8s;
          z-index: 1;
        }

        .master-card:hover::before {
          left: 100%;
        }

        .master-card:hover {
          transform: translateY(-15px) rotate(-1deg);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
          border-color: rgba(212, 175, 55, 0.4);
        }

        .master-photo {
          width: 100%;
          height: 300px;
          background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--gold);
          font-size: 5rem;
          position: relative;
          overflow: hidden;
        }

        .master-photo::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 50%;
          background: linear-gradient(to top, var(--medium-black), transparent);
        }

        .master-photo i {
          animation: pulse 2s ease-in-out infinite;
          position: relative;
          z-index: 2;
        }

        @keyframes pulse {
          0%, 100% { transform: scale(1); opacity: 0.8; }
          50% { transform: scale(1.1); opacity: 1; }
        }

        .master-info {
          padding: 2.5rem;
          position: relative;
          z-index: 2;
        }

        .master-name {
          font-size: 1.8rem;
          margin-bottom: 0.5rem;
          color: var(--white);
          font-weight: 600;
        }

        .master-speciality {
          color: var(--gold);
          font-weight: 500;
          margin-bottom: 1.5rem;
          font-size: 1.1rem;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .master-description {
          color: var(--light-gray);
          line-height: 1.8;
          font-size: 0.95rem;
        }

        .gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 1.5rem;
          margin-top: 3rem;
        }

        .gallery-item {
          position: relative;
          overflow: hidden;
          border-radius: 20px;
          aspect-ratio: 1;
          background: linear-gradient(135deg, var(--medium-black) 0%, var(--light-black) 100%);
          border: 1px solid rgba(212, 175, 55, 0.15);
          transition: all var(--transition-medium);
          cursor: pointer;
          transform: scale(1);
        }

        .gallery-item::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          transition: all var(--transition-medium);
          transform: translate(-50%, -50%);
        }

        .gallery-item:hover::before {
          width: 200%;
          height: 200%;
        }

        .gallery-item:hover {
          transform: scale(1.05) rotate(2deg);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
          z-index: 10;
        }

        .gallery-placeholder {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
          color: var(--gold);
          font-size: 3.5rem;
          transition: all var(--transition-medium);
        }

        .gallery-item:hover .gallery-placeholder {
          transform: scale(1.2);
          color: var(--light-gold);
        }

        .prices-container {
          max-width: 1000px;
          margin: 0 auto;
        }

        .price-category {
          margin-bottom: 3rem;
          animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(30px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .price-category-title {
          font-size: 1.8rem;
          background: var(--gradient-gold);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          margin-bottom: 2rem;
          padding-bottom: 1rem;
          border-bottom: 2px solid rgba(212, 175, 55, 0.2);
          position: relative;
        }

        .price-category-title::after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 60px;
          height: 2px;
          background: var(--gradient-gold);
        }

        .price-list {
          display: flex;
          flex-direction: column;
          gap: 1.2rem;
        }

        .price-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1.8rem 2rem;
          background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
          border-radius: 20px;
          border: 1px solid rgba(212, 175, 55, 0.1);
          transition: all var(--transition-medium);
          position: relative;
          overflow: hidden;
        }

        .price-item::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          height: 0;
          background: var(--gradient-gold);
          transition: height var(--transition-medium);
        }

        .price-item:hover {
          transform: translateX(15px);
          border-color: rgba(212, 175, 55, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
        }

        .price-item:hover::before {
          height: 100%;
        }

        .price-service {
          color: var(--white);
          font-weight: 500;
        }

        .price-dots {
          flex: 1;
          border-bottom: 1px dotted var(--gray);
          margin: 0 1rem;
        }

        .price-value {
          color: var(--gold);
          font-weight: 600;
          font-size: 1.1rem;
        }

        .contacts-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          margin-top: 3rem;
        }

        .contact-info {
          display: flex;
          flex-direction: column;
          gap: 2rem;
        }

        .contact-item {
          display: flex;
          align-items: flex-start;
          gap: 1.5rem;
        }

        .contact-icon {
          width: 50px;
          height: 50px;
          background: var(--gradient-gold);
          border-radius: var(--radius-md);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--black);
          font-size: 1.3rem;
          flex-shrink: 0;
        }

        .contact-details h4 {
          color: var(--white);
          margin-bottom: 0.5rem;
        }

        .contact-details p {
          color: var(--light-gray);
          margin-bottom: 0;
        }

        .contact-map {
          background: linear-gradient(135deg, var(--medium-black) 0%, var(--light-black) 100%);
          border-radius: var(--radius-lg);
          height: 400px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid rgba(212, 175, 55, 0.1);
          color: var(--gold);
          font-size: 1.5rem;
        }

        .appointment-info {
          background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
          border-radius: var(--radius-lg);
          padding: 3rem;
          margin-top: 3rem;
          border: 1px solid rgba(212, 175, 55, 0.2);
          text-align: center;
        }

        .appointment-info h3 {
          color: var(--gold);
          margin-bottom: 1rem;
        }

        .appointment-info p {
          color: var(--white);
          margin-bottom: 2rem;
        }

        .footer {
          background: linear-gradient(135deg, var(--black) 0%, var(--dark-black) 100%);
          border-top: 1px solid rgba(212, 175, 55, 0.1);
          color: var(--light-gray);
          padding: 4rem 0 2rem;
          position: relative;
          overflow: hidden;
        }

        .footer::before {
          content: '';
          position: absolute;
          top: -100px;
          left: 50%;
          transform: translateX(-50%);
          width: 600px;
          height: 200px;
          background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 70%);
        }

        .footer-content {
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          margin-bottom: 3rem;
          position: relative;
          z-index: 10;
          gap: 2rem;
        }

        .footer-nav-list {
          display: flex;
          gap: 2rem;
        }

        .footer-nav-link {
          color: var(--light-gray);
          transition: all var(--transition-fast);
          position: relative;
          padding: 0.5rem 0;
        }

        .footer-nav-link::after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: 0;
          left: 0;
          background: var(--gradient-gold);
          transition: width var(--transition-fast);
        }

        .footer-nav-link:hover {
          color: var(--gold);
        }

        .footer-nav-link:hover::after {
          width: 100%;
        }

        .footer-phone {
          color: var(--gold);
          font-weight: 600;
          font-size: 1.1rem;
          display: flex;
          align-items: center;
          gap: 0.5rem;
        }

        .footer-phone:hover {
          color: var(--light-gold);
        }

        .footer-bottom {
          padding-top: 2rem;
          border-top: 1px solid rgba(212, 175, 55, 0.1);
          text-align: center;
          position: relative;
          z-index: 10;
        }

        .copyright {
          font-size: 0.9rem;
          color: var(--gray);
          line-height: 2;
        }

        .legal-info {
          margin-top: 1rem;
          font-size: 0.85rem;
          color: var(--gray);
          opacity: 0.8;
        }

        .copyright a {
          color: var(--gold);
          transition: all var(--transition-fast);
        }

        .copyright a:hover {
          color: var(--light-gold);
        }

        .copyright-heart {
          display: inline-block;
          color: var(--gold);
          animation: pulse 2s infinite;
          margin: 0 0.2rem;
        }

        @keyframes pulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.2); }
        }

        .modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.95);
          z-index: 2000;
          align-items: center;
          justify-content: center;
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          opacity: 0;
          transition: opacity var(--transition-fast);
        }

        .modal.open {
          opacity: 1;
        }

        .modal-content {
          background: linear-gradient(135deg, var(--darker-black) 0%, var(--medium-black) 100%);
          border-radius: 30px;
          max-width: 500px;
          width: 90%;
          max-height: 90vh;
          overflow-y: auto;
          padding: 0;
          position: relative;
          border: 1px solid rgba(212, 175, 55, 0.2);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
          transform: translateY(50px) scale(0.95);
          transition: all var(--transition-medium);
        }

        .modal.open .modal-content {
          transform: translateY(0) scale(1);
        }

        .modal-header {
          background: linear-gradient(135deg, var(--medium-black) 0%, var(--light-black) 100%);
          padding: 2.5rem 2rem 2rem;
          text-align: center;
          position: relative;
          border-bottom: 1px solid rgba(212, 175, 55, 0.2);
          border-radius: 30px 30px 0 0;
        }

        .modal-header h2 {
          color: var(--gold);
          margin: 0;
          font-size: 1.8rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 2px;
        }

        .close-modal {
          position: absolute;
          top: 1rem;
          right: 1rem;
          width: 40px;
          height: 40px;
          cursor: pointer;
          color: var(--light-gray);
          transition: all var(--transition-fast);
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          font-size: 1.2rem;
        }

        .close-modal:hover {
          background: rgba(212, 175, 55, 0.2);
          color: var(--gold);
          transform: rotate(90deg);
        }

        .modal-body {
          padding: 2rem;
        }

        .form-group {
          margin-bottom: 1.5rem;
        }

        .form-group label {
          display: block;
          font-weight: 500;
          margin-bottom: 0.5rem;
          color: var(--light-gray);
          font-size: 0.9rem;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
          width: 100%;
          padding: 1rem 1.2rem;
          border: 2px solid rgba(212, 175, 55, 0.2);
          border-radius: 15px;
          background: rgba(255, 255, 255, 0.05);
          color: var(--white);
          transition: all var(--transition-fast);
          font-size: 1rem;
          font-family: 'Inter', sans-serif;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
        }

        .form-group select {
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right 1rem center;
          background-size: 1.5em;
          padding-right: 3rem;
        }

        .form-group select option {
          background-color: var(--darker-black);
          color: var(--white);
          padding: 1rem;
        }

        .form-group select option:hover,
        .form-group select option:focus,
        .form-group select option:checked {
          background-color: var(--medium-black);
          color: var(--gold);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
          border-color: var(--gold);
          outline: none;
          box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
          background: rgba(212, 175, 55, 0.05);
        }

        .form-group textarea {
          resize: vertical;
          min-height: 100px;
          border-radius: 15px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
          color: var(--gray);
        }

        .form-row {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 1rem;
        }

        .form-submit-btn {
          width: 100%;
          padding: 1.2rem;
          background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
          color: var(--black);
          border: none;
          border-radius: 15px;
          font-size: 1.1rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
          cursor: pointer;
          transition: all var(--transition-fast);
          margin-top: 1rem;
          position: relative;
          overflow: hidden;
        }

        .form-submit-btn::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.3);
          transform: translate(-50%, -50%);
          transition: width 0.6s, height 0.6s;
        }

        .form-submit-btn:hover::before {
          width: 300px;
          height: 300px;
        }

        .form-submit-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .preloader {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: var(--black);
          z-index: 9999;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .preloader-content {
          text-align: center;
        }

        .preloader-logo {
          margin-bottom: 2rem;
          font-family: 'Playfair Display', serif;
          font-size: 3rem;
          font-weight: 700;
          color: var(--white);
        }

        .preloader-logo .logo-highlight {
          background: var(--gradient-gold);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          -webkit-text-fill-color: transparent;
        }

        .preloader-spinner {
          width: 60px;
          height: 60px;
          border: 3px solid rgba(212, 175, 55, 0.2);
          border-radius: 50%;
          border-top-color: var(--gold);
          animation: spin 1s ease-in-out infinite;
          margin: 0 auto;
        }

        @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }

        .notification {
          position: fixed;
          top: -100px;
          left: 50%;
          transform: translateX(-50%);
          padding: 1rem 2rem;
          border-radius: var(--radius-md);
          color: white;
          font-weight: 500;
          z-index: 9999;
          box-shadow: var(--shadow-lg);
          transition: top var(--transition-fast);
          max-width: 90%;
          text-align: center;
        }
        
        .notification.show {
          top: 2rem;
        }
        
        .notification.success {
          background: linear-gradient(135deg, #22c55e, #16a34a);
        }
        
        .notification.error {
          background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .button-loader {
          display: inline-block;
          width: 14px;
          height: 14px;
          border: 2px solid rgba(0, 0, 0, 0.3);
          border-top: 2px solid var(--black);
          border-radius: 50%;
          animation: spin 1s linear infinite;
          margin-right: 0.5rem;
        }
        
        .no-scroll {
          overflow: hidden;
        }

        @media (max-width: 1200px) {
          .container {
            padding: 0 1.5rem;
          }
        }

        @media (max-width: 992px) {
          .nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            padding: 5rem 2rem 2rem;
            transition: left var(--transition-fast);
            z-index: 1500;
            overflow-y: auto;
          }

          .nav-menu.open {
            left: 0;
          }

          .nav-list {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
          }
          
          .nav-link {
            font-size: 1.3rem;
            padding: 1rem;
          }

          .burger {
            display: flex;
          }

          .nav-contact {
            display: none;
          }

          .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
          }

          .footer-nav-list {
            flex-wrap: wrap;
            justify-content: center;
          }

          .hero-actions {
            flex-direction: column;
            align-items: center;
          }

          .btn-large {
            padding: 16px 32px;
            font-size: 0.9rem;
          }

          .bg-element {
            display: none;
          }

          .contacts-content {
            grid-template-columns: 1fr;
          }

          .contact-map {
            height: 300px;
          }
        }

        @media (max-width: 768px) {
          .hero {
            padding: 0 1rem;
          }

          .modal-content {
            padding: 0;
          }

          .form-row {
            grid-template-columns: 1fr;
          }

          .hero-content {
            padding: 1rem;
          }

          .services-grid,
          .masters-grid {
            grid-template-columns: 1fr;
          }

          .price-item {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
          }

          .price-dots {
            display: none;
          }
        }

        @media (max-width: 576px) {
          .container {
            padding: 0 1rem;
          }

          .footer-nav-list {
            gap: 1rem;
          }

          .footer-nav-link {
            font-size: 0.9rem;
          }

          .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }