@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&display=swap&subset=cyrillic');
    :root {
      --red: #cc2200;
      --dark: #1a1a1a;
      --metal: #5a6a7a;
      --light: #f5f5f5;
      --white: #ffffff;
      --section-pad: 90px 0;
    }

    * { margin: 0; padding: 0; box-sizing: border-box;  scroll-behavior: smooth; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Exo 2', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
    }
    nav.scrolled {
      border-color: var(--red);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .nav-logo img { height: 48px; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Exo 2', sans-serif;
      font-weight: 600;
      font-size: 17px;

      color: var(--dark);
      text-decoration: none;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--red);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover::after { width: 100%; }

    /* ── HERO ── */
    #home {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    .slides { position: relative; width: 100%; height: 100%; }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
      background-size: cover;
      background-position: center;
    }
    .slide.active { opacity: 1; }
    .slide-1 { background-image: url('images/slide1.jpg'); background-color: #2a2a2a; }
    .slide-2 { background-image: url('images/slide2.jpg'); background-color: #1a2030; }
    .slide-3 { background-image: url('images/slide3.jpg'); background-color: #201818; }
    .slide-4 { background-image: url('images/slide4.jpg'); background-color: #201818; }
    .slide-5 { background-image: url('images/slide5.jpg'); background-color: #201818; }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
    }
    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 10vw;
      color: white;
    }
    .hero-tag {
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--red);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-title {
      font-size: clamp(42px, 7vw, 90px);
      font-weight: 900;
      line-height: 1;

      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-title span { color: var(--red); }
    .hero-sub {
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      margin-top: 20px;
      max-width: 500px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.7s forwards;
    }
    .hero-cta {
      margin-top: 40px;
      display: flex; gap: 16px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s 0.9s forwards;
    }
    .btn-primary {
      display: inline-block;
      padding: 14px 36px;
      background: var(--red);
      color: white;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.5px;

      text-decoration: none;
      border: 2px solid var(--red);
      transition: background 0.2s, color 0.2s;
    }
    .btn-primary:hover { background: transparent; color: white; }
    .btn-outline {
      display: inline-block;
      padding: 14px 36px;
      background: transparent;
      color: white;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.5px;

      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: border-color 0.2s;
    }
    .btn-outline:hover { border-color: white; }
    .slider-controls {
      position: absolute;
      bottom: 40px; right: 10vw;
      display: flex; gap: 12px;
      z-index: 10;
    }
    .slider-btn {
      width: 48px; height: 48px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }
    .slider-btn:hover { background: var(--red); border-color: var(--red); }
    .slider-dots {
      position: absolute;
      bottom: 52px; left: 10vw;
      display: flex; gap: 8px;
    }
    .dot {
      width: 8px; height: 8px;
      background: rgba(255,255,255,0.4);
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .dot.active { background: var(--red); transform: scale(1.3); }

    /* ── SECTIONS ── */
    section { padding: var(--section-pad); }
	#home { padding: 0}
    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;

      color: var(--dark);
      line-height: 1.1;
    }
    .section-title span { color: var(--red); }

    /* ── ABOUT ── */
    #about { background: var(--white); }
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--light);
      background-image: url('images/about.jpg');
      background-size: cover;
      background-position: center;
    }
    .about-img-accent {
      position: absolute;
      bottom: -20px; right: -20px;
      width: 60%; aspect-ratio: 1;
      background: var(--red);
      z-index: -1;
    }
    .about-text p {
      font-size: 17px;
      line-height: 1.7;
      color: var(--metal);
      margin-top: 24px;
    }
    .about-stats {
      display: flex; gap: 40px;
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid #e0e0e0;
    }
    .stat-num {
      font-size: 42px;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }
    .stat-label {
      font-size: 13px;
      letter-spacing: 1px;
      color: var(--metal);

      margin-top: 4px;
    }

    /* ── SERVICES ── */
    #services { background: var(--dark); color: white; }
    .services-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .services-inner .section-title { color: white; }
    .services-grid {
      display: grid;
	  grid-template-columns: repeat(2, 1fr);

      gap: 2px;
      margin-top: 60px;
    }
    .service-card {
      background: #222;
      padding: 48px 36px;
      border-top: 3px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    .service-card:hover { border-color: var(--red); background: #2a2a2a; }
    .service-icon { font-size: 36px; margin-bottom: 24px; }
    .service-card h3 {
      font-size: 20px;
      font-weight: 700;

      letter-spacing: 1px;
      margin-bottom: 16px;
    }
    .service-card p { font-size: 15px; line-height: 1.6; color: #888; }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--light); }
    .portfolio-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      margin-top: 60px;
    }
    .portfolio-item {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      cursor: pointer;
    }
    .portfolio-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: rgba(24, 24, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-item:hover img { transform: scale(1.05); }
    .portfolio-overlay span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;

      color: white;
    }
 

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      box-shadow: 0 0 60px rgba(0,0,0,0.8);
    }
    .lightbox-close {
      position: absolute;
      top: 24px; right: 32px;
      color: white;
      font-size: 36px;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s;
      background: none;
      border: none;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      font-size: 24px;
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }

    /* ── CONTACT ── */
    #contact { background: var(--white); }
	#contact a{
		text-decoration:none;
	    color: var(--metal);
	}
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
    .contact-info p {
      font-size: 17px;
      color: var(--metal);
      line-height: 1.7;
      margin-top: 24px;
    }
    .contact-details { margin-top: 40px; }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid #eee;
    }
    .contact-detail-icon {
      font-size: 22px;
      width: 36px;
      text-align: center;
      flex-shrink: 0;
    }
    .contact-detail-text { font-size: 15px; color: var(--metal); }
    .contact-detail-text strong {
      display: block;
      font-size: 13px;
      letter-spacing: 1px;

      color: var(--dark);
      margin-bottom: 2px;
    }
    .form-group { margin-bottom: 20px; }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: var(--light);
      border: 2px solid transparent;
      font-family: 'Exo 2', sans-serif;
      font-size: 16px;
      color: var(--dark);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group textarea { min-height: 140px; resize: vertical; }
    .honeypot { display: none !important; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--red);
      color: white;
      font-family: 'Exo 2', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;

      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--dark); }
    .form-submit:disabled { background: #aaa; cursor: not-allowed; }
    .form-message {
      display: none;
      padding: 16px 20px;
      margin-top: 16px;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.5px;
    }
    .form-message.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32; }
    .form-message.error { background: #fdecea; color: #c62828; border-left: 4px solid #c62828; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: #666;
      text-align: center;
      padding: 32px 48px;
      font-size: 14px;
    }
	footer a{
		color: #666;
	}
    footer .footer-logo img { height: 36px; margin-bottom: 16px; opacity: 0.7; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .services-inner, .portfolio-inner { padding: 0 24px; }
      .hero-content { padding: 0 24px; }
    }

