

/* .container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
    padding: 0 var(--container-padding);
} */

/* Hero Section */
.consultation-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.consultation-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.consultation-hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-oxford-blue-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.service-card {
    background: var(--bg-oxford-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-bottom: var(--border-main);
}

.card-header .icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* border: var(--border-main); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */
}

.card-header .icon .iconz {
    font-size: 2rem;
    color: var(--primary-190);
}

.card-header h2 {
    font-size: 1.75rem;
    /* margin-bottom: 0.5rem; */
}

.card-header p {
    color: var(--surface-100);
}

.card-body {
    padding-top: 0.5rem; 

    width: 100%;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--surface-100);
}

.features-list i {
    color: var(--primary-190);
}

.pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-190);
}

.period {
    color: var(--surface-100);
    opacity: 0.8;
}

.booking-button {
    display: block;
    background: var(--primary-190);
    pointer-events: auto;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.booking-button:hover {
    background: transparent;
    transform: translateY(-2px);
    color: var(--surface-100);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    border: var(--border-main);
}

/* Process Section */
.process-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    /* background: white; */
    background-color: hsla(270, 100%, 50%, 0.045);
}

.process-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.process-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-oxford-blue);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: var(--border-main);
}

.process-card:hover {
    transform: translateY(-5px);
}

.number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: var(--primary-190);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card h3 {
    margin-bottom: 1rem;
    font-family: "inter", sans-serif !important;
    font-size: 25px;
    color: var(--primary-190);
}

/* Booking Section */
.booking-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    /* background: var(--section-bg); */
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-image: url(../assets/images/bg/bg-3.png); 
    background-color: hsla(270, 100%, 50%, 0.045);
    background-repeat: no-repeat; 
}

.booking-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.booking-form {
    /* background: white; */
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.11);
    border: var(--border-main);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px; 
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-190);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border-radius: 8px;
    font-family: inherit;
    background: rgba(136, 132, 132, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.6px);
    -webkit-backdrop-filter: blur(9.6px);
    border: 1px solid rgba(77, 73, 73, 0.49);
}

.form-group select {
    color: var(--primary-190);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background: var(--primary-190);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: transparent;
    color: var(--surface-100);
    border: var(--border-main);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px;
    transform: translateY(-2px);
}

.booking-info {
    /* background: white; */
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.11);
    border: var(--border-main);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px; 
}

.booking-info h3 {
    margin-bottom: 1.5rem;
    color: var(--surface-100);
}

.booking-info ul {
    list-style: none;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--surface-100);
    opacity: 0.8;
}

.booking-info i {
    color: var(--primary-190);
}

/* Testimonials Section */
.testimonials {
    padding: clamp(3rem, 8vw, 6rem) 0;
    /* background: white; */
    background-color: hsla(270, 100%, 50%, 0.045);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.testimonial-card {
    background: var(--bg-oxford-blue);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: var(--border-main);
}

.quote {
    color: var(--primary-190);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--primary-190);
}

.author-info p {
    color: var(--surface-100);
    margin: 0;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--section-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.faq-item {
    background: var(--bg-oxford-blue);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--surface-100);
    font-family: "inter", sans-serif !important;
}

.faq-item p {
    color: var(--surface-100);
    opacity: 0.8;
    font-family: "inter", sans-serif !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin: 0 1rem;
    }
}

/* Print Styles */
@media print {
    .consultation-hero {
        background: none;
        color: black;
    }

    .service-card,
    .process-card,
    .testimonial-card,
    .faq-item {
        break-inside: avoid;
        box-shadow: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --secondary-color: #000080;
        --text-color: #000000;
        --light-text: #404040;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}