/**
* template:  Blend&Buzz

TABLE OF CONTENTS

      + Global
	  + Header
	  + Header Content
	  + About Us
	  + Services
	  + Menu
	  + Banner
	  + Booking
	  + Testimonials
	  + Contacts

      
*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import 'scrollCue.css';

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
   --color-dark: #0D0D0F;
   --color-dark-gray: #1F1F24;
   --color-gold: #E6B450;
   --color-dark-gold: #B5835A;
   --color-white: #FFFFFF;
}

@-webkit-keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

 ::-moz-selection {
	background-color: var(--color-gold);
	color: var(--color-dark);
}

 ::selection {
	background-color: var(--color-gold);
	color: var(--color-dark);
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
	line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
    color: var(--color-white);
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 20px;
}

.align-center {
	text-align: center;
}

.btn {
	padding: 15px 30px;
	background-color: transparent;
	color: var(--color-gold);
	text-transform: uppercase;
    border-radius: 3px;
	border: 1px solid var(--color-gold);
}

.btn:hover {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.flex { 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
   -ms-flex-wrap: wrap;
       flex-wrap: wrap;
}

.suptitle {
	display: inline-block;
	color: var(--color-gold);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-gold);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-gold);
}

#closemenu {
	float: right;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px;
	background-color: var(--color-gold);
	color: var(--color-white);
	font-size: 18px;
}

#scroll-top:hover {
	background-color: var(--color-dark-gold);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color:  rgba(255, 255, 255, 0.5);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-gold);
	font-size: 20px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark-gray);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	width: 44px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.res-booking {
	margin-top: 30px;
	margin-left: 10px;
	display: none;
	font-size: 16px;
	margin-top: 20px;
}

.res-booking .error {
	color: #ff0000;
}

.res-booking .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER   
*
***************************************/


.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

#logo {
   margin-right: 20px;
   outline: none;
   border: none;
}

#logo img {
   max-width: 100%;
    outline: none;
   border: none;
}

.wrapper-top-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 5px;
    color: var(--color-white);
}

.wrapper-top-header i {
    margin-right: 10px;
}

.wrapper-header {
	padding-top: 5px;
	padding-bottom: 15px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-menu {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.header-menu li {
   float: left;
   margin-left: 30px;
}

.header-menu>li a {
	color: var(--color-white);
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-menu>li a:hover {
	color: var(--color-gold);
}


/**************************************
*
*         HEADER CONTENT
*
***************************************/


.wrapper-header-content {
	min-height: 900px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
  background-attachment: fixed;
	background-size: cover;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


/**************************************
*
*        ABOUT US
*
***************************************/


.wrapper-aboutus {
     -webkit-box-align: center;
         -ms-flex-align: center;
             align-items: center;
}

.aboutus-img {
	width:calc(50% - 50px);
	margin: 25px;
	position:relative;
}

.experiense {
	 position: absolute;
	 bottom: -20px;
	 right: -20px;
	 background-color: var(--color-gold);
	 padding: 40px 30px;
	 color: var(--color-white);
	 -webkit-box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25);
	         box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25);
}

.experiense .counter {
	font-size: 50px;
	font-weight: 700;
} 

.aboutus-content {
	width: 50%;
	padding:50px;
	background-color: var(--color-dark-gray);
	-webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-signature {
	margin-top: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 50px;
}

.wrapper-signature img {
	max-width: 180px;
	margin-right: 10px;
}

.wrapper-signature h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.wrapper-signature p {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--color-gold);
}


/**************************************
*
*        SERVICES
*
***************************************/


.single-service {
	width: calc(25% - 20px);
	margin: 10px;
	padding: 40px 20px;
	background-color: var(--color-dark-gray);
}

.single-service h3 {
	margin-bottom: 10px;
}

.single-service img {
	max-width: 64px;
	height: auto;
	margin: 0 auto 30px auto;
}


/**************************************
*
*         MENU
*
***************************************/


.list-menu {
	width: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.list-menu li {
	margin:10px;
}

.list-menu li a {
	text-transform: uppercase;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 700;
}

.list-menu li a:hover {
	color: var(--color-gold);
}

.list-menu .active {
	color: var(--color-gold);
}

.wrapper-menu {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.menu-item .single-product  {
	width: calc(25% - 20px);
	margin: 10px;
	background-color: var(--color-dark-gray);
}

.wrapper-menu {
	margin-bottom: 30px;
}

.single-product-img {
	position: relative;
	display: block;
	border: none;
	outline: none;
}

.single-product-img:hover .overlay {
    opacity: 1;
}

.single-product-content {
	padding: 40px 10px;
}

.single-product-content h3 {
	color: var(--color-white);
	margin-bottom: 10px;
}

.single-product-content span {
	font-size: 20px;
	display: inline-block;
	margin-top: 20px;
	color: var(--color-gold);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color:  rgba(13, 13, 15, 0.4);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-gold);
	font-size: 20px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}


/**************************************
*
*        BANNER
*
***************************************/


#banner h2 {
	font-size: 60px;
}


/**************************************
*
*         BOOKING   
*
***************************************/


#booking {
	width: 100%;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.wrapper-booking {
	width: 50%;
	padding: 100px 50px;
	background-color: var(--color-dark-gray);
}

form {
	margin-top: 50px;
}

input, textarea {
	outline: none;
	border: none;
	padding: 15px;
	border: 1px solid var(--color-gold);
	color: var(--color-white);
    font-size: 16px;
	background-color: transparent;
	display: block;
	font-family: "Lato", sans-serif;
    font-weight: 400;
	border-radius: 3px;
}

textarea {
    min-height: 150px;
	width: 100%;
	margin-bottom: 20px;
}

::-webkit-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-moz-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

:-ms-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-ms-input-placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::placeholder {
	color: var(--color-gold);
	font-size: 12px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

input:focus, textarea:focus {
		border: 1px solid var(--color-dark-gold);
}

.wrapper-input {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-input input {
   width: calc(50% - 10px);
   margin-bottom: 20px;
}

#sendmessage {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials h2 {
	color: var(--color-white);
}

.wrapper-testimonials {
	max-width: 1000px;
	margin-top: 50px;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.single-testimonials p {
	margin-bottom: 20px;
	color: var(--color-white);
}

.wrapper-author h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-author p {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-white);
}

#testimonials .owl-carousel.testimonials-carousel .owl-item {
	height: auto;
}

#testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

#testimonials .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-gold);
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
    margin: 5px 7px;
    background: var(--color-dark-gold);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    border-radius: none;
}


/**************************************
*
*         CONTACTS
*
***************************************/


#contacts {
	background-color: var(--color-dark-gray);
}

