/* ----- Global ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: white;
    color: #ffffff;
}

.ad-ge-page {
    max-width: 100%;
    margin: 24px 0px 40px;
    padding: 0 40px;
}

/* ----- Breadcrumb ----- */
.ad-ge-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.ad-ge-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.ad-ge-breadcrumb a:hover {
    text-decoration: underline;
}

.ad-ge-breadcrumb .ad-ge-current {
    color: #885EFF;
}

/* ----- Agent Card ----- */
.ad-ge-agent-card {
    background-image: url("../assets/images/Frame\ 223.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 26px;
    padding: 32px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 32px;
    box-shadow: 0 24px 60px rgba(64, 31, 139, 0.35);
}

/* Photo */
.ad-ge-agent-photo {
    border-radius: 22px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-ge-agent-photo img {
    width: 100%;
    height: 100%;
    min-height: 318px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

/* Info wrapper */
.ad-ge-agent-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Top header */
.ad-ge-agent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.ad-ge-agent-header h1 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
}

.ad-ge-company {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

.ad-ge-company span {
    color: #ffe9ff;
    font-weight: 500;
}

/* Buttons */
.ad-ge-agent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-ge-btn {
    border-radius: 999px;
    padding: 9px 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ad-ge-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.ad-ge-call-circle {
    background-color: rgba(0, 255, 255, 0.764);
    border-radius: 50%;
    padding: 8px;
}

.ad-ge-btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
}

.ad-ge-btn-primary {
    background: #7b3cff;
    color: white;
}

.ad-ge-btn .ad-ge-icon {
    font-size: 16px;
}

.ad-ge-btn .ad-ge-arrow {
    font-size: 18px;
}

.ad-ge-icon {
    background-color: white;
    border-radius: 50px;
    padding: 10px 12px;
}

/* Stats row */
.ad-ge-agent-stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ad-ge-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ad-ge-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.ad-ge-stat-text {
    font-size: 13px;
}

.ad-ge-stat-main {
    margin: 0 0 2px;
    font-weight: 500;
}

.ad-ge-stat-label {
    margin: 0;
    opacity: 0.86;
}

/* Details list */
.ad-ge-agent-details {
    font-size: 13px;
    border-radius: 16px;
    padding: 14px 16px;
}

.ad-ge-detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.ad-ge-detail-row:last-child {
    margin-bottom: 0;
}

.ad-ge-label {
    min-width: 120px;
    opacity: 0.9;
}

.ad-ge-value {
    opacity: 1;
}

/* Contact bar */
.ad-ge-agent-contact {
    margin-top: 6px;
    background-color: rgba(211, 211, 211, 0.267);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px; */
}

.ad-ge-contact-item {
    display: flex;
    align-items: center;
}

.ad-ge-contact-icon {

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

.ad-ge-contact-text {
    font-size: 13px;
}

.ad-ge-contact-main {
    font-weight: 500;
}

.ad-ge-contact-label {
    margin: 0;
    opacity: 0.82;
}

.ad-ge-navigation {
    transform: rotate(70deg);
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .ad-ge-agent-card {
        grid-template-columns: 1fr;
    }

    .ad-ge-agent-photo {
        max-width: 420px;
        margin: 0 auto;
    }

    .ad-ge-agent-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-ge-agent-actions {
        margin-top: 10px;
    }

    .ad-ge-agent-contact {
        justify-content: start;
    }
}

@media (max-width: 600px) {
    .ad-ge-agent-card {
        padding: 20px;
        border-radius: 20px;
    }

    .ad-ge-agent-photo {
        padding: 12px;
        border-radius: 18px;
    }

    .ad-ge-agent-header h1 {
        font-size: 22px;
    }

    .ad-ge-agent-stats {
        gap: 18px;
    }

    .ad-ge-agent-details {
        padding: 12px;
    }

    .ad-ge-agent-contact {
        padding: 12px;
    }

    .ad-ge-page {
        margin-top: 16px;
    }
}

/* Wrapper */
.ad-ge-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    gap: 24px;
    padding: 40px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* Card */
.ad-ge-stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 32px;
    color: #fff;
}

.ad-ge-stat-card h3 {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    border-radius: 12px;
    opacity: 0.95;
}

/* Layout */
.ad-ge-chart-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Chart container */
.ad-ge-chart-box {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

/* Legend */
.ad-ge-legend {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.ad-ge-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
    font-weight: 500;
}

/* Dots */
.ad-ge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ad-ge-blue {
    background: #63c7ff;
}

.ad-ge-pink {
    background: #ff9acb;
}

.ad-ge-green {
    background: #8ee39d;
}

.ad-ge-yellow {
    background: #ffe28a;
}

/* Responsive */
@media (max-width: 1100px) {
    .ad-ge-stats-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .ad-ge-chart-row {
        flex-direction: column;
        gap: 20px;
    }

    .ad-ge-stat-card {
        padding: 24px;
    }
}

/* Background Wrapper */
.ad-ge-background-wrapper {
    width: 100%;
    background-image: url("../assets/images/Frame\ 224.png");
    background-repeat: repeat;
}

.ad-ge-main-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    align-items: start;
    max-width: 100%;
    margin: 0px;
    padding: 0 40px;
}

.ad-ge-whole-wrapper {
    padding: 50px 0;
}

.ad-ge-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 95%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    padding: 40px;
}

.ad-ge-card-header {
    margin-bottom: 30px;
}

.ad-ge-card-header h1 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid lightgrey;
}

.ad-ge-card-content p {
    color: #4a556869;
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 30px;
}

.ad-ge-social-section h2 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.ad-ge-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ad-ge-social-icon {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.ad-ge-social-icon svg {
    fill: #4a5568;
    transition: fill 0.3s ease;
}

@media (max-width: 640px) {
    .ad-ge-card {
        padding: 30px 25px;
    }

    .ad-ge-card-header h1 {
        font-size: 24px;
    }

    .ad-ge-card-content p {
        font-size: 15px;
    }

    .ad-ge-social-section h2 {
        font-size: 18px;
    }

    .ad-ge-social-icon {
        width: 40px;
        height: 40px;
    }

    .ad-ge-social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .ad-ge-card {
        padding: 25px 20px;
    }

    .ad-ge-card-header h1 {
        font-size: 22px;
    }

    .ad-ge-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.ad-ge-main-wrapper {
    max-width: 900px;
    margin-top: 40px;
}

.ad-ge-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.ad-ge-title-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    flex-shrink: 0;
}

.ad-ge-search-svg {
    width: 28px;
    height: 28px;
    stroke: #9ca3af;
}

.ad-ge-filter-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ad-ge-filter-button {
    padding: 12px 20px;
    border: none;
    background: #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s;
}

.ad-ge-filter-button.ad-ge-selected {
    background: #7c3aed;
    color: white;
}

.ad-ge-filter-button:hover {
    background: #d1d5db;
}

.ad-ge-filter-button.ad-ge-selected:hover {
    background: #6d28d9;
}

.ad-ge-listings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ad-ge-listing-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.ad-ge-listing-item:hover {
    transform: translateY(-2px);
}

.ad-ge-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.ad-ge-listing-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-ge-tag-container {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.ad-ge-status-tag {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ad-ge-tag-featured {
    background: rgba(211, 211, 211, 0.464);
    color: #10b981;
}

.ad-ge-tag-sale {
    background: rgba(211, 211, 211, 0.464);
    color: #ef4444;
}

.ad-ge-photo-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.ad-ge-listing-item:hover .ad-ge-photo-nav-btn {
    opacity: 1;
}

.ad-ge-photo-nav-btn.ad-ge-previous {
    left: 12px;
}

.ad-ge-photo-nav-btn.ad-ge-following {
    right: 12px;
}

.ad-ge-photo-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.ad-ge-listing-info {
    padding: 14px;
}

.ad-ge-listing-heading {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.ad-ge-address-line {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 11px;
    margin-bottom: 10px;
}

.ad-ge-address-line span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.ad-ge-pin-icon {
    width: 12px;
    height: 12px;
    fill: #7c3aed;
}

.ad-ge-features-list {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 11px;
    border-bottom: 2px solid rgba(211, 211, 211, 0.815);
}

.ad-ge-feature-detail {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ad-ge-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-ge-cost-display {
    font-size: 16px;
    font-weight: 700;
    color: #7c3aed;
}

.ad-ge-rounded-bg {
    background-color: #6d28d9;
    border-radius: 50px;
}

.ad-ge-action-circle {
    background-color: #6d28d9;
    border-radius: 50px;
    padding: 5px 7px;
}

.ad-ge-details-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    color: black;
    border: none;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    background: none;
}

.ad-ge-small-arrow {
    width: 10px;
    height: 10px;
}

.ad-ge-more-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.ad-ge-more-listings-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 6px 6px 6px 15px;
    background: #ddd6fe;
    color: #7c3aed;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    min-width: 120px;
}

.ad-ge-more-listings-btn:hover {
    transform: translateY(-2px);
}

.ad-ge-arrow-circle-wrap {
    background: #7c3aed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-ge-arrow-circle-wrap svg {
    width: 15px;
    height: 15px;
}

.ad-ge-more-listings-btn span {
    padding-left: 0;
}

@media (max-width: 500px) {
    .ad-ge-listings-grid {
        grid-template-columns: 1fr;
    }

    .ad-ge-page-header {
        gap: 12px;
        flex-wrap: wrap;
    }

    .ad-ge-title-section {
        font-size: 24px;
    }

    .ad-ge-filter-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .ad-ge-title-section {
        font-size: 20px;
    }

    .ad-ge-filter-button {
        padding: 8px 14px;
        font-size: 13px;
    }

    .ad-ge-page-header {
        flex-wrap: wrap;
    }

    .ad-ge-filter-group {
        gap: 8px;
    }
}

.ad-ge-testimonial-outer-container {
    max-width: 900px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.ad-ge-client-feedback-header {
    margin-bottom: 30px;
}

.ad-ge-client-feedback-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.ad-ge-speech-bubble-icon {
    width: 30px;
    height: 30px;
}

.ad-ge-review-count-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 12px;
    font-size: 14px;
    color: #666;
}

.ad-ge-average-rating-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ad-ge-golden-star-emoji {
    color: #ffd700;
    font-size: 18px;
}

.ad-ge-numeric-rating-text {
    font-weight: 600;
    color: #333;
}

.ad-ge-carousel-navigation-wrapper {
    position: relative;
    padding: 0 50px;
}

.ad-ge-overflow-hidden-container {
    overflow: hidden;
    border-radius: 12px;
}

.ad-ge-horizontal-slide-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.ad-ge-purple-testimonial-card {
    /* min-width: calc(33.333% - 14px); */
    width: calc(33.333% - 14px);
    flex: 0 0 calc(33.333% - 14px);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 16px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.ad-ge-five-star-rating-row {
    display: flex;
    gap: 5px;
}

.ad-ge-yellow-star-icon {
    color: #ffd700;
    font-size: 20px;
}

.ad-ge-customer-quote-text {
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.ad-ge-client-profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ad-ge-circular-avatar-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.ad-ge-name-location-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ad-ge-name-location-block p {
    font-size: 13px;
    opacity: 0.9;
}

.ad-ge-circular-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.ad-ge-circular-nav-button:hover {
    background: #7c3aed;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.ad-ge-circular-nav-button.ad-ge-visibility-hidden {
    opacity: 0;
    pointer-events: none;
}

.ad-ge-circular-nav-button.ad-ge-position-left {
    left: 0;
}

.ad-ge-circular-nav-button.ad-ge-position-right {
    right: 0;
}

.ad-ge-chevron-arrow-symbol {
    font-size: 20px;
    font-weight: bold;
}

.ad-ge-pagination-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.ad-ge-single-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-ge-single-pagination-dot.ad-ge-dot-active-state {
    background: #7c3aed;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .ad-ge-purple-testimonial-card {
        width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .ad-ge-carousel-navigation-wrapper {
        padding: 0 10px;
    }

    .ad-ge-purple-testimonial-card {
        width: 100%;
        flex: 0 0 100%;
    }

    .ad-ge-circular-nav-button {
        width: 35px;
        height: 35px;
    }

    .ad-ge-client-feedback-header h2 {
        font-size: 24px;
    }
}

.ad-ge-review-form-wrapper {
    max-width: 900px;
}

.ad-ge-form-title-section {
    margin-bottom: 30px;
}

.ad-ge-form-title-section h2 {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ad-ge-pen-icon-svg {
    width: 35px;
    height: 35px;
    color: #666;
}

.ad-ge-review-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ad-ge-rating-section-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.ad-ge-star-rating-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.ad-ge-star-rating-icon {
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.ad-ge-star-rating-icon.ad-ge-filled {
    color: #ffd700;
}

.ad-ge-star-rating-icon.ad-ge-empty {
    color: #d1d5db;
}

.ad-ge-star-rating-icon:hover {
    transform: scale(1.1);
}

.ad-ge-input-fields-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.ad-ge-form-input-group {
    display: flex;
    flex-direction: column;
}

.ad-ge-input-label-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.ad-ge-required-asterisk {
    color: #ef4444;
}

.ad-ge-text-input-field {
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.ad-ge-text-input-field::placeholder {
    color: #9ca3af;
}

.ad-ge-text-input-field:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.ad-ge-textarea-group {
    margin-bottom: 20px;
    position: relative;
}

.ad-ge-review-textarea-field {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb !important;
    border-radius: 24px;
    background: #ffffff;
    font-size: 14px;
    color: #333;
    outline: none;
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.ad-ge-review-textarea-field::placeholder {
    color: #9ca3af;
}

.ad-ge-review-textarea-field:focus {
    border-color: #7c3aed;
}

.ad-ge-character-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: #9ca3af;
}

.ad-ge-upload-section {
    margin-bottom: 25px;
}

.ad-ge-upload-label-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.ad-ge-file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 6px 8px;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-ge-file-upload-area:hover {
    border-color: #7c3aed;
    background: #faf5ff;
}

.ad-ge-upload-instruction-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.ad-ge-upload-file-format {
    font-size: 12px;
    color: #9ca3af;
}

.ad-ge-hidden-file-input {
    display: none;
}

.ad-ge-submit-button-wrapper {
    display: flex;
    justify-content: flex-start;
}

.ad-ge-submit-review-button {
    background: #d4c5f9;
    color: #7c3aed;
    border: none;
    border-radius: 50px;
    padding: 6px 6px 6px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: none;
}

.ad-ge-submit-review-button:hover {
    background: #7c3aed;
    color: #fff;
}

.ad-ge-submit-review-button:active {
    transform: translateY(0);
}

.ad-ge-submit-review-button:hover .ad-ge-arrow-icon-circle {
    background: #fff;
}

.ad-ge-submit-review-button:hover .ad-ge-arrow-icon-circle svg {
    fill: #7c3aed;
}


.ad-ge-arrow-icon-circle {
    width: 30px;
    height: 30px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.ad-ge-arrow-icon-circle svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 768px) {
    .ad-ge-review-form-container {
        padding: 30px 20px;
    }

    .ad-ge-input-fields-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ad-ge-form-title-section h2 {
        font-size: 28px;
    }

    .ad-ge-star-rating-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .ad-ge-review-form-container {
        padding: 25px 15px;
    }

    .ad-ge-form-title-section h2 {
        font-size: 24px;
    }

    .ad-ge-submit-review-button {
        width: 100%;
        justify-content: center;
    }
}

/* Fixed Form Container */
.ad-ge-form-container {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.ad-ge-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.ad-ge-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
    /* Moved from .ad-ge-input-field */
}

.ad-ge-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
    /* Space for the icon */
    cursor: pointer;
    margin-bottom: 0 !important;
    /* Reset margin when wrapped */
}

.ad-ge-select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

/* Input Fields */
.ad-ge-input-field {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s;
}

.ad-ge-input-field:focus {
    border-color: #7c3aed;
}

.ad-ge-input-field::placeholder {
    color: #9ca3af;
}

/* Textarea */
.ad-ge-textarea-field {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.ad-ge-textarea-field:focus {
    border-color: #7c3aed;
}

.ad-ge-textarea-field::placeholder {
    color: #9ca3af;
}

/* Terms Text */
.ad-ge-terms-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.ad-ge-terms-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
}

.ad-ge-terms-link:hover {
    text-decoration: underline;
}

/* Send Message Button */
.ad-ge-send-button {
    width: 100%;
    padding: 6px 6px 6px 15px;
    background: #ddd6fe;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 200;
    color: #7c3aed;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.ad-ge-send-button:hover {
    background: #7c3aed;
    color: #fff;
}

.ad-ge-send-button:hover .ad-ge-arrow-circle {
    background: #fff;
}

.ad-ge-send-button:hover .ad-ge-arrow-circle svg {
    stroke: #7c3aed;
}

.ad-ge-arrow-circle {
    width: 30px;
    height: 30px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-ge-arrow-icon {
    width: 15px;
    height: 15px;
    stroke: white;
    stroke-width: 2.5;
}

/* Action Buttons */
.ad-ge-action-buttons {
    display: flex;
    gap: 12px;
}

.ad-ge-action-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: white;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.ad-ge-action-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}

.ad-ge-whatsapp-icon {
    width: 20px;
    height: 20px;
}

.ad-ge-send-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ad-ge-error-msg {
    color: #f87171;
    font-size: 12px;
    margin-top: -8px;
    margin-bottom: 8px;
    padding-left: 5px;
    font-weight: 500;
}

.ad-ge-success-msg {
    background-color: #ecfdf5;
    color: #047857;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #10b981;
    font-weight: 500;
}



@media (max-width: 1024px) {
    .ad-ge-form-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 900px;
        margin: 20px auto 40px auto;
    }
}

@media (max-width: 480px) {
    .ad-ge-form-container {
        padding: 24px;
    }

    .ad-ge-form-title {
        font-size: 20px;
    }

    .ad-ge-input-field,
    .ad-ge-textarea-field {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Demo Content for Desktop View */
.ad-ge-demo-content {
    max-width: 800px;
    padding: 40px;
}

@media (max-width: 768px) {
    .ad-ge-demo-content {
        display: none;
    }
}

.ad-ge-footer-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #7c6ba8 0%, #6b5b95 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-ge-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 30px;
}

.ad-ge-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 200px;
    margin-bottom: 40px;
}

.ad-ge-footer-column h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.ad-ge-footer-column ul {
    list-style: none;
}

.ad-ge-footer-column ul li {
    margin-bottom: 15px;
}

.ad-ge-footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.ad-ge-footer-column ul li a:hover {
    opacity: 0.8;
}

.ad-ge-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
}

.ad-ge-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ad-ge-newsletter-section {
    max-width: 100%;
}

.ad-ge-newsletter-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.ad-ge-newsletter-input-wrapper input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
}

.ad-ge-newsletter-input-wrapper input::placeholder {
    color: #999;
}

.ad-ge-newsletter-button {
    background: linear-gradient(135deg, #8b7ab8 0%, #7d6aad 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ad-ge-newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ad-ge-newsletter-button svg {
    width: 18px;
    height: 18px;
}

.ad-ge-newsletter-text {
    color: white;
    font-size: 14px;
    margin-top: 15px;
}

.ad-ge-footer-bottom {
    background: #1a1a1a;
    padding: 25px 40px;
}

.ad-ge-footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-ge-brand-name {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.ad-ge-copyright-text {
    color: #999;
    font-size: 14px;
}

.ad-ge-social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ad-ge-social-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ad-ge-social-links a:hover {
    opacity: 0.7;
}

.ad-ge-social-links svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .ad-ge-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ad-ge-newsletter-section {
        grid-column: 1 / -1;
    }

    .ad-ge-footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .ad-ge-footer-content {
        padding: 40px 20px 20px;
    }

    .ad-ge-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ad-ge-footer-bottom {
        padding: 20px;
    }

    .ad-ge-footer-bottom-content {
        gap: 15px;
    }

    .ad-ge-brand-name {
        font-size: 18px;
    }

    .ad-ge-copyright-text {
        font-size: 13px;
    }
}

/* Header Styles */
.ad-ge-header {
    background: white;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.ad-ge-header-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-ge-logo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.ad-ge-nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    background-color: rgba(119, 136, 153, 0.053);
    padding: 10px;
    border-radius: 20px;
}

.ad-ge-nav-menu li a {
    text-decoration: none;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ad-ge-nav-menu li a:hover {
    color: #333;
    background: #f5f5f5;
}

.ad-ge-nav-menu li a.ad-ge-active {
    background: #4a4a4a;
    color: white;
}

.ad-ge-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ad-ge-phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    background-color: rgba(119, 136, 153, 0.093);
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
}

.ad-ge-phone-icon {
    width: 16px;
    height: 16px;
}

.ad-ge-test {
    display: flex;
    gap: 8px;
}

.ad-ge-btn {
    border: none;
    border-radius: 50px;
    padding: 6px 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 120px;
    padding-left: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.ad-ge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ad-ge-btn:active {
    transform: translateY(0);
}

.ad-ge-btn-login {
    background-color: #d4c5f9;
    color: #8b5cf6;
}

.ad-ge-btn-signup {
    background-color: #8b5cf6;
    color: #ffffff;
}

.ad-ge-btn div {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ad-ge-btn-login div {
    background-color: #8b5cf6;
}

.ad-ge-btn-signup div {
    background-color: #ffffff;
}

.ad-ge-btn:hover div {
    transform: translateX(3px);
}

.ad-ge-btn svg {
    width: 15px;
    height: 15px;
}

.ad-ge-btn-login svg {
    fill: #ffffff;
}

.ad-ge-btn-signup svg {
    fill: #8b5cf6;
}

/* Mobile Menu Toggle */
.ad-ge-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.ad-ge-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .ad-ge-nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .ad-ge-nav-menu.ad-ge-active {
        left: 0;
    }

    .ad-ge-nav-menu li {
        width: 100%;
    }

    .ad-ge-nav-menu li a {
        display: block;
        padding: 16px;
        border-radius: 0;
    }

    .ad-ge-menu-toggle {
        display: flex;
    }

    .ad-ge-menu-toggle.ad-ge-active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .ad-ge-menu-toggle.ad-ge-active span:nth-child(2) {
        opacity: 0;
    }

    .ad-ge-menu-toggle.ad-ge-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .ad-ge-header-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .ad-ge-phone-number {
        display: none;
    }

    .ad-ge-header-actions {
        gap: 8px;
    }

    .ad-ge-btn {
        padding: 2px 2px;
        font-size: 13px;
    }

    .ad-ge-logo {
        font-size: 18px;
    }
}