/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background-color: #000924;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #000924;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav li {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .main-nav a {
        display: block;
        padding: 0.8rem 1rem;
        border-radius: 4px;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
}

.logoh3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    gap: 0.8rem;
}

.logo-img {
    height: 3rem;
    width: 3rem;
    display: block;
    border: 1px solid white;
    border-radius: 50%;
    padding: 2px;
    object-fit: contain;
}

/* Responsive adjustments for logo and title */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .logo-img {
        height: 2.2rem;
        width: 2.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 1.8rem;
        width: 1.8rem;
    }
    
    .logo span {
        display: none; /* Hide text on very small screens */
    }
}

.logo span {
    display: inline-block;
    line-height: 1;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    position: relative;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.shopee-icon {
    font-size: 1rem;
}

.shopee-icon {
    padding: 0 4px;
}

.shopee-icon svg {
    width: 18px;
    height: 18px;
}

/* Main Content */
/* Hero Section */
.hero {
    margin: 0;
    background-color: #f9f9f9;
    min-height: 80vh;
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 70% 30%;
    width: 100vw;
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
}

.image-placeholder span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.hero-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    background-color: #fff;
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 3rem;
    color: #000924;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #000924;
    color: white;
    border: 2px solid #000924;
}

.btn-primary:hover {
    background-color: transparent;
    color: #000924;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
        margin-bottom: 3rem; /* Increased space below hero section */
    }
    
    .hero-text {
        text-align: center;
        padding: 0 1rem 2.5rem; /* Increased bottom padding */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-text {
        padding-bottom: 3.5rem; /* Increased bottom padding on mobile */
    }
    
    /* Add extra space before promo banner on mobile */
    .promo-banner {
        margin-top: 2rem;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000924;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #000924;
    color: white;
    border: 2px solid #000924;
}

.btn-primary:hover {
    background-color: transparent;
    color: #000924;
}

/* Adjust main content spacing */
main {
    margin: 0;
    min-height: calc(100vh - 80px);
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #000924 0%, #1a237e 100%);
    color: #ffffff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Ensure all text in promo banner is white */
.promo-banner,
.promo-banner h2,
.promo-banner p,
.promo-banner .promo-tag,
.promo-banner .launch-date,
.promo-banner .launch-date i,
.promo-banner .launch-date span,
.promo-banner .promo-text h2 {
    color: #ffffff !important;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.promo-text {
    flex: 1;
    padding-right: 4rem;
}

.promo-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.launch-date {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.launch-date i {
    margin-right: 0.8rem;
    color: #64b5f6;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #000924;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promo-image {
    flex: 1;
    position: relative;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.promo-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #64b5f6;
}

.promo-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.promo-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .launch-date {
        justify-content: center;
    }
    
    .promo-banner h2 {
        font-size: 2rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
    }
}

/* Promotional Section */
.promo-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-text {
    flex: 1;
}

.promo-text .tag {
    display: inline-block;
    background-color: #000924;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-text h2 {
    font-size: 2.2rem;
    color: #000924;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.promo-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    max-width: 500px;
}

.discount-highlight {
    display: flex;
    align-items: center;
    margin: 1.8rem 0;
    gap: 0.5rem;
}

.discount-amount {
    font-size: 1.1rem;
    color: #4a5568;
}

.discount-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000924;
    line-height: 1;
    margin: 0 0.3rem;
}

.discount-off {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000924;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

.promo-image {
    flex: 1;
    position: relative;
    min-height: 300px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-placeholder {
    text-align: center;
    color: #6b7280;
}

.promo-placeholder i {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.promo-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .promo-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .discount-highlight {
        justify-content: center;
    }
    
    .promo-image {
        width: 100%;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .promo-text h2 {
        font-size: 1.8rem;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .discount-off {
        font-size: 1.5rem;
    }
}

/* Values & QCDS Section */
.values-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000924;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: #000924;
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.qcds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.qcds-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qcds-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.qcds-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 9, 36, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000924;
    transition: all 0.3s ease;
}

.qcds-item:hover .qcds-icon {
    background: #000924;
    color: white;
    transform: rotateY(180deg);
}

.qcds-item h3 {
    color: #000924;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.qcds-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.availability-banner {
    background: linear-gradient(135deg, #000924 0%, #1a237e 100%);
    border-radius: 10px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.availability-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.availability-text {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1rem;
}

.availability-text i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: #64b5f6;
}

.availability-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .qcds-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .availability-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .availability-text {
        text-align: left;
        padding: 0;
    }
    
    .availability-text h3 {
        justify-content: flex-start;
    }
}

/* 3-Column Reviews Section */
.reviews-3col-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
    touch-action: pan-y;
}

/* Responsive adjustments for reviews */
@media (max-width: 992px) {
    .reviews-3col-section {
        padding: 5rem 0;
    }
    
    .reviews-track {
        padding: 2rem 0;
    }
    
    .review-card-wrapper {
        min-width: 80%;
        margin: 0 10%;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .reviews-3col-section {
        padding: 4rem 0;
    }
    
    .review-card-wrapper {
        min-width: 90%;
        margin: 0 5%;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.reviews-3col-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    padding: 3rem 0;
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.review-card-wrapper {
    flex: 0 0 33.333%;
    padding: 0 15px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    outline: none;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    outline: none;
    border: 1px solid #eee;
    text-align: center;
}

/* Active (center) card */
.review-card-wrapper.active .review-card {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-color: #fff;
}

/* Side cards */
.review-card-wrapper.prev .review-card,
.review-card-wrapper.next .review-card {
    opacity: 0.8;
    transform: scale(0.9);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Far side cards */
.review-card-wrapper.far-prev,
.review-card-wrapper.far-next {
    opacity: 0.6;
    transform: scale(0.85);
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hidden cards */
.review-card-wrapper.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effects */
.review-card-wrapper:not(.active) .review-card:hover {
    transform: scale(0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.review-card-wrapper.active .review-card:hover {
    transform: scale(1.12);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .review-card-wrapper {
        flex: 0 0 50%;
        padding: 0 10px;
    }
    
    .review-card-wrapper.hidden {
        display: none;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .review-card-wrapper {
        flex: 0 0 100%;
        padding: 0 20px;
    }
    
    .review-card-wrapper:not(.active) {
        opacity: 0;
        pointer-events: none;
    }
    
    .review-card-wrapper.active {
        opacity: 1;
    }
    
    .reviews-track {
        padding: 2rem 0;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* Animation classes */
.review-3col-main.slide-left {
    animation: slideOutLeft 0.6s forwards;
}

.review-3col-main.slide-right {
    animation: slideOutRight 0.6s forwards;
}

.review-3col-main.slide-in-left {
    animation: slideInLeft 0.6s forwards;
}

.review-3col-main.slide-in-right {
    animation: slideInRight 0.6s forwards;
}

@keyframes slideOutLeft {
    to {
        transform: translateX(-100%) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    to {
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-100%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Side review animations */
.review-3col-side.slide-to-main {
    animation: slideToMain 0.6s forwards;
}

@keyframes slideToMain {
    to {
        transform: scale(1.1);
        opacity: 1;
        z-index: 3;
    }
}

.review-3col-side {
    flex: 0 0 25%;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    opacity: 0.8;
    transform: scale(0.9);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.review-3col-side:hover {
    opacity: 0.9;
    transform: scale(0.93);
}

.review-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Side card specific styles */
.review-3col-side .review-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-3col-main .review-rating {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.review-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 2rem;
}

.review-text::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #eee;
}

.review-author {
    font-weight: 700;
    color: #000;
    margin-top: auto;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.review-3col-main .review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    min-height: 150px;
    padding: 0 1.5rem 3rem;
    margin-bottom: 2.5rem;
}

.review-3col-side .review-text {
    min-height: 100px;
    padding: 0 0.5rem 2rem;
    margin-bottom: 1.5rem;
}

.review-3col-side .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-3col-main .review-author {
    font-weight: 600;
    color: #000924;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.review-3col-side .review-author {
    font-weight: 500;
    color: #4a5568;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reviews-3col-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .review-3col-main,
    .review-3col-side {
        width: 100%;
        max-width: 500px;
        min-height: auto;
    }
    
    .review-3col-main {
        order: 1;
    }
    
    #prev-review {
        order: 2;
    }
    
    #next-review {
        order: 3;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .reviews-container {
        padding: 0 3rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        min-height: 140px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 0 2.5rem;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
    }
    
    .review-card {
        margin: 0 5px;
    }
}

/* Footer Styles */
footer {
    background-color: #000924;
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 0 1rem;
    min-width: 200px;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0 1.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}