#contacts h2 {
	color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
}

.wrapper-contact>div .social-link {
	margin-left: 0px;
}

.wrapper-contact>div .social-link li {
	margin-left: 0px;
	margin-right: 15px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
	color: var(--color-white);
}

.wrapper-contact>div h3 {
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-contact>div a {
	color: var(--color-gold);
}

.wrapper-contact>div a:hover {
      color: var(--color-dark-gold);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}

/**************************************
*
*        TOP GAMES
*
***************************************/

.games-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 20px;
   margin-top: 50px;
}

.game-card {
   position: relative;
   background-color: var(--color-dark-gray);
   border-radius: 6px;
   overflow: hidden;
}

.game-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.game-overlay {
   position: absolute;
   inset: 0;
   background: rgba(13, 13, 15, 0.7);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: all 0.4s ease;
}

.game-card:hover .game-overlay {
   opacity: 1;
}

/* ====== Responsive ====== */

@media (max-width: 1200px) {
   .games-grid {
      grid-template-columns: repeat(4, 1fr);
   }
}

@media (max-width: 768px) {
   .games-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
   }
}

@media (max-width: 480px) {
   .games-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
   }
}

.single-service img {
   width: 64px;
   height: 64px;
   margin: 0 auto 25px auto;
   object-fit: contain;

   /* Gold color filter */
   filter: brightness(0) saturate(100%)
           invert(72%) sepia(52%) saturate(528%)
           hue-rotate(2deg) brightness(95%) contrast(92%);
}
.app-store-buttons {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 30px;
   flex-wrap: wrap;
}

.app-store-buttons img {
   height: 50px;
   width: auto;
   max-width: 180px;
   object-fit: contain;
   transition: transform 0.3s ease;
}

.app-store-buttons img:hover {
   transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 480px) {
   .app-store-buttons img {
      height: 44px;
      max-width: 160px;
   }
}
/* Payments Tabs */
.payments-tabs {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-bottom: 30px;
}

.tab-btn {
   padding: 10px 30px;
   border: 1px solid var(--color-gold);
   background: transparent;
   color: #fff;
   cursor: pointer;
}

.tab-btn.active {
   background-color: var(--color-gold);
   color: #000;
}

/* Table Wrapper */
.payments-table-wrapper {
   max-width: 800px;
   margin: 0 auto;
   background-color: var(--color-dark);
   border-radius: 6px;
   padding: 20px;
}

/* Table */
.payments-table {
   width: 100%;
   border-collapse: collapse;
   display: none;
}

.payments-table.active {
   display: table;
}

.payments-table td {
   padding: 14px 10px;
   border-bottom: 1px solid rgba(255,255,255,0.08);
   text-align: left;
}

.payments-table td:last-child {
   text-align: right;
   white-space: nowrap;
}

/* Icons */
.payments-table img {
   width: 46px;
   height: 46px;
   object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
   .payments-table td {
      font-size: 14px;
   }

   .payments-table img {
      width: 28px;
      height: 28px;
   }
}
/**************************************
*
*     PAYMENTS TRUST BLOCK
*
***************************************/

