Spaces:
Running
Running
File size: 76,030 Bytes
3a877c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Домовой - Агентство недвижимости</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.property-card:hover .property-image {
transform: scale(1.05);
}
.property-image {
transition: transform 0.3s ease;
}
.map-container {
height: 400px;
width: 100%;
}
.sidebar {
transition: all 0.3s ease;
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.mobile-menu.open {
max-height: 500px;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 0.5rem;
}
.dropdown:hover .dropdown-content {
display: block;
}
.file-upload {
position: relative;
overflow: hidden;
}
.file-upload input {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.gallery-item {
position: relative;
}
.gallery-item:hover .delete-btn {
opacity: 1;
}
.delete-btn {
position: absolute;
top: 0.5rem;
right: 0.5rem;
opacity: 0;
transition: opacity 0.3s ease;
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-home text-blue-600 text-2xl"></i>
<span class="text-xl font-bold text-blue-600">Домовой</span>
</div>
<div class="hidden md:flex items-center space-x-6">
<a href="#properties" class="hover:text-blue-600">Недвижимость</a>
<a href="#services" class="hover:text-blue-600">Услуги</a>
<a href="#about" class="hover:text-blue-600">О нас</a>
<a href="#contact" class="hover:text-blue-600">Контакты</a>
<button id="loginBtn" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition">Войти</button>
</div>
<button id="mobileMenuButton" class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<div id="mobileMenu" class="mobile-menu md:hidden bg-white px-4">
<div class="flex flex-col space-y-3 py-3">
<a href="#properties" class="hover:text-blue-600">Недвижимость</a>
<a href="#services" class="hover:text-blue-600">Услуги</a>
<a href="#about" class="hover:text-blue-600">О нас</a>
<a href="#contact" class="hover:text-blue-600">Контакты</a>
<button id="mobileLoginBtn" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition w-full">Войти</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-blue-600 text-white py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Найдите свой идеальный дом</h1>
<p class="text-xl mb-6">Более 1000 объектов недвижимости по всему городу. Мы поможем вам найти дом вашей мечты.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<a href="#properties" class="bg-white text-blue-600 px-6 py-3 rounded-md font-medium text-center hover:bg-gray-100 transition">Посмотреть объекты</a>
<a href="#contact" class="border-2 border-white px-6 py-3 rounded-md font-medium text-center hover:bg-white hover:text-blue-600 transition">Связаться с агентом</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Красивый дом" class="rounded-lg shadow-2xl max-w-full h-auto">
</div>
</div>
</section>
<!-- Property Search -->
<section id="properties" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-8 text-center">Найдите недвижимость</h2>
<div class="bg-white rounded-lg shadow-md p-6 mb-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4">
<div>
<label class="block text-sm font-medium mb-1">Тип недвижимости</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option value="">Все типы</option>
<option value="house">Дом</option>
<option value="apartment">Квартира</option>
<option value="land">Участок</option>
<option value="commercial">Коммерческая</option>
</select>
</div>
<div>
<label class="block text-sm font-medium mb-1">Город/Район</label>
<input type="text" placeholder="Любой" class="w-full p-2 border border-gray-300 rounded-md">
</div>
<div>
<label class="block text-sm font-medium mb-1">Цена, руб.</label>
<div class="flex space-x-2">
<input type="number" placeholder="От" class="w-1/2 p-2 border border-gray-300 rounded-md">
<input type="number" placeholder="До" class="w-1/2 p-2 border border-gray-300 rounded-md">
</div>
</div>
<div class="flex items-end">
<button class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 transition">Поиск</button>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Property Card 1 -->
<div class="property-card bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<div class="relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Дом" class="property-image w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-blue-600 text-white px-2 py-1 rounded-md text-sm">Новое</div>
<div class="absolute top-2 right-2 bg-white p-1 rounded-full shadow-md">
<i class="far fa-heart text-gray-600 hover:text-red-500 cursor-pointer"></i>
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Коттедж в Подмосковье</h3>
<span class="text-lg font-bold text-blue-600">15 000 000 ₽</span>
</div>
<p class="text-gray-600 mb-3"><i class="fas fa-map-marker-alt text-blue-500 mr-1"></i> Московская обл., Истринский р-н</p>
<div class="flex justify-between text-sm text-gray-500 mb-4">
<span><i class="fas fa-bed mr-1"></i> 4 спальни</span>
<span><i class="fas fa-bath mr-1"></i> 3 санузла</span>
<span><i class="fas fa-ruler-combined mr-1"></i> 150 м²</span>
</div>
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">Подробнее</button>
</div>
</div>
<!-- Property Card 2 -->
<div class="property-card bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<div class="relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1493809842364-78817add7ffb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Квартира" class="property-image w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-white p-1 rounded-full shadow-md">
<i class="far fa-heart text-gray-600 hover:text-red-500 cursor-pointer"></i>
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">3-к квартира в центре</h3>
<span class="text-lg font-bold text-blue-600">8 500 000 ₽</span>
</div>
<p class="text-gray-600 mb-3"><i class="fas fa-map-marker-alt text-blue-500 mr-1"></i> Москва, ЦАО</p>
<div class="flex justify-between text-sm text-gray-500 mb-4">
<span><i class="fas fa-bed mr-1"></i> 3 спальни</span>
<span><i class="fas fa-bath mr-1"></i> 2 санузла</span>
<span><i class="fas fa-ruler-combined mr-1"></i> 85 м²</span>
</div>
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">Подробнее</button>
</div>
</div>
<!-- Property Card 3 -->
<div class="property-card bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<div class="relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Участок" class="property-image w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-green-600 text-white px-2 py-1 rounded-md text-sm">Участок</div>
<div class="absolute top-2 right-2 bg-white p-1 rounded-full shadow-md">
<i class="far fa-heart text-gray-600 hover:text-red-500 cursor-pointer"></i>
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Участок у озера</h3>
<span class="text-lg font-bold text-blue-600">3 200 000 ₽</span>
</div>
<p class="text-gray-600 mb-3"><i class="fas fa-map-marker-alt text-blue-500 mr-1"></i> Ленинградская обл., Приозерский р-н</p>
<div class="flex justify-between text-sm text-gray-500 mb-4">
<span><i class="fas fa-ruler-combined mr-1"></i> 12 соток</span>
<span><i class="fas fa-car mr-1"></i> Подъезд</span>
<span><i class="fas fa-bolt mr-1"></i> Электричество</span>
</div>
<button class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition">Подробнее</button>
</div>
</div>
</div>
<div class="text-center mt-8">
<button class="bg-white border border-blue-600 text-blue-600 px-6 py-3 rounded-md font-medium hover:bg-blue-50 transition">Показать еще</button>
</div>
</div>
</section>
<!-- Services -->
<section id="services" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Наши услуги</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-home"></i>
</div>
<h3 class="text-xl font-bold mb-2">Продажа недвижимости</h3>
<p class="text-gray-600">Поможем выгодно продать вашу квартиру, дом или участок в кратчайшие сроки по максимальной цене.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-search-dollar"></i>
</div>
<h3 class="text-xl font-bold mb-2">Покупка недвижимости</h3>
<p class="text-gray-600">Подберем оптимальный вариант по вашим критериям и бюджету, проведем все переговоры и оформление.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-file-signature"></i>
</div>
<h3 class="text-xl font-bold mb-2">Юридическое сопровождение</h3>
<p class="text-gray-600">Полное юридическое сопровождение сделки, проверка документов, безопасность расчетов.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-hand-holding-usd"></i>
</div>
<h3 class="text-xl font-bold mb-2">Ипотечное кредитование</h3>
<p class="text-gray-600">Помощь в получении ипотеки на выгодных условиях от ведущих банков-партнеров.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-building"></i>
</div>
<h3 class="text-xl font-bold mb-2">Аренда коммерческой недвижимости</h3>
<p class="text-gray-600">Подбор помещений для бизнеса: офисы, магазины, склады, производственные площади.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-tasks"></i>
</div>
<h3 class="text-xl font-bold mb-2">Управление недвижимостью</h3>
<p class="text-gray-600">Комплексное управление вашей недвижимостью: сдача в аренду, контроль платежей, ремонт.</p>
</div>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h2 class="text-3xl font-bold mb-6">О нашем агентстве</h2>
<p class="text-gray-600 mb-4">Агентство недвижимости "Домовой" работает на рынке с 2010 года. За это время мы помогли тысячам клиентов найти свой идеальный дом или выгодно продать недвижимость.</p>
<p class="text-gray-600 mb-4">Наша команда состоит из профессиональных риелторов с многолетним опытом работы и глубоким знанием рынка недвижимости.</p>
<p class="text-gray-600 mb-6">Мы ценим доверие наших клиентов и гарантируем прозрачность всех сделок, юридическую чистоту и индивидуальный подход к каждому.</p>
<div class="flex space-x-4">
<div class="text-center">
<div class="text-3xl font-bold text-blue-600">12+</div>
<div class="text-gray-600">Лет опыта</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-blue-600">1500+</div>
<div class="text-gray-600">Успешных сделок</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-blue-600">98%</div>
<div class="text-gray-600">Довольных клиентов</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Команда агентства" class="rounded-lg shadow-lg w-full">
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Отзывы наших клиентов</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Клиент" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Елена Смирнова</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Благодарю агентство за помощь в покупке квартиры. Все прошло быстро и без проблем. Особенно понравился индивидуальный подход и внимание к деталям."</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Клиент" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Андрей Козлов</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Продал дом через это агентство. Риелтор нашел покупателя за 2 недели, хотя другие агентства не могли продать полгода. Очень доволен результатом!"</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Клиент" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Ольга Иванова</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Помогли снять отличную квартиру в нужном районе по хорошей цене. Все документы проверили, условия аренды согласовали. Теперь только к ним обращаюсь."</p>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Свяжитесь с нами</h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<div class="bg-gray-50 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4">Контактная информация</h3>
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-map-marker-alt text-blue-600 mt-1 mr-3"></i>
<div>
<h4 class="font-medium">Адрес:</h4>
<p class="text-gray-600">г. Москва, ул. Тверская, д. 10, офис 45</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-phone-alt text-blue-600 mt-1 mr-3"></i>
<div>
<h4 class="font-medium">Телефон:</h4>
<p class="text-gray-600">+7 (495) 123-45-67</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-envelope text-blue-600 mt-1 mr-3"></i>
<div>
<h4 class="font-medium">Email:</h4>
<p class="text-gray-600">info@domovoy.ru</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-clock text-blue-600 mt-1 mr-3"></i>
<div>
<h4 class="font-medium">Часы работы:</h4>
<p class="text-gray-600">Пн-Пт: 9:00 - 20:00<br>Сб-Вс: 10:00 - 18:00</p>
</div>
</div>
</div>
<div class="mt-6">
<h4 class="font-medium mb-2">Мы в соцсетях:</h4>
<div class="flex space-x-4">
<a href="#" class="text-blue-600 hover:text-blue-800 text-2xl"><i class="fab fa-vk"></i></a>
<a href="#" class="text-blue-600 hover:text-blue-800 text-2xl"><i class="fab fa-telegram"></i></a>
<a href="#" class="text-blue-600 hover:text-blue-800 text-2xl"><i class="fab fa-whatsapp"></i></a>
<a href="#" class="text-blue-600 hover:text-blue-800 text-2xl"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="mt-6 bg-gray-50 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4">Найти нас на карте</h3>
<div class="map-container bg-gray-200 rounded-lg">
<!-- Здесь будет карта -->
<div class="flex items-center justify-center h-full">
<p class="text-gray-500">Карта Яндекс.Карты</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4">Напишите нам</h3>
<form>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Ваше имя</label>
<input type="text" class="w-full p-2 border border-gray-300 rounded-md">
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Email</label>
<input type="email" class="w-full p-2 border border-gray-300 rounded-md">
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Телефон</label>
<input type="tel" class="w-full p-2 border border-gray-300 rounded-md">
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Тема сообщения</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option value="">Выберите тему</option>
<option value="buy">Покупка недвижимости</option>
<option value="sell">Продажа недвижимости</option>
<option value="rent">Аренда</option>
<option value="other">Другое</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Сообщение</label>
<textarea rows="4" class="w-full p-2 border border-gray-300 rounded-md"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 transition">Отправить сообщение</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-home text-blue-400 text-2xl"></i>
<span class="text-xl font-bold text-blue-400">Домовой</span>
</div>
<p class="text-gray-400">Агентство недвижимости "Домовой" - ваш надежный партнер в вопросах покупки, продажи и аренды недвижимости.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Услуги</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Продажа недвижимости</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Покупка недвижимости</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Аренда</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Ипотека</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Юридические услуги</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Компания</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">О нас</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Команда</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Отзывы</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Вакансии</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Контакты</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Подписаться</h4>
<p class="text-gray-400 mb-4">Будьте в курсе новых предложений и акций</p>
<form class="flex">
<input type="email" placeholder="Ваш email" class="p-2 rounded-l-md w-full text-gray-800">
<button type="submit" class="bg-blue-600 px-4 rounded-r-md hover:bg-blue-700 transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-vk"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-telegram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-whatsapp"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Агентство недвижимости "Домовой". Все права защищены.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Политика конфиденциальности</a>
<a href="#" class="text-gray-400 hover:text-white transition">Пользовательское соглашение</a>
</div>
</div>
</div>
</footer>
<!-- Login Modal -->
<div id="loginModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-md">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">Вход в личный кабинет</h3>
<button id="closeLoginModal" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<form id="loginForm">
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Email</label>
<input type="email" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Пароль</label>
<input type="password" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="flex justify-between items-center mb-4">
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 shadow-sm focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50">
<span class="ml-2 text-sm">Запомнить меня</span>
</label>
<a href="#" class="text-sm text-blue-600 hover:underline">Забыли пароль?</a>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 transition mb-4">Войти</button>
<div class="text-center mb-4">
<p class="text-sm text-gray-600">Или войдите с помощью</p>
</div>
<div class="flex justify-center space-x-4 mb-4">
<button type="button" class="bg-red-600 text-white p-2 rounded-full hover:bg-red-700 transition">
<i class="fab fa-google"></i>
</button>
<button type="button" class="bg-blue-500 text-white p-2 rounded-full hover:bg-blue-600 transition">
<i class="fab fa-vk"></i>
</button>
<button type="button" class="bg-blue-400 text-white p-2 rounded-full hover:bg-blue-500 transition">
<i class="fab fa-telegram"></i>
</button>
</div>
<div class="text-center">
<p class="text-sm text-gray-600">Еще нет аккаунта? <a href="#" id="registerLink" class="text-blue-600 hover:underline">Зарегистрироваться</a></p>
</div>
</form>
</div>
</div>
</div>
<!-- Register Modal -->
<div id="registerModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-md">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">Регистрация</h3>
<button id="closeRegisterModal" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<form id="registerForm">
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Имя</label>
<input type="text" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Фамилия</label>
<input type="text" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Email</label>
<input type="email" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Телефон</label>
<input type="tel" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Пароль</label>
<input type="password" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Подтвердите пароль</label>
<input type="password" class="w-full p-2 border border-gray-300 rounded-md" required>
</div>
<div class="mb-4">
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 shadow-sm focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50" required>
<span class="ml-2 text-sm">Я согласен с <a href="#" class="text-blue-600 hover:underline">условиями использования</a></span>
</label>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 transition mb-4">Зарегистрироваться</button>
<div class="text-center">
<p class="text-sm text-gray-600">Уже есть аккаунт? <a href="#" id="loginLink" class="text-blue-600 hover:underline">Войти</a></p>
</div>
</form>
</div>
</div>
</div>
<!-- Admin Panel (hidden by default) -->
<div id="adminPanel" class="hidden">
<div class="flex h-screen bg-gray-100">
<!-- Sidebar -->
<div class="sidebar bg-white w-64 shadow-md fixed h-full">
<div class="p-4 border-b border-gray-200">
<div class="flex items-center space-x-2">
<i class="fas fa-home text-blue-600 text-2xl"></i>
<span class="text-xl font-bold text-blue-600">Домовой</span>
</div>
<div class="text-sm text-gray-500 mt-1">Панель риелтора</div>
</div>
<div class="p-4">
<div class="flex items-center space-x-3 mb-6">
<div class="w-10 h-10 rounded-full bg-gray-300 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/46.jpg" alt="Аватар" class="w-full h-full object-cover">
</div>
<div>
<div class="font-medium">Иван Петров</div>
<div class="text-sm text-gray-500">Риелтор</div>
</div>
</div>
<nav>
<ul class="space-y-2">
<li>
<a href="#" class="flex items-center p-2 text-blue-600 bg-blue-50 rounded-md">
<i class="fas fa-tachometer-alt mr-3"></i>
<span>Главная</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-home mr-3"></i>
<span>Объекты</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-plus-circle mr-3"></i>
<span>Добавить объект</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-users mr-3"></i>
<span>Клиенты</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-comments mr-3"></i>
<span>Сообщения</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-chart-line mr-3"></i>
<span>Аналитика</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-gray-600 hover:bg-gray-100 rounded-md">
<i class="fas fa-cog mr-3"></i>
<span>Настройки</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 ml-64">
<!-- Top Navigation -->
<header class="bg-white shadow-sm p-4 flex justify-between items-center">
<h1 class="text-xl font-bold">Главная</h1>
<div class="flex items-center space-x-4">
<button class="text-gray-500 hover:text-gray-700">
<i class="fas fa-bell"></i>
</button>
<div class="dropdown relative">
<button class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-gray-300 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/46.jpg" alt="Аватар" class="w-full h-full object-cover">
</div>
<span class="hidden md:inline">Иван Петров</span>
<i class="fas fa-chevron-down text-xs"></i>
</button>
<div class="dropdown-content mt-2 py-2">
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Профиль</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Настройки</a>
<a href="#" id="logoutBtn" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Выйти</a>
</div>
</div>
</div>
</header>
<!-- Dashboard Content -->
<main class="p-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<div class="flex justify-between">
<div>
<p class="text-gray-500">Всего объектов</p>
<h3 class="text-2xl font-bold">24</h3>
</div>
<div class="text-blue-600 text-3xl">
<i class="fas fa-home"></i>
</div>
</div>
<div class="mt-4 text-sm text-green-600">
<i class="fas fa-arrow-up mr-1"></i> 12% за месяц
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<div class="flex justify-between">
<div>
<p class="text-gray-500">Активные сделки</p>
<h3 class="text-2xl font-bold">8</h3>
</div>
<div class="text-blue-600 text-3xl">
<i class="fas fa-file-contract"></i>
</div>
</div>
<div class="mt-4 text-sm text-green-600">
<i class="fas fa-arrow-up mr-1"></i> 3 новые на этой неделе
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<div class="flex justify-between">
<div>
<p class="text-gray-500">Новые сообщения</p>
<h3 class="text-2xl font-bold">5</h3>
</div>
<div class="text-blue-600 text-3xl">
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="mt-4 text-sm text-red-600">
<i class="fas fa-exclamation-circle mr-1"></i> 2 требуют ответа
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200 mb-6">
<div class="flex justify-between items-center mb-4">
<h2 class="text-lg font-bold">Последние объекты</h2>
<a href="#" class="text-blue-600 text-sm hover:underline">Показать все</a>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Объект</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Тип</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Адрес</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Цена</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Статус</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Действия</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-md" src="https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-gray-900">Коттедж в Подмосковье</div>
<div class="text-sm text-gray-500">ID: #12345</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Дом</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Московская обл., Истринский р-н</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">15 000 000 ₽</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Активно</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">Редактировать</a>
<a href="#" class="text-red-600 hover:text-red-900">Удалить</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-md" src="https://images.unsplash.com/photo-1493809842364-78817add7ffb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-gray-900">3-к квартира в центре</div>
<div class="text-sm text-gray-500">ID: #12346</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Квартира</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Москва, ЦАО</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">8 500 000 ₽</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">На проверке</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">Редактировать</a>
<a href="#" class="text-red-600 hover:text-red-900">Удалить</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-md" src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-gray-900">Участок у озера</div>
<div class="text-sm text-gray-500">ID: #12347</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Участок</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Ленинградская обл., Приозерский р-н</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">3 200 000 ₽</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Активно</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">Редактировать</a>
<a href="#" class="text-red-600 hover:text-red-900">Удалить</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<h2 class="text-lg font-bold mb-4">Добавить новый объект</h2>
<form>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Тип объекта</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option value="">Выберите тип</option>
<option value="house">Дом</option>
<option value="apartment">Квартира</option>
<option value="land">Участок</option>
<option value="commercial">Коммерческая</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Адрес</label>
<input type="text" class="w-full p-2 border border-gray-300 rounded-md" placeholder="Город, улица, дом">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label class="block text-sm font-medium mb-1">Площадь, м²</label>
<input type="number" class="w-full p-2 border border-gray-300 rounded-md">
</div>
<div>
<label class="block text-sm font-medium mb-1">Цена, руб.</label>
<input type="number" class="w-full p-2 border border-gray-300 rounded-md">
</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Описание</label>
<textarea rows="3" class="w-full p-2 border border-gray-300 rounded-md"></textarea>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Фотографии</label>
<div class="file-upload border-2 border-dashed border-gray-300 rounded-md p-4 text-center">
<input type="file" multiple accept="image/*">
<div class="text-gray-500">
<i class="fas fa-cloud-upload-alt text-3xl mb-2"></i>
<p>Перетащите файлы сюда или нажмите для загрузки</p>
</div>
</div>
<div class="text-xs text-gray-500 mt-1">Максимальный размер файла: 5MB. Форматы: JPG, PNG.</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Видео или 3D тур</label>
<input type="text" class="w-full p-2 border border-gray-300 rounded-md" placeholder="Ссылка на YouTube или другой сервис">
</div>
<div class="mb-4">
<label class="block text-sm font-medium mb-1">Расположение на карте</label>
<div class="map-container bg-gray-200 rounded-lg mb-2">
<div class="flex items-center justify-center h-full">
<p class="text-gray-500">Карта Яндекс.Карты</p>
</div>
</div>
<button type="button" class="text-sm text-blue-600 hover:underline">Указать на карте</button>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 transition">Добавить объект</button>
</form>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm border border-gray-200">
<h2 class="text-lg font-bold mb-4">Последние сообщения</h2>
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<div class="flex justify-between items-start mb-2">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 rounded-full bg-gray-300 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Аватар" class="w-full h-full object-cover">
</div>
<div>
<div class="font-medium">Елена Смирнова</div>
<div class="text-xs text-gray-500">Сегодня, 10:45</div>
</div>
</div>
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded-full">Новое</span>
</div>
<p class="text-sm text-gray-700 mb-2">Здравствуйте! Меня интересует коттедж в Подмосковье. Можно ли уточнить детали по коммуникациям?</p>
<a href="#" class="text-sm text-blue-600 hover:underline">Ответить</a>
</div>
<div class="border-b border-gray-200 pb-4">
<div class="flex justify-between items-start mb-2">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 rounded-full bg-gray-300 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Аватар" class="w-full h-full object-cover">
</div>
<div>
<div class="font-medium">Андрей Козлов</div>
<div class="text-xs text-gray-500">Вчера, 18:30</div>
</div>
</div>
</div>
<p class="text-sm text-gray-700 mb-2">Добрый вечер! Отправил вам документы по электронной почте. Проверьте, пожалуйста.</p>
<a href="#" class="text-sm text-blue-600 hover:underline">Ответить</a>
</div>
<div class="border-b border-gray-200 pb-4">
<div class="flex justify-between items-start mb-2">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 rounded-full bg-gray-300 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Аватар" class="w-full h-full object-cover">
</div>
<div>
<div class="font-medium">Ольга Иванова</div>
<div class="text-xs text-gray-500">2 дня назад</div>
</div>
</div>
</div>
<p class="text-sm text-gray-700 mb-2">Спасибо за помощь в поиске квартиры! Все оформлено, переезжаем на следующей неделе.</p>
<a href="#" class="text-sm text-blue-600 hover:underline">Ответить</a>
</div>
</div>
<a href="#" class="block text-center mt-4 text-blue-600 hover:underline">Показать все сообщения</a>
</div>
</div>
</main>
</div>
</div>
</div>
<!-- Property Details Modal -->
<div id="propertyModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-4xl max-h-[90vh] overflow-y-auto">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">3-к квартира в центре</h3>
<button id="closePropertyModal" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<div class="mb-6">
<div class="relative">
<div class="grid grid-cols-1 md:grid-cols-3 gap-2">
<div class="md:col-span-2">
<img src="https://images.unsplash.com/photo-1493809842364-78817add7ffb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Квартира" class="w-full h-64 md:h-96 object-cover rounded-lg">
</div>
<div class="grid grid-cols-2 gap-2">
<img src="https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80" alt="Кухня" class="w-full h-32 md:h-48 object-cover rounded-lg">
<img src="https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80" alt="Гостиная" class="w-full h-32 md:h-48 object-cover rounded-lg">
<img src="https://images.unsplash.com/photo-1565538810643-b5bdb714032a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80" alt="Спальня" class="w-full h-32 md:h-48 object-cover rounded-lg">
<div class="relative">
<img src="https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80" alt="Ванная" class="w-full h-32 md:h-48 object-cover rounded-lg">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center rounded-lg">
<span class="text-white font-medium">+5 фото</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="md:col-span-2">
<h4 class="text-xl font-bold mb-4">Описание</h4>
<p class="text-gray-700 mb-6">Просторная 3-комнатная квартира в центре Москвы с современным ремонтом. Отличное состояние, все коммуникации в порядке. Квартира светлая, окна выходят во двор. Рядом метро, парки, школы и детские сады. Идеальный вариант для семьи.</p>
<h4 class="text-xl font-bold mb-4">Характеристики</h4>
<div class="grid grid-cols-2 gap-4 mb-6">
<div>
<p class="text-gray-500">Тип объекта</p>
<p class="font-medium">Квартира</p>
</div>
<div>
<p class="text-gray-500">Площадь</p>
<p class="font-medium">85 м²</p>
</div>
<div>
<p class="text-gray-500">Этаж</p>
<p class="font-medium">5 из 9</p>
</div>
<div>
<p class="text-gray-500">Год постройки</p>
<p class="font-medium">2015</p>
</div>
<div>
<p class="text-gray-500">Количество комнат</p>
<p class="font-medium">3</p>
</div>
<div>
<p class="text-gray-500">Санузлы</p>
<p class="font-medium">2</p>
</div>
</div>
<h4 class="text-xl font-bold mb-4">Расположение</h4>
<div class="map-container bg-gray-200 rounded-lg mb-4">
<div class="flex items-center justify-center h-full">
<p class="text-gray-500">Карта Яндекс.Карты</p>
</div>
</div>
<p class="text-gray-700 mb-2"><i class="fas fa-map-marker-alt text-blue-500 mr-2"></i> Москва, ЦАО, ул. Тверская, д. 10, кв. 45</p>
<p class="text-gray-700"><i class
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=QuickDingo/df" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |