/* ==============================================
   HOME PAGE VARIANTS STYLES
   ============================================== */

/* ==============================================
   VARIANT 1: Modern Grid Layout
   ============================================== */

/* Hero V1 */
.hero-variant1 {
    min-height: 90vh;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-v1-left {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    background: var(--brand-primary);
    color: white;
}

.hero-v1-right {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

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

.hero-v1-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-v1-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-v1-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-v1-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-v1-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--brand-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v1-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: var(--brand-primary);
}

.btn-v1-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v1-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-v1-image-wrapper {
    position: relative;
}

.hero-v1-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 15%;
    right: -10%;
}

.floating-card-2 {
    bottom: 20%;
    left: -10%;
}

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

/* Features V1 */
.features-v1 {
    padding: 5rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.feature-v1-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.feature-v1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-v1-primary { border-color: var(--brand-primary); }
.feature-v1-success { border-color: #28a745; }
.feature-v1-info { border-color: #D2691E; } /* Changed from blue to chocolate brown */
.feature-v1-warning { border-color: #ffc107; }

.feature-v1-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-v1-success .feature-v1-icon-wrapper {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.feature-v1-info .feature-v1-icon-wrapper {
    background: linear-gradient(135deg, #D2691E, #CD853F); /* Changed from blue to brown gradient */
}

.feature-v1-warning .feature-v1-icon-wrapper {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.feature-v1-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-v1-card p {
    color: #6c757d;
    margin: 0;
}

/* News V1 */
.news-v1 {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-v1-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-v1-subtitle {
    display: block;
    color: var(--brand-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-v1-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.btn-v1-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v1-link:hover {
    gap: 0.75rem;
    color: var(--brand-secondary);
}

.news-v1-card-large {
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    height: 100%;
}

.news-v1-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-v1-image-large {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-v1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.news-v1-category {
    background: var(--brand-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.news-v1-content-large {
    padding: 2rem;
}

.news-v1-meta {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.news-v1-title-large {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.news-v1-excerpt {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-v1-read-more {
    color: var(--brand-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-v1-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.news-v1-card-small {
    display: flex;
    gap: 1rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
}

.news-v1-card-small:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-v1-small-image {
    width: 120px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.news-v1-small-content {
    padding: 1rem;
    flex: 1;
}

.news-v1-small-date {
    color: #6c757d;
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.news-v1-small-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.4;
}

/* Buildings V1 */
.buildings-v1 {
    padding: 5rem 0;
}

.building-v1-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.building-v1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.building-v1-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.building-v1-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.building-v1-card:hover .building-v1-image {
    transform: scale(1.1);
}

.building-v1-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.building-v1-content {
    padding: 2rem;
}

.building-v1-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.building-v1-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.building-v1-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.building-v1-features li {
    padding: 0.5rem 0;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.building-v1-features i {
    color: var(--brand-primary);
}

/* CTA V1 */
.cta-v1 {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.cta-v1-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-v1-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-v1-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-v1-text {
    color: #6c757d;
    font-size: 1.125rem;
    margin: 0;
}

.btn-v1-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-v1-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: white;
}

/* ==============================================
   VARIANT 2: Hero Banner with Overlapping Cards
   ============================================== */

/* Hero V2 */
.hero-v2 {
    position: relative;
    padding: 8rem 0 12rem;
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
}

.hero-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.95), rgba(var(--brand-secondary-rgb), 0.9));
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-v2-icon {
    margin-bottom: 2rem;
}

.hero-v2-mascot {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-v2-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-v2-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-v2-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-v2-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-v2-primary {
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--brand-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-v2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--brand-primary);
}

.btn-v2-outline {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v2-outline:hover {
    background: white;
    color: var(--brand-primary);
}

.hero-v2-cards {
    margin-top: -5rem;
    position: relative;
    z-index: 3;
}

.hero-v2-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.hero-v2-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-v2-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.card-v2-1 .card-v2-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.card-v2-2 .card-v2-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.card-v2-3 .card-v2-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.hero-v2-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-v2-feature-card p {
    color: #6c757d;
    margin: 0;
}

/* About V2 */
.about-v2 {
    padding: 6rem 0;
}

.about-v2-images {
    position: relative;
}

.about-v2-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-v2-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-v2-small-image {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

.about-v2-small-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-v2-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.about-v2-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.about-v2-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-v2-text {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-v2-features {
    margin-bottom: 2.5rem;
}

.feature-v2-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-v2-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-v2-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-v2-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9375rem;
}

.btn-v2-more {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v2-more:hover {
    background: var(--brand-secondary);
    transform: translateX(5px);
    color: white;
}

/* News V2 */
.news-v2 {
    padding: 6rem 0;
    background: #f8f9fa;
}

.news-v2-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.news-v2-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.news-v2-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

.news-v2-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-v2-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-v2-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-v2-card:hover .news-v2-card-image img {
    transform: scale(1.1);
}

.news-v2-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    min-width: 65px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.news-v2-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-v2-card-meta {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-v2-card-title a {
    font-size: 1.375rem;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.news-v2-card-title a:hover {
    color: var(--brand-primary);
}

.news-v2-card-excerpt {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-v2-card-link {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-v2-card-link:hover {
    gap: 1rem;
}

.btn-v2-all-news {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-v2-all-news:hover {
    background: var(--brand-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Stats V2 */
.stats-v2 {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
}

.stat-v2-item {
    text-align: center;
}

.stat-v2-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-v2-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-v2-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA V2 */
.cta-v2 {
    padding: 6rem 0;
}

.cta-v2-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 4rem 3rem;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-v2-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-v2-text {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.btn-v2-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-v2-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.btn-v2-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v2-cta-outline:hover {
    background: white;
    color: #667eea;
}

/* Responsive adjustments for V1 & V2 */
@media (max-width: 991px) {
    .hero-v1-title { font-size: 2.5rem; }
    .hero-v1-stats { flex-wrap: wrap; }
    .hero-v2-title { font-size: 3rem; }
    .section-v1-title, .news-v2-title { font-size: 2rem; }
    .about-v2-small-image { position: static; width: 100%; margin-top: 2rem; }
}

@media (max-width: 767px) {
    .hero-v1-left, .hero-v1-right { padding: 2rem 1.5rem; }
    .hero-v1-title { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
    .hero-v2 { padding: 5rem 0 10rem; }
    .hero-v2-title { font-size: 2.5rem; }
    .hero-v2-subtitle { font-size: 1.25rem; }
}

/* ==============================================
   VARIANT 3: Carousel Featured
   ============================================== */

/* Hero V3 Carousel */
.hero-v3 {
    position: relative;
}

.hero-v3-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-v3-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-v3-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-v3-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-v3-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-v3-light {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--brand-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-v3-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--brand-primary);
}

.hero-v3-image {
    text-align: center;
}

.hero-v3-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
}

.carousel-indicators .active {
    background-color: white;
}

/* Quick Info V3 */
.quick-info-v3 {
    padding: 3rem 0;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.quick-info-v3-cards {
    margin-bottom: 0;
}

.info-v3-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-v3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-v3-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.info-v3-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-v3-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9375rem;
}

/* Features V3 */
.features-v3 {
    padding: 6rem 0;
}

.features-v3-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.features-v3-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.feature-v3-box {
    padding: 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-v3-box:hover {
    border-color: var(--brand-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.feature-v3-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-v3-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-v3-box p {
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
}

/* News V3 Timeline */
.news-v3 {
    padding: 6rem 0;
    background: #f8f9fa;
}

.news-v3-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.news-v3-title {
    font-size: 3rem;
    font-weight: 800;
}

.news-v3-timeline {
    position: relative;
    padding: 3rem 0;
}

.news-v3-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
    transform: translateX(-50%);
}

.timeline-v3-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-v3-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-primary);
    z-index: 2;
}

.timeline-left .timeline-v3-content {
    padding-right: calc(50% + 4rem);
}

.timeline-right .timeline-v3-content {
    padding-left: calc(50% + 4rem);
}

.timeline-v3-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.timeline-v3-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-v3-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.timeline-v3-body {
    padding: 2rem;
}

.timeline-v3-date {
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-v3-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.timeline-v3-title a:hover {
    color: var(--brand-primary);
}

.timeline-v3-excerpt {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-v3-link {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-v3-primary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-v3-primary:hover {
    background: var(--brand-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Gallery V3 */
.gallery-v3 {
    padding: 6rem 0;
}

.gallery-v3-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.gallery-v3-title {
    font-size: 3rem;
    font-weight: 800;
}

.gallery-v3-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-v3-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-v3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--brand-primary-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}

.gallery-v3-item:hover img {
    transform: scale(1.1);
}

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

.btn-v3-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v3-outline:hover {
    background: var(--brand-primary);
    color: white;
}

/* Contact V3 */
.contact-v3 {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.contact-v3-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-v3-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.contact-v3-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin: 0;
}

.btn-v3-contact {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--brand-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-v3-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--brand-primary);
}

/* Responsive for V3 */
@media (max-width: 991px) {
    .hero-v3-title { font-size: 3rem; }
    .features-v3-title, .news-v3-title, .gallery-v3-title { font-size: 2.25rem; }

    .news-v3-timeline::before { display: none; }
    .timeline-left .timeline-v3-content,
    .timeline-right .timeline-v3-content {
        padding: 0;
    }
    .timeline-v3-marker {
        position: static;
        transform: none;
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-v3-slide { min-height: 70vh; }
    .hero-v3-title { font-size: 2rem; }
    .hero-v3-text { font-size: 1rem; }
}

/* ==============================================
   VARIANT 4: Minimal Clean Design
   ============================================== */

/* Hero V4 */
.hero-v4 {
    padding: 6rem 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-v4-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-v4-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-v4-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-v4-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-v4-primary {
    padding: 1.125rem 2.5rem;
    background: #212529;
    color: white;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-v4-primary:hover {
    background: var(--brand-primary);
    color: white;
}

.btn-v4-link {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v4-link:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

.hero-v4-image-wrapper {
    position: relative;
}

.hero-v4-shape {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.1), rgba(var(--brand-secondary-rgb), 0.05));
    border-radius: 0;
    z-index: 1;
}

.hero-v4-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Features V4 */
.features-v4 {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.feature-v4-item {
    padding: 3rem 2rem;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-v4-item:last-child {
    border-right: none;
}

.feature-v4-item:hover {
    background: #f8f9fa;
}

.feature-v4-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.feature-v4-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-v4-text {
    color: #6c757d;
    margin: 0;
    font-size: 0.9375rem;
}

/* About V4 */
.about-v4 {
    padding: 6rem 0;
}

.about-v4-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-v4-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
}

.about-v4-text {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-v4-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-v4-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.about-v4-point i {
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin-top: 0.25rem;
}

.about-v4-point span {
    font-size: 1rem;
    color: #495057;
}

/* News V4 */
.news-v4 {
    padding: 6rem 0;
    background: #f8f9fa;
}

.news-v4-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.news-v4-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.news-v4-all-link {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-v4-all-link:hover {
    color: var(--brand-primary);
}

.news-v4-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-v4-item {
    background: white;
    padding: 2rem;
    border-left: 4px solid #e9ecef;
    transition: all 0.3s ease;
}

.news-v4-item:hover {
    border-left-color: var(--brand-primary);
    transform: translateX(10px);
}

.news-v4-image-link {
    text-decoration: none;
}

.news-v4-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

.news-v4-meta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.news-v4-item-title a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.news-v4-item-title a:hover {
    color: var(--brand-primary);
}

.news-v4-excerpt {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-v4-read-link {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-v4-read-link:hover {
    color: var(--brand-primary);
}

/* Stats V4 */
.stats-v4 {
    padding: 5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stats-v4-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-v4-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-v4-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
}

.stat-v4-label {
    font-size: 0.9375rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-v4-divider {
    width: 1px;
    height: 80px;
    background: #e9ecef;
}

/* Buildings V4 */
.buildings-v4 {
    padding: 6rem 0;
}

.buildings-v4-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.buildings-v4-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.building-v4-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.building-v4-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.building-v4-image-wrapper {
    overflow: hidden;
}

.building-v4-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.building-v4-card:hover img {
    transform: scale(1.05);
}

.building-v4-content {
    padding: 2rem;
}

.building-v4-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.building-v4-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.building-v4-address {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* CTA V4 */
.cta-v4 {
    padding: 6rem 0;
    background: #212529;
    color: white;
}

.cta-v4-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-v4-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-v4-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-v4-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-v4-cta-primary {
    padding: 1.25rem 2.5rem;
    background: white;
    color: #212529;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v4-cta-primary:hover {
    background: var(--brand-primary);
    color: white;
}

.btn-v4-cta-secondary {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v4-cta-secondary:hover {
    background: white;
    color: #212529;
}

/* Responsive for V4 */
@media (max-width: 991px) {
    .hero-v4-title { font-size: 3rem; }
    .news-v4-title, .buildings-v4-title, .cta-v4-title { font-size: 2.25rem; }
    .about-v4-title { font-size: 2.5rem; }
    .stat-v4-value { font-size: 3rem; }
    .stat-v4-divider { display: none; }
    .feature-v4-item { border-right: none; border-bottom: 1px solid #e9ecef; }
    .feature-v4-item:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
    .hero-v4-title { font-size: 2.5rem; }
    .hero-v4-subtitle { font-size: 1.125rem; }
    .hero-v4-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .news-v4-item-title a { font-size: 1.5rem; }
    .stat-v4-value { font-size: 2.5rem; }
}
