/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

.aquae-hero-section {
    overflow-y: hidden;
}

.aquae-hero-container {
    display: flex;
    height: 100vh;
}

.aquae-hero-left-section {
    flex: 1;
    background: #000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aquae-hero-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
	font-family: 'Poppins', sans-serif;
}

.aquae-hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color:#fff;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-hero-description {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 450px;
    color:#fff;
}

.aquae-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.aquae-hero-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #fff;
    background: #fff;
    color: #171717;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.aquae-hero-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.aquae-hero-right-section {
    flex: 1;
    display: flex;
    gap: 8px;
    background: #000;
    overflow: hidden;
}

.aquae-hero-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.aquae-hero-column .aquae-hero-media-item:last-child {
    flex: 1;
}

.aquae-hero-media-item {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    width: 100%;
}

/* Different height variations */
.aquae-hero-media-item[data-height="short"] {
    height: 150px;
}

.aquae-hero-media-item[data-height="medium"] {
    height: 220px;
}

.aquae-hero-media-item[data-height="tall"] {
    height: 280px;
}

.aquae-hero-media-item[data-height="full"] {
    flex: 1;
}

.aquae-hero-media-item[data-height="full"] {
    height: 100%;
}

.aquae-hero-media-item img,
.aquae-hero-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Offset images - shift image position within container */
.aquae-hero-media-item[data-offset="top"] img {
    object-position: center top;
}

.aquae-hero-media-item[data-offset="bottom"] img {
    object-position: center bottom;
}

.aquae-hero-media-item[data-offset="left"] img {
    object-position: left center;
}

.aquae-hero-media-item[data-offset="right"] img {
    object-position: right center;
}


.aquae-hero-media-item:hover img,
.aquae-hero-media-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .aquae-hero-container {
        flex-direction: column;
    }

    .aquae-hero-left-section {
        padding: 60px 40px;
    }

    .aquae-hero-title {
        font-size: 42px;
    }

    .aquae-hero-right-section {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .aquae-hero-left-section {
        padding: 40px 30px;
    }

    .aquae-hero-title {
        font-size: 36px;
    }

    .aquae-hero-media-item[data-height="short"] {
        height: 120px;
    }

    .aquae-hero-media-item[data-height="medium"] {
        height: 180px;
    }

    .aquae-hero-media-item[data-height="tall"] {
        height: 240px;
    }
}

.aquae-bespoke-section h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-bespoke-section .aquae-bespoke-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 450px;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
}

.aquae-bespoke-features-list {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.aquae-bespoke-features-list li {
    font-size: 16px;
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: #09090B;
    font-family: 'Poppins', sans-serif;
}

.aquae-bespoke-features-list li:before {
    content: "›";
    position: absolute;
    left: 0;
    font-size: 22px;
    margin-top: -6px;
}

.aquae-bespoke-container {
    display: flex;
    min-height: 100vh;
    gap: 60px;
    padding: 80px;
    align-items: center;
}

.aquae-bespoke-container.aquae-bespoke-reverse {
    flex-direction: row-reverse;
}

.aquae-bespoke-image-section {
    flex: 1;
}

.aquae-bespoke-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.aquae-bespoke-content-section {
    flex: 1;
    padding: 40px;
}

.aquae-bespoke-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
}

.aquae-bespoke-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #0A0A0A;
    background: #0A0A0A !important;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.aquae-bespoke-btn:hover {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
}

@media (max-width: 1024px) {
    .aquae-bespoke-container {
        flex-direction: column;
        padding: 60px 40px;
    }

    
    .aquae-bespoke-container.aquae-bespoke-reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .aquae-bespoke-container {
        padding: 0;
        overflow: hidden;
    }
    
    .aquae-bespoke-section h2 {
        font-size: 32px;
    }
}

.aquae-process-section {
    display: flex;
    min-height: 100vh;
    background: #f8f8f8;
    color: #000;
}

.aquae-process-left-column {
    flex: 0 0 35%;
    padding: 80px 60px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.aquae-process-left-column h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', sans-serif;
    color: #18181B;
}

.aquae-process-left-column p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
}

.aquae-process-description-block {
    margin-bottom: 40px;
}

.aquae-process-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #0A0A0A;
    background: #0A0A0A;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: fit-content;
    text-decoration: none;
}

.aquae-process-btn:hover {
    background: #fff;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
}

.aquae-process-right-column {
    flex: 1;
    padding: 80px 60px 80px 110px;
}

.aquae-process-step {
    display: flex;
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid #D4D4D4;
    padding: 60px 0;
}

.aquae-process-step-number {
    flex: 0 0 43%;
}

.aquae-process-step-number h3 {
    font-size: 88px;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-process-step-number h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    color: #18181B;
    font-family: 'Cormorant Garamond', sans-serif;
}


.aquae-process-step-content {
    flex: 1;
}

