
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    resize: none;
}

:root {
    --color-primary: #fff;
    --color-secondary: #e86ed6;
    --color-tertiary: #777;
    --color-text: #111;
    --shadow: 0 2px 40px 8px rgba(15, 15, 15, .15);
    --transition: all .4s ease-in-out;
    --charcoal: #0f0f0f;
    --deep-gray: #1b1b1b;
    --light-grey: rgba(255, 255, 255, 0.12);
    --white: #ffffff;
    --gold: #d4af37;
    --gradient: linear-gradient(135deg, #d4af37, #f0c75e);

    --width-lg: 85%;
    --width-sm: 95%;

}

body {
    font-family: "League Spartan", sans-serif;
    /* color: var(--color-text); */
    line-height: 1.7;
    overflow-x: hidden;
    /* padding-top: 5rem; */
    font-optical-sizing: auto;
}

a {
    color: var(--color-text);
}

span {
    font-size: .9rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1rem;
}

.container {
    margin: 0 auto;
    width: var(--width-lg);
}

section {
    padding: 6rem 0 3rem;
}

section h2 {
    text-align: center;
    margin-bottom: 0.6rem;
}

.title {
    text-align: center;
    /* margin-bottom: 4rem; */
}

.title h2 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Dancing Script', cursive;
    color: var(--color-secondary);
    display: inline-block;
    position: relative;
}

.title h2::before {
    position: absolute;
    content: '';
    bottom: -10%;
    left: 0;
    transform: translateY(-50%);
    width: 8rem;
    height: .1rem;
    background: var(--color-secondary);
    margin-top: 1px;

}

/* APPOINTMENT  */

/* SECTION */
.appointment {
    background: var(--charcoal);
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    color: #f1ecec;
    font-size: 30px;
    font-weight: 600;
}

/* MAIN LAYOUT */
.appointment-wrapper {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* FORM CARD */
.appointment-form {
    background: linear-gradient(145deg, #1c1c1c, #141414);
    padding: 30px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* FULL WIDTH */
.full-width {
    grid-column: span 2;
}

/* INPUTS */
.form-control {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid var(--light-grey);
    color: var(--white);
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 12px;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* SELECT ARROW */
select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

/* TEXTAREA */
textarea.form-control {
    resize: none;
    min-height: 130px;
}

/* BUTTON */
.btn-book {
    background: var(--gradient);
    color: #000;
    padding: 16px 55px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* CONTACT INFO */
.contact-info {
    color: #ffffff;
}

.contact-text h5 {
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-text p {
    color: #ffffff;
    line-height: 1;
}

/* CONTACT ROW ALIGNMENT FIX */
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

/* ICON */
.contact-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

/* TEXT */
.contact-text h5 {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}