* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


.hero-wrapper {
    font-family: "Montserrat", sans-serif;
    background: radial-gradient(
            ellipse at center,
            #54a5a1 0%,
            #287979 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

.hero-container {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: white;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.4;

}

.features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 600px;
    gap: clamp(1rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(100px, 25vw, 120px);
}

.feature-number {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-label {
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    font-weight: 300;
    opacity: 0.85;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding-bottom: 4px;
    text-align: center;
    hyphens: auto;
    word-wrap: break-word;
}

.cta-button {
    background: rgba(255, 255, 255, 0.7);
    color: #287979;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.cta-arrow svg {
    vertical-align: middle;
}

.cta-button:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(2px);
}

.body-container {
    width: 90%;
    margin: 30px auto 0;
    padding-bottom: 40px;
}



.offer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.individual_offer {
    flex: 1;
    min-width: clamp(250px, 30%, 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.individual_offer img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    margin-bottom: 1rem;
}

.individual_offer p {
    text-align: center;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.option {
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 249, 250, 0.92) 100%);
    margin-bottom: 3rem;
    box-shadow:
            0 8px 25px rgba(60, 64, 67, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 30vw 1fr;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(218, 220, 224, 0.4);
    backdrop-filter: blur(20px);
}

.option:hover {
    transform: translateY(-2px);
    box-shadow:
            0 20px 40px rgba(60, 64, 67, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 249, 250, 0.95) 100%);
    border-color: rgba(218, 220, 224, 0.6);
}

.image-section {
    min-height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
    max-height: 65vh;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
    rgba(154, 160, 166, 0.06) 0%,
    rgba(218, 220, 224, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 100%);
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.85) brightness(1.05);
}

.content-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.sharp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sharp-card {
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(154, 160, 166, 0.4);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(60, 64, 67, 0.05);
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(10px);
}

.sharp-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent rgba(154, 160, 166, 0.4) transparent transparent;
    transition: all 0.3s ease;
}

.sharp-card:hover {
    transform: translateX(8px);
    box-shadow: -4px 0 12px rgba(60, 64, 67, 0.1);
    background: rgba(255, 255, 255, 0.7);
    border-left-color: rgba(95, 99, 104, 0.6);
}

.sharp-card:hover::before {
    border-width: 0 30px 30px 0;
    border-color: transparent rgba(95, 99, 104, 0.6) transparent transparent;
}

.sharp-title {
    color: #5f6368;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sharp-desc {
    color: #80868b;
    font-size: 0.95rem;
    font-weight: 300;
    text-align: left;
}



.design-title {
    text-align: center;
    margin-bottom: 60px;
    color: #9aa0a6;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Enhanced Floating Elements with Golden Theme */
.floating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    perspective: 1000px;
    max-width: 1400px;
    margin: 0 auto;
}

.floating-step {
    position: absolute;
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 249, 250, 0.92) 100%);
    border: 1px solid rgba(218, 220, 224, 0.4);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 8px 25px rgba(60, 64, 67, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.floating-step:nth-child(1) {
    transform: translateX(-400px) translateY(-60px) rotateY(15deg);
    z-index: 1;
}

.floating-step:nth-child(2) {
    transform: translateX(-130px) translateY(30px) rotateY(5deg);
    z-index: 2;
}

.floating-step:nth-child(3) {
    transform: translateX(130px) translateY(-30px) rotateY(-5deg);
    z-index: 3;
}

.floating-step:nth-child(4) {
    transform: translateX(400px) translateY(60px) rotateY(-15deg);
    z-index: 4;
}

.floating-step:hover {
    transform: translateX(var(--hover-x, 0)) translateY(var(--hover-y, 0)) rotateY(0deg) scale(1.05);
    box-shadow:
            0 20px 40px rgba(60, 64, 67, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 249, 250, 0.95) 100%);
    border-color: rgba(218, 220, 224, 0.6);
}

.floating-step:nth-child(1):hover { --hover-x: -400px; --hover-y: -80px; }
.floating-step:nth-child(2):hover { --hover-x: -130px; --hover-y: 10px; }
.floating-step:nth-child(3):hover { --hover-x: 130px; --hover-y: -50px; }
.floating-step:nth-child(4):hover { --hover-x: 400px; --hover-y: 40px; }

.floating-number {
    font-size: 48px;
    font-weight: 200;
    color: rgba(154, 160, 166, 0.7);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(60, 64, 67, 0.05);
}

.floating-step:hover .floating-number {
    color: rgba(95, 99, 104, 0.8);
    transform: scale(1.1);
}

.floating-title {
    font-size: 18px;
    font-weight: 400;
    color: #5f6368;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.floating-step:hover .floating-title {
    color: #3c4043;
}

.floating-description {
    color: #80868b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
}

