/*==================================================
    Gold Trend - Get Cash Widget
==================================================*/

:root{
    --gc-primary:#c9a227;
    --gc-primary-hover:#d9b548;
    --gc-dark:#1b1b1b;
    --gc-dark-2:#262626;
    --gc-border:#e6e6e6;
    --gc-text:#444;
    --gc-radius:18px;
    --gc-shadow:0 20px 60px rgba(0,0,0,.18);
    --gc-transition:.35s cubic-bezier(.2,.9,.2,1);
    --gc-width:380px;
    --gc-z:999999;
}

/************************************************
Floating Widget
************************************************/

#gc-widget{
    position:fixed;
    right:0;
    top:60%;
    transform:translateY(-50%);
    z-index:9999;
}

/************************************************
Toggle Button
************************************************/

#gc-toggle{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 50px;
  padding: 10px 8px;
  background: linear-gradient( 180deg, #398f0a, #163203 );
  color: #fff;
  border: 1px solid #a49410;
  border-radius: 16px 0 0 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--gc-transition);
}

#gc-toggle:hover{
    background: #398009;
}

#gc-toggle svg{

    width:18px;

    height:18px;

    fill:none;

    stroke:#fff;

    stroke-width:2;

}

/************************************************
Panel
************************************************/

.gc-panel{
  width: var(--gc-width);
  background: #fff;
  border-radius: 20px 0 0 20px;
  overflow-y:auto;
    overflow-x:visible;
  box-shadow: var(--gc-shadow);
  transform: translateX(105%);
  transition: var(--gc-transition);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ebd7;
}

#gc-widget.active .gc-panel{

    transform:translateX(0);

}

#gc-widget.active #gc-toggle{

    opacity:0;

    visibility:hidden;

}

/************************************************
Header
************************************************/

.gc-header{
  padding: 28px;
  background: linear-gradient( 135deg, #dabd4c, #af8814 );
  color: #fff;
}

.gc-header h2{
    margin:0;
    font-size:24px;
    line-height:1.3;
    font-weight:700;
}

.gc-header p{
    margin:0;
    opacity:.85;
    font-size:14px;
	color: #000;
}

/************************************************
Close
************************************************/

.gc-close{
position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #ccc;
  cursor: pointer;
  font-size: 35px;
  transition: .3s;
    transition-duration: 0.3s;
    transition-delay: 0s;
  line-height: 35px;
}

.gc-close:hover{

    background:#fff;

    color:#222;

}

/************************************************
Trust
************************************************/

.gc-trust{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  padding: 15px 25px;
  background: #fafafa;
  border-bottom: 1px solid #d2b82d;
}

.gc-trust div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#444;
    font-size:15px;
    font-weight: 500;
  line-height: 20px;
}

/************************************************
CF7 Area
************************************************/

.gc-panel .wpcf7{

    padding:25px;

}

.gc-panel label{

    display:block;

    margin-bottom:16px;

}

.gc-panel input,

.gc-panel .nice-select,

.gc-panel textarea{

    width:100%;

    height:52px;

    border:1px solid var(--gc-border);

    border-radius:12px;

    padding:0 16px;

    font-size:15px;

    outline:none;

    transition:.25s;

   background: #f4f4f2;

}
.gc-panel .nice-select{
	margin-bottom:16px;
}
.gc-panel textarea{

    height:110px;

    padding-top:14px;

    resize:none;
	background: #f4f4f2;

}

.gc-panel input:focus,

.gc-panel .nice-select:focus,

.gc-panel textarea:focus{

    border-color:var(--gc-primary);

    box-shadow:0 0 0 4px rgba(201,162,39,.15);

}

/************************************************
Submit Button
************************************************/

.gc-panel input[type=submit]{

    width:100%;

    height:56px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    background:linear-gradient(
        180deg,
        #d8b142,
        #b88d16
    );

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

.gc-panel input[type=submit]:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 30px rgba(201,162,39,.35);

}

/*==========================================
Responsive
==========================================*/