.aquae-process-step-content h4 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #18181B;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-process-step-content p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 500px;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.aquae-process-step-content p a {
    color: #71717B;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .aquae-process-section {
        flex-direction: column;
    }

    .aquae-process-step {
        align-items: flex-start;
        margin-bottom: 0;
    }

    .aquae-process-left-column {
        position: relative;
        height: auto;
        flex: 0 0 auto;
        padding: 60px 40px;
    }

    .aquae-process-right-column {
        padding: 40px;
    }

    .aquae-process-left-column h2 {
        font-size: 36px;
    }

    .aquae-process-step-number h3 {
        font-size: 56px;
    }

    .aquae-process-step-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .aquae-process-left-column,
    .aquae-process-right-column {
        padding: 40px 30px;
    }

    .aquae-process-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .aquae-process-step-number {
        flex: 0 0 auto;
    }

    .aquae-process-step-number h3 {
        font-size: 48px;
    }

    .aquae-process-step-content h4 {
        font-size: 18px;
    }

    .aquae-process-step:last-child {
        border-bottom: none;
    }
}


.aquae-gallery-section {
    background: #18181B;
    color: #fff;
}

.aquae-inspiration-gallery {
    padding: 100px 0;
    background: #18181B;
}

.aquae-gallery-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 60px;
    padding: 0 20px;
    color: #fff;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-gallery-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.aquae-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.aquae-carousel-track::-webkit-scrollbar {
    display: none;
}

.aquae-gallery-item {
    flex: 0 0 400px;
    height: 500px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    transition: transform 0.4s ease;
    text-decoration: none;
}

.aquae-gallery-item:hover {
    transform: scale(1.02);
}

.aquae-gallery-item img,
.aquae-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation overlay button */
.aquae-carousel-navigation-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    margin-left: 450px;
}

@media (min-width: 1801px) {
    .aquae-carousel-navigation-overlay {
        margin-left: 250px;
    }
}

.aquae-nav-blur-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.aquae-carousel-navigation-overlay svg {
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    pointer-events: none;
}

.aquae-nav-btn-left,
.aquae-nav-btn-right {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100px;
    background: transparent;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    z-index: 11;
    text-decoration: none;
}

.aquae-nav-btn-left {
    left: 0;
}

.aquae-nav-btn-right {
    right: 0;
}

.aquae-nav-blur-wrapper:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.4));
}

.aquae-nav-blur-wrapper:active svg {
    transform: scale(0.98);
}

.aquae-nav-blur-wrapper:hover svg rect {
    fill-opacity: 0.8;
}

.aquae-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}

.aquae-popup-overlay.aquae-popup-active {
    display: flex;
}

.aquae-popup-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.aquae-popup-content img,
.aquae-popup-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.aquae-popup-nav-wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.aquae-popup-nav-wrapper svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.aquae-popup-nav-wrapper:hover {
    transform: translateY(-50%) scale(1.05);
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.4));
}

.aquae-popup-nav-wrapper:active {
    transform: translateY(-50%) scale(0.98);
}

.aquae-popup-nav-wrapper:hover svg rect {
    fill-opacity: 0.8;
}

.aquae-popup-nav-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.aquae-popup-nav-prev {
    left: 20px;
}

.aquae-popup-nav-next {
    right: 20px;
}

.aquae-popup-close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.aquae-popup-close:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .aquae-gallery-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .aquae-gallery-carousel {
        padding: 0 20px;
    }

    .aquae-gallery-item {
        flex: 0 0 300px;
        height: 400px;
    }

    .aquae-nav-blur-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 35px;
    }

    .aquae-carousel-navigation-overlay svg {
        width: 70px;
        height: 70px;
    }

    .aquae-nav-btn-left,
    .aquae-nav-btn-right {
        width: 35px;
        height: 70px;
    }

    .aquae-popup-overlay {
        padding: 20px;
    }

    .aquae-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .aquae-popup-nav-wrapper {
        width: 35px;
        height: 35px;
    }

    .aquae-popup-nav-prev {
        left: 10px;
    }

    .aquae-popup-nav-next {
        right: 10px;
    }
}


.aquae-request-wrapper {
    background: #18181B;
    color: #fff;
}

.aquae-request-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aquae-request-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-top: 150px;
}

.aquae-request-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 117px;
    background: rgba(255, 255, 255, 0.5);
}

.aquae-request-header h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
    font-family: 'Cormorant Garamond', sans-serif;
}