/* Enhanced Responsiveness for Larger Screens */
@media (min-width: 1440px) {
    .floating-container {
        min-height: 650px;
        max-width: 1800px;
    }

    .floating-step {
        width: 340px;
        height: 400px;
        padding: 60px 40px;
    }

    .floating-step:nth-child(1) {
        transform: translateX(-520px) translateY(-80px) rotateY(15deg);
    }

    .floating-step:nth-child(2) {
        transform: translateX(-170px) translateY(40px) rotateY(5deg);
    }

    .floating-step:nth-child(3) {
        transform: translateX(170px) translateY(-40px) rotateY(-5deg);
    }

    .floating-step:nth-child(4) {
        transform: translateX(520px) translateY(80px) rotateY(-15deg);
    }

    .floating-step:nth-child(1):hover { --hover-x: -520px; --hover-y: -100px; }
    .floating-step:nth-child(2):hover { --hover-x: -170px; --hover-y: 20px; }
    .floating-step:nth-child(3):hover { --hover-x: 170px; --hover-y: -60px; }
    .floating-step:nth-child(4):hover { --hover-x: 520px; --hover-y: 60px; }

    .floating-number {
        font-size: 58px;
        margin-bottom: 35px;
    }

    .floating-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .floating-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (min-width: 1920px) {
    .floating-container {
        min-height: 750px;
        max-width: 2200px;
    }

    .floating-step {
        width: 400px;
        height: 480px;
        padding: 70px 50px;
    }

    .floating-step:nth-child(1) {
        transform: translateX(-650px) translateY(-100px) rotateY(15deg);
    }

    .floating-step:nth-child(2) {
        transform: translateX(-220px) translateY(50px) rotateY(5deg);
    }

    .floating-step:nth-child(3) {
        transform: translateX(220px) translateY(-50px) rotateY(-5deg);
    }

    .floating-step:nth-child(4) {
        transform: translateX(650px) translateY(100px) rotateY(-15deg);
    }

    .floating-step:nth-child(1):hover { --hover-x: -650px; --hover-y: -120px; }
    .floating-step:nth-child(2):hover { --hover-x: -220px; --hover-y: 30px; }
    .floating-step:nth-child(3):hover { --hover-x: 220px; --hover-y: -70px; }
    .floating-step:nth-child(4):hover { --hover-x: 650px; --hover-y: 80px; }

    .floating-number {
        font-size: 68px;
        margin-bottom: 40px;
    }

    .floating-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .floating-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (min-width: 2560px) {
    .floating-container {
        min-height: 900px;
        max-width: 2800px;
    }

    .floating-step {
        width: 480px;
        height: 580px;
        padding: 85px 60px;
    }

    .floating-step:nth-child(1) {
        transform: translateX(-800px) translateY(-120px) rotateY(15deg);
    }

    .floating-step:nth-child(2) {
        transform: translateX(-270px) translateY(60px) rotateY(5deg);
    }

    .floating-step:nth-child(3) {
        transform: translateX(270px) translateY(-60px) rotateY(-5deg);
    }

    .floating-step:nth-child(4) {
        transform: translateX(800px) translateY(120px) rotateY(-15deg);
    }

    .floating-step:nth-child(1):hover { --hover-x: -800px; --hover-y: -140px; }
    .floating-step:nth-child(2):hover { --hover-x: -270px; --hover-y: 40px; }
    .floating-step:nth-child(3):hover { --hover-x: 270px; --hover-y: -80px; }
    .floating-step:nth-child(4):hover { --hover-x: 800px; --hover-y: 100px; }

    .floating-number {
        font-size: 82px;
        margin-bottom: 50px;
    }

    .floating-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .floating-description {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* Tablet specific styles for 2x2 grid layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 60px 40px;
        padding: 40px;
        max-width: 800px;
        min-height: 600px;
        perspective: none;
    }

    .floating-step {
        position: relative;
        width: 100%;
        max-width: 300px;
        justify-self: center;
        align-self: center;
    }

    .floating-step:nth-child(1) {
        transform: rotateZ(-3deg) rotateY(8deg);
    }

    .floating-step:nth-child(2) {
        transform: rotateZ(2deg) rotateY(-5deg);
    }

    .floating-step:nth-child(3) {
        transform: rotateZ(1deg) rotateY(6deg);
    }

    .floating-step:nth-child(4) {
        transform: rotateZ(-2deg) rotateY(-4deg);
    }

    .floating-step:hover {
        transform: rotateZ(0deg) rotateY(0deg) scale(1.05);
    }

    .floating-step:nth-child(1):hover { transform: rotateZ(0deg) rotateY(0deg) scale(1.05); }
    .floating-step:nth-child(2):hover { transform: rotateZ(0deg) rotateY(0deg) scale(1.05); }
    .floating-step:nth-child(3):hover { transform: rotateZ(0deg) rotateY(0deg) scale(1.05); }
    .floating-step:nth-child(4):hover { transform: rotateZ(0deg) rotateY(0deg) scale(1.05); }
}

/* Responsive breakpoints (original) */
@media (max-width: 1024px) {
    .option {
        grid-template-columns: 1fr;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 15px;
        min-height: 100vh;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 3rem;
    }

    .features-row {
        flex-direction: column;
        gap: 2rem;
        max-width: 300px;
        margin-bottom: 3rem;
    }

    .feature-item {
        min-width: 100%;
    }

    .feature-label {
        white-space: normal;
        text-align: center;
        max-width: 150px;
    }

    .offer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .individual_offer {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    .option {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .image-section {
        height: 200px;
    }
    individual_offer img{
        height: 40vh;
    }

    .content-section {
        padding: 2rem;
    }

    .floating-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px;
        perspective: none;
    }

    .floating-step {
        position: relative;
        transform: none !important;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding: 10px;
    }

    .body-container {
        width: 90%;
        padding-bottom: 30px;
    }

    .features-row {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .individual_offer {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .features-row {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-wrapper {
        min-height: auto;
        padding: 20px 10px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .features-row {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        min-width: 80px;
    }

    .feature-number {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .feature-label {
        font-size: 0.6rem;
    }
}

.sb-about-heading {
    font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    background: radial-gradient(circle, #EFB995 -20%, #98735B 110%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
}

.sb-about-paragraph-primary {
    font-size: clamp(0.9rem, 2vw, 1rem); /* Responsive font size */
    line-height: 1.7;
    color: #444;
    text-align: center;
}

/* Simple Desktop Hover Animation for Floating Cards */
@media (min-width: 1025px) {
    .floating-step:hover {
        transform: translateX(var(--hover-x, 0)) translateY(calc(var(--hover-y, 0px) - 10px)) rotateY(0deg) scale(1.05);
        transition: transform 0.3s ease;
    }
}