@media (max-width:991px){

    #gc-widget{

        top:auto;

        bottom:0;

        right:0;

        left:0;

        transform:none;

    }

    #gc-toggle{
    writing-mode: vertical-rl;
    position: fixed;
    right: 0;
    bottom: 20px;
    width: auto;
    height: 150px;
    }

    .gc-panel{

        position:fixed;

        left:0;

        right:0;

        bottom:0;

        width:100%;

        max-width:none;

        border-radius:24px 24px 0 0;

        transform:translateY(105%);

        max-height:85vh;

    }

    #gc-widget.active .gc-panel{

        transform:translateY(0);

    }

}

@media (max-width:480px){

    .gc-header{

        padding:22px;

    }

    .gc-header h2{

        font-size:22px;

    }

    .gc-panel .wpcf7{

        padding:20px;

    }

}

.gc-success{

    padding:50px 35px;

    text-align:center;

}

.gc-success h3{

    color:#c9a227;

    font-size:28px;

    margin-bottom:15px;

}

.gc-success p{

    font-size:16px;

    color:#555;

}


/*==================================================
    Gold Trend - Enquiry Popup
==================================================*/
/* =========================================
   ENQUIRY MODAL
========================================= */

#enquiry-modal {
    display: none;

    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    z-index: 999999;

    padding: 20px;

    box-sizing: border-box;
}


/* =========================================
   OVERLAY
========================================= */

#enquiry-modal .enquiry-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    cursor: pointer;
}


/* =========================================
   ENQUIRY BOX
========================================= */

#enquiry-modal .enquiry-box {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: calc(100% - 40px);
    max-width: 600px;

    max-height: calc(100vh - 40px);

    box-sizing: border-box;

    background: #fff;

    padding: 35px;

    border-radius: 12px;

    overflow-y: auto;

    overflow-x: hidden;

    z-index: 2;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}


/* =========================================
   CLOSE BUTTON
========================================= */

#enquiry-modal .close-enquiry {
    position: absolute;

    right: 15px;
    top: 10px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;

    color: #333;

    cursor: pointer;

    border-radius: 50%;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

#enquiry-modal .close-enquiry:hover {
    background: #f2f2f2;

    color: #000;

    transform: rotate(90deg);
}


/* =========================================
   YOUR EXISTING CONTACT CARD
========================================= */

#enquiry-modal .enquiry-box .gt-contact-card {
    box-shadow: none;
}


/* =========================================
   CONTACT FORM 7
========================================= */

#enquiry-modal .wpcf7 {
    width: 100%;
}

#enquiry-modal .wpcf7-form {
    width: 100%;
    margin: 0;
}


/* =========================================
   FORM FIELDS
========================================= */

#enquiry-modal input[type="text"],
#enquiry-modal input[type="email"],
#enquiry-modal input[type="tel"],
#enquiry-modal input[type="number"],
#enquiry-modal select,
#enquiry-modal textarea {
    width: 100%;

    max-width: 100%;

    box-sizing: border-box;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    #enquiry-modal {
        padding: 15px;
    }

    #enquiry-modal .enquiry-box {
        width: calc(100% - 30px);

        max-width: 600px;

        max-height: calc(100vh - 30px);

        padding: 32px 25px 25px;

        border-radius: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    #enquiry-modal {
        padding: 10px;
    }

    #enquiry-modal .enquiry-box {
        width: calc(100% - 10px);

        max-height: calc(100vh - 20px);

        padding: 35px 18px 20px;

        border-radius: 9px;
    }


    #enquiry-modal .close-enquiry {
        right: 8px;
        top: 50px;

        width: 32px;
        height: 32px;

        font-size: 24px;
    }


    #enquiry-modal input[type="text"],
    #enquiry-modal input[type="email"],
    #enquiry-modal input[type="tel"],
    #enquiry-modal input[type="number"],
    #enquiry-modal select,
    #enquiry-modal textarea {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    #enquiry-modal {
        padding: 7px;
    }

    #enquiry-modal .enquiry-box {
        width: calc(100% - 4px);

        max-height: calc(100vh - 14px);

        padding: 34px 14px 18px;
    }

}