body {
  margin:0;
  padding:0;
  background: #234B30;
}
logo {
  position:absolute;
  top:20%;
  left:56%;
  transform:translate(-80%,-80%);
  margin:0;
  padding:0;
  display:flex;
}
map {
  position:absolute;
  top:83%;
  left: 61%;
  transform:translate(-80%,-80%);
  margin:0;
  padding:0;
  display:flex;
}
ul {
  position:absolute;
  top:30%;
  left:50%;
  transform:translate(-50%,-50%);
  margin:0;
  padding:0;
  display:flex;
}
ul li {
  list-style:none;
}
ul li a {
  display:block;
  position:relative;
  width:100px;
  height:100px;
  line-height:100px;
  font-size:40px;
  text-align:center;
  text-decoration:none;
  color:#E8DFCB;
  margin: 0 30px;
  transition:.5s;
}
ul li a span {
  position:absolute;
  transition: transform .5s;
}
ul li a span:nth-child(1),
ul li a span:nth-child(3){
  width:100%;
  height:3px;
  background:#E8DFCB;
}
ul li a span:nth-child(1) {
  top:0;
  left:0;
  transform-origin: right;
}
ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition:transform .5s;
}

ul li a span:nth-child(3) {
  bottom:0;
  left:0;
  transform-origin: left;
}
ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition:transform .5s;
}

ul li a span:nth-child(2),
ul li a span:nth-child(4){
  width:3px;
  height:100%;
  background:#E8DFCB;
}
ul li a span:nth-child(2) {
  top:0;
  left:0;
  transform:scale(0);
  transform-origin: bottom;
}
ul li a:hover span:nth-child(2) {
  transform: scale(1);
  transform-origin: top;
  transition:transform .5s;
}
ul li a span:nth-child(4) {
  top:0;
  right:0;
  transform:scale(0);
  transform-origin: top;
}
ul li a:hover span:nth-child(4) {
  transform: scale(1);
  transform-origin: bottom;
  transition:transform .5s;
}

.facebook:hover {
  color: 	#E8DFCB;
}
.facebook:hover span { 
  background: 	#E8DFCB;
}
.envelope:hover {
  color: #E8DFCB;
}
.envelope:hover span { 
  background: #E8DFCB;
}
.instagram:hover {
  color: #E8DFCB;
}
.instagram:hover span { 
  background: #E8DFCB;
}
.phone:hover {
  color: 	#E8DFCB;
}
.phone:hover span { 
  background: 	#E8DFCB;
}
.whatsapp:hover {
  color: 	#E8DFCB;
}
.whatsapp:hover span { 
  background: 	#E8DFCB;
}
.location:hover {
  color: 	#E8DFCB;
}
.location:hover span { 
  background: 	#E8DFCB;
}
ul li a .envelope {
  color: #E8DFCB;
}
ul li a:hover:nth-child(3) {
  color: #E8DFCB;
}
ul li a:hover:nth-child(4) {
  color: #E8DFCB;
}
.ios-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.ios-modal-content {
    width: 90%;
    max-width: 360px;
    background: #fffaf0;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.ios-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.ios-modal-content h3 {
    color: #1f4d2f;
    margin-bottom: 10px;
}

.ios-modal-content p {
    color: #555;
    line-height: 1.5;
}

.ios-steps {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ios-steps span {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 12px;
}

.ios-btn {
    width: 100%;
    border: none;
    background: #1f4d2f;
    color: white;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
}