/* ==========================================
   SOUTH BAY PAGE - COMPLETE CSS
   Modern, Professional Design
   assets/css/south-bay.css
   ========================================== */

/* ==========================================
   PRELOADER
   ========================================== */

.southbay-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.southbay-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

.preloader-spinner {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(229, 113, 18, 0.7);
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: rgba(229, 113, 18, 0.4);
    animation-delay: 0.4s;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.preloader-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffa94d);
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(229, 113, 18, 0.5);
}

.preloader-percentage {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================
   HERO SECTION WITH IMAGE
   ========================================== */

.southbay-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.southbay-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.southbay-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.southbay-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.9) 0%,
            rgba(26, 35, 71, 0.85) 50%,
            rgba(229, 113, 18, 0.8) 100%
    );
}

.southbay-overlay-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(229, 113, 18, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(229, 113, 18, 0.1) 0%, transparent 50%);
}

.southbay-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.southbay-floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 113, 18, 0.1);
    animation: floatElement 15s ease-in-out infinite;
}

.element-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: -125px;
    animation-delay: 0s;
}

.element-2 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    right: -90px;
    animation-delay: 5s;
}

.element-3 {
    width: 200px;
    height: 200px;
    top: 55%;
    left: 45%;
    animation-delay: 10s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(25px, -25px) scale(1.1);
        opacity: 0.5;
    }
}

.southbay-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.southbay-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.southbay-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
}

.southbay-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.southbay-breadcrumb a:hover {
    color: var(--primary);
}

.southbay-separator {
    color: rgba(255, 255, 255, 0.4);
}

.southbay-current {
    color: var(--white);
}

.southbay-hero-badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.5);
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.southbay-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.southbay-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 35px;
}

.southbay-hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(229, 113, 18, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-tag i {
    font-size: 16px;
    color: var(--primary);
}

/* ==========================================
   INTRODUCTION SECTION
   ========================================== */

.southbay-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.southbay-intro-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon-large {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 40px;
    margin: 0 auto 30px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.3);
}

.intro-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.intro-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d96510);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.southbay-features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.features-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.features-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d96510);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 113, 18, 0.1), rgba(229, 113, 18, 0.05));
    border-radius: 50%;
    color: var(--primary);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary), #d96510);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(229, 113, 18, 0.3);
}

.feature-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.feature-card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.feature-card-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 113, 18, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.feature-card-footer i {
    font-size: 11px;
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */

.southbay-value-section {
    padding: 80px 0;
    background: var(--white);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.value-card.primary-value {
    padding: 45px 40px;
}

.value-background {
    position: absolute;
    inset: 0;
}

.value-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.value-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 75% 25%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 60%
    );
}

.value-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.value-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.4);
}

.value-card-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.value-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.value-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(229, 113, 18, 0.15);
    border: 1px solid rgba(229, 113, 18, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.value-highlight-item i {
    color: var(--primary);
    font-size: 12px;
}

.value-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-stat-card:hover {
    border-color: rgba(229, 113, 18, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    margin: 0 auto 16px;
}

.stat-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.stat-description {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   COMMITMENT SECTION
   ========================================== */

.southbay-commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
    position: relative;
    overflow: hidden;
}

.southbay-commitment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(229, 113, 18, 0.1) 0%,
            transparent 70%
    );
}

.commitment-card {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 50px rgba(229, 113, 18, 0.4);
}

.commitment-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.commitment-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.commitment-pillars {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 113, 18, 0.3);
    transform: translateY(-3px);
}

.pillar-item i {
    font-size: 28px;
    color: var(--primary);
}

.pillar-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.southbay-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.3);
}

.gallery-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: 100%;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a2347;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(39, 48, 108, 0.85) 0%,
            rgba(229, 113, 18, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 48px;
    margin-bottom: 12px;
    animation: zoomPulse 2s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gallery-overlay-content p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 113, 18, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 113, 18, 0.4);
}

.gallery-btn:active {
    transform: translateY(-1px);
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-indicators {
    display: flex;
    gap: 10px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicator:hover {
    background: #94a3b8;
}

.gallery-indicator.active {
    background: linear-gradient(135deg, var(--primary), #d96510);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.southbay-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 40px;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #27306c 0%, #1a2347 100%);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 30% 50%,
            rgba(229, 113, 18, 0.2) 0%,
            transparent 70%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d96510);
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 45px rgba(229, 113, 18, 0.4);
}

.cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), #d96510);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(229, 113, 18, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 113, 18, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .southbay-hero {
        height: 500px;
    }

    .southbay-page-title {
        font-size: 42px;
    }

    .southbay-hero-tags {
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .value-stats-grid {
        grid-template-columns: 1fr;
    }

    .commitment-pillars {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .southbay-hero {
        height: 450px;
    }

    .southbay-page-title {
        font-size: 36px;
    }

    .southbay-page-subtitle {
        font-size: 16px;
    }

    .intro-title {
        font-size: 32px;
    }

    .gallery-image-wrapper {
        height: 350px;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .southbay-hero {
        height: 400px;
    }

    .southbay-page-title {
        font-size: 30px;
    }

    .southbay-hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .hero-tag {
        width: 100%;
        justify-content: center;
    }

    .intro-title {
        font-size: 28px;
    }

    .features-title,
    .gallery-title,
    .commitment-title,
    .cta-title {
        font-size: 28px;
    }

    .value-card-title {
        font-size: 26px;
    }

    .gallery-image-wrapper {
        height: 280px;
    }

    .commitment-pillars {
        flex-direction: column;
    }

    .pillar-item {
        width: 100%;
    }
}