.payments-trust {
   max-width: 1100px;
   margin: 80px auto 0 auto;
   background: linear-gradient(180deg, #1b1b1f 0%, #141416 100%);
   border-radius: 8px;
   padding: 60px 50px;
}

.payments-trust-header p {
   max-width: 850px;
   margin: 20px auto 0 auto;
   opacity: 0.9;
}

.payments-trust-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px;
   margin-top: 60px;
}

.trust-item {
   background-color: var(--color-dark);
   padding: 35px;
   border-radius: 6px;
   text-align: center;
}

.trust-icon {
   width: 56px;
   height: 56px;
   margin: 0 auto 25px auto;
}

.trust-icon img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.trust-item h4 {
   margin-bottom: 15px;
   color: var(--color-gold);
}

.trust-item ul {
   list-style: none;
   padding: 0;
   margin-top: 20px;
}

.trust-item ul li {
   margin-bottom: 10px;
   font-size: 14px;
   opacity: 0.9;
}

.payments-trust-footer {
   margin-top: 50px;
   padding-top: 30px;
   border-top: 1px solid rgba(255,255,255,0.08);
}

/* Mobile */
@media (max-width: 900px) {
   .payments-trust-grid {
      grid-template-columns: 1fr;
   }

   .payments-trust {
      padding: 40px 25px;
   }
}

.gold-icon {
   width: 36px;
   height: 36px;
   object-fit: contain;

   filter: brightness(0) saturate(100%)
           invert(66%) sepia(38%) saturate(520%)
           hue-rotate(8deg) brightness(92%) contrast(98%);
}

/**************************************
*
*   PLATFORM INTEGRITY BLOCK
*
***************************************/

.integrity-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.integrity-item {
   background-color: var(--color-dark);
   padding: 40px;
   border-radius: 8px;
   text-align: center; 
}

.integrity-item h3 {
   margin: 20px 0 15px 0;
   color: var(--color-gold);
}

.integrity-item p {
   margin-bottom: 12px;
   opacity: 0.95;
}

.integrity-item img {
   width: 42px;
   height: 42px;
   object-fit: contain;
   display: block;
   margin: 0 auto; 
}


/* Mobile */
@media (max-width: 900px) {
   .integrity-grid {
      grid-template-columns: 1fr;
   }
}
/**************************************
*
*            FAQ
*
***************************************/

.faq-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 40px;
}

.faq-item {
   background-color: var(--color-dark);
   border-radius: 6px;
   margin-bottom: 20px;
   overflow: hidden;
}

.faq-question {
   width: 100%;
   padding: 18px 20px;
   background: none;
   border: none;
   color: #fff;
   text-align: left;
   font-size: 16px;
   cursor: pointer;
   position: relative;
}

.faq-question::after {
   content: "+";
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   color: var(--color-gold);
   font-size: 20px;
}

.faq-item.active .faq-question::after {
   content: "−";
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   padding: 0 20px;
}

.faq-item.active .faq-answer {
   max-height: 300px;
   padding-bottom: 20px;
}

.faq-answer p {
   margin-top: 10px;
   font-size: 14px;
   opacity: 0.95;
}

/* Mobile */
@media (max-width: 900px) {
   .faq-grid {
      grid-template-columns: 1fr;
   }
}

/**************************************
*
*            FOOTER
*
***************************************/

.footer {
   background-color: #0f0f12;
   padding-top: 70px;
   color: #cfcfcf;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.3fr;
   gap: 50px;
}

.footer-logo img {
   max-width: 160px;
   margin-bottom: 20px;
}

.footer-about p {
   font-size: 14px;
   line-height: 1.7;
   opacity: 0.9;
}

.footer-col h4 {
   color: var(--color-gold);
   margin-bottom: 20px;
}

.footer-col ul {
   list-style: none;
   padding: 0;
}

.footer-col ul li {
   margin-bottom: 10px;
}

.footer-col ul li a {
   color: #cfcfcf;
   font-size: 14px;
}

.footer-col ul li a:hover {
   color: var(--color-gold);
}

.footer-col p a {
   color: #cfcfcf;
}

.footer-col p a:hover {
   color: var(--color-gold);
}

/* Bottom */
.footer-bottom {
   margin-top: 60px;
   border-top: 1px solid rgba(255,255,255,0.08);
   padding: 25px 0;
}

.footer-bottom-inner {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 15px;
}

.footer-disclaimer {
   font-size: 13px;
   opacity: 0.7;
}

/* Mobile */
@media (max-width: 900px) {
   .footer-grid {
      grid-template-columns: 1fr;
   }

   .footer-bottom-inner {
      text-align: center;
      justify-content: center;
   }
}
.reef-services-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
}

.reef-service-card {
   background-color: var(--color-dark-gray);
   padding: 35px;
   border-radius: 8px;
}

.reef-service-card h4 {
   color: var(--color-gold);
   margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 900px) {
   .reef-services-grid {
      grid-template-columns: 1fr;
   }
}