.aquae-request-header p {
    font-size: 16px;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.aquae-upload-zone {
    width: 100%;
    max-width: 750px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #2F2F31;
    text-decoration: none;
}

.aquae-upload-zone:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.aquae-upload-zone:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

.aquae-upload-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.aquae-upload-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.aquae-upload-text {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
}

.aquae-upload-subtext {
    font-size: 14px;
    color: #A9A9B1;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.aquae-upload-button {
    padding: 12px 24px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #E1D9D9;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.aquae-upload-button:hover {
    background: #fff;
    color: #000;
}

.aquae-upload-zone input[type="file"] {
    display: none;
}

.aquae-radio-question {
    width: 100%;
    max-width: 750px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aquae-radio-question label {
    font-size: 15px;
}

.aquae-radio-options {
    display: flex;
    gap: 30px;
}

.aquae-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.aquae-radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #fff;
    text-decoration: none;
}

.aquae-radio-option span {
    font-size: 15px;
}

.aquae-info-box {
    width: 100%;
    max-width: 750px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.aquae-info-column {
    flex: 1;
}

.aquae-info-column h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.7;
}

.aquae-info-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.aquae-form-container {
    width: 100%;
    max-width: 750px;
}

.aquae-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.aquae-form-group {
    display: flex;
    flex-direction: column;
}

.aquae-form-group.aquae-form-full-width {
    grid-column: 1 / -1;
}

.aquae-form-input,
.aquae-form-textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.aquae-form-input:focus,
.aquae-form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.aquae-form-input::placeholder,
.aquae-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.aquae-form-textarea {
    min-height: 120px;
    resize: vertical;
    width: 100%;
}

.aquae-phone-input-group {
    display: flex;
    gap: 10px;
}

.aquae-country-code {
    flex: 0 0 100px;
}

.aquae-phone-number {
    flex: 1;
}

.aquae-form-footer {
    text-align: center;
    margin-top: 30px;
}

.aquae-form-footer p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.aquae-submit-button {
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
}

.aquae-submit-button:hover {
    background: transparent;
    color: #fff;
}

/* Zoho Form Error Messages */
.zf-errorMessage {
    color: #ff4444;
    font-size: 13px;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Success Popup */
.aquae-success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.aquae-success-popup-content {
    background: #18181B;
    border: 1px solid #3F3F46;
    border-radius: 8px;
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.aquae-success-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aquae-success-popup-close:hover {
    background: #fff;
    color: #18181B;
}

.aquae-success-icon {
    margin: 0 auto 30px;
    animation: checkmarkPop 0.5s ease 0.2s both;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.aquae-success-popup-content h2 {
    font-size: 36px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
}

.aquae-success-popup-content p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.aquae-success-subtext {
    color: #A9A9B1;
    font-size: 14px;
}

@media (max-width: 768px) {
    .aquae-success-popup-content {
        padding: 40px 30px;
    }

    .aquae-success-popup-content h2 {
        font-size: 28px;
    }

    .aquae-success-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .aquae-request-header {
        padding-top: 120px;
    }

    .aquae-request-header::before {
        height: 90px;
    }

    .aquae-request-header h2 {
        font-size: 32px;
    }

    .aquae-upload-zone {
        padding: 40px 30px;
    }

    .aquae-radio-question {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .aquae-info-box {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .aquae-form-row {
        grid-template-columns: 1fr;
    }

    .aquae-country-code {
        flex: 1;
    }
}

/* FAQ Section Styles */
.aquae-faq-section {
    padding: 100px 60px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
}

.aquae-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.aquae-faq-header {
    position: sticky;
    top: 100px;
}

.aquae-faq-title {
    font-size: 40px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    color: #18181B;
}

.aquae-faq-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aquae-faq-item {
    overflow: hidden;
}

.aquae-faq-question {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #18181B;
    transition: all 0.3s ease;
    position: relative;
}

.aquae-faq-question:hover {
    opacity: 0.7;
}

.aquae-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.aquae-faq-question.aquae-faq-active .aquae-faq-icon {
    transform: rotate(-90deg);
}

.aquae-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.aquae-faq-answer-content {
    font-size: 14px;
    line-height: 1.5;
    color: #71717B;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding-bottom: 30px;
    padding-right: 0;
}

.aquae-faq-item.aquae-faq-open .aquae-faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

@media (max-width: 1024px) {
    .aquae-faq-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .aquae-faq-header {
        position: relative;
        top: 0;
    }

    .aquae-faq-section {
        padding: 80px 40px;
    }

    .aquae-faq-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .aquae-faq-section {
        padding: 60px 30px;
    }

    .aquae-faq-title {
        font-size: 32px;
    }

    .aquae-faq-question {
        font-size: 15px;
        padding: 25px 0;
    }
    
    .aquae-faq-icon {
        width: 32px;
        height: 32px;
    }

    .aquae-faq-answer-content {
        font-size: 13px;
        padding-right: 0;
    }
}


.aquae-bespoke-container {
	min-height: auto;
}

.aquae-faq-section {
    min-height: auto;
}


/* Promise Section Styles */
.aquae-promise-section {
    padding: 100px 60px;
    background: #fafafa;
}

.aquae-promise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aquae-promise-title {
    font-size: 40px;
    font-family: 'Cormorant Garamond', sans-serif;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #171717;
}

.aquae-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.aquae-promise-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
}

.aquae-promise-card-title {
    font-size: 24px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    color: #171717;
    line-height: 1.3;
}

.aquae-promise-card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #737373;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1200px) {
    .aquae-promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .aquae-promise-section {
        padding: 80px 30px;
    }

    .aquae-promise-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .aquae-promise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aquae-promise-card {
        padding: 20px 10px;
    }

    .aquae-promise-card-title {
        font-size: 16px;
    }

    .aquae-promise-card-description {
        font-size: 13px;
    }
}


