/*
 * Theme Name: Arasta Jewels
 * Theme URI: #
 * Author: Peakpixel Creative Hub
 * Author URI: https://www.peakpixelhub.com
 * Description: A flexible and modern WordPress theme designed for blogs, portfolios, and business websites.
 * Version: 1.0.1
 * Tested up to: 6.8
 * Requires PHP: 8.1
 * Text Domain: arasta
 * Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */

@font-face {
    font-family: "eicons";
    src: url("../../plugins/elementor/assets/lib/eicons/fonts/eicons.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "FontAwesome";
    src: url("../../plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2") format("woff2");
    font-display: swap;
}

/**
 * Global Reset & Base
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0; 
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #282E3A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
}


/**
 * Typography
 */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}


/**
 * Links
 */
a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover, 
a:active {
    color: var(--e-global-color-secondary);
}


/**
 * Forms & Inputs
 */
label {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
    border: none;
    background: none;
    color: inherit;
    outline: none;
    line-height: 1;
}

/* Input Base Styles */
input,
select,
textarea {
	width: 100%;
    padding: 18px;
    background-color: transparent;
	border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.9375rem;
    line-height: 1.4;
    font-weight: 300;
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.035);
}
input:focus,
select:focus,
textarea:focus {
    background-color: transparent;
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(28, 59, 139, 0.2);
}
textarea {
    height: 130px;
    resize: vertical;
    overflow: auto;
}

select {
    display: block;
    color: rgba(255,255,255,0.60);
    font-style: italic;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23898989' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 6px;
    padding-right: 2.5rem;
}
select option {
    color: #333;
    font-style: normal;
}
select option:first-of-type {
    color: #4A4A4A;
    font-style: italic;
}

/* Placeholder Styles */
input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.60);
    font-style: italic;
}

@media (max-width: 991px) {
    input,
    select,
    textarea {
    	padding: 10px;
    	font-size: 0.75rem;
    }
    textarea {
    	height: 80px;
    }
}


/**
 * Button Style
 */
.elementor-button {
    display: inline-flex;
    padding: 15px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--e-global-color-primary);
    color: #fff !important;
    border: 0;   
    border-radius: 50px;
    cursor: pointer;
    transition: 0.7s all ease-out;
}
.btn-alt .elementor-button,
.elementor-button.alt {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary) !important;
}
.elementor-button:hover {
    background: var(--e-global-color-secondary);
    box-shadow: 0 3px 10px 0 rgba(248, 216, 161, 0.3);
    color: #333 !important;
}
.btn-alt .elementor-button:hover,
.elementor-button.alt:hover {
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(255, 255, 255, 0.3);
    color: var(--e-global-color-primary) !important;
}
.elementor-button:focus {
    outline: none;
    border: 0;
}
/*--hover--*/
.elementor-button:after {
    content: "\e8c0";
    font-family: 'eicons';
    display: inline-block;
    margin-left: 6px;
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.elementor-button:hover:after {
    animation: rollUpOut 0.4s forwards, rollInFromBottom 0.5s 0.4s forwards;
}
@keyframes rollUpOut {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(-90deg);
    }
}
@keyframes rollInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}
@media (max-width: 991px) {
    .elementor-button {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
}



/**
 * Contact form
 */
#custom-inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (min-width: 767px) {
    #custom-inquiry-form {
        gap: 16px;
    }
}
@media (max-width: 767px) {
    #custom-inquiry-form .submit-btn {
        display: inline-flex;
        justify-content: center;
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}
.form-group.alt {
    grid-column: span 2; 
}
.form-group label {
    margin-bottom: 10px;
    font-size: 0.875rem;
} 

/* Error Styling */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: red;
}
.error-message {
    display: block;
    color: red;
    font-size: 0.815rem;
    margin-top: 5px;
}

/* Response Messages */
#form-response {
    float: left;
    width: auto;
    margin-top: 20px;
}
.success-response {
    color: green;
    border: 1px dashed green;
    padding: 10px 20px;
    border-radius: 5px;
}
.error-response {
    color: red;
    border: 1px dashed red;
    padding: 10px 20px;
    border-radius: 5px;
}

/* reCAPTCHA Fix */
.g-recaptcha > div {
    height: auto !important;
}

/* Loader Spinner */
#loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--e-global-color-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
table th, table td {
    padding: 3px 3px 3px 15px;
    border-bottom: 1px solid #e6e6e6       
}
table th {
    color: var(--e-global-color-primary);
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
}
table td:first-child {
    font-weight: 600;
}
table td:first-child:after {
    content: ":";
    float: right;
}
table tr:last-child td {
    border: 0;
}

/* Responsive Design */
@media (min-width: 991px) {
    table {
        font-size: 16px;
    }
    table th, table td {
        padding: 8px 0 8px 50px;
    }
    table td:first-child {
        width: 50%!important;
    }
}



/**
 * Lists
 */
ul, ol, li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	position: relative;
}


/**
 * 404 Page Styling
 */
body.error404 .error-page {
    padding: 50px 15px;
    background: #f3f3f3;
}
body.error404 .error-page .elementor-widget-wrap {
	padding: 0 15px;
}
body.error404 .error-page .elementor-widget-wrap h1 {
	color: #343434;
	margin-bottom: 20px;
}
@media (min-width: 767px) {
    body.error404 .error-page {
    	padding: 80px 15px;
    }
}
@media (min-width: 991px) {
    body.error404 .error-page {
    	padding: 120px 0;
    }
}