/* ===============================
   RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --go-green: #00A650;
    --go-yellow: #FFB500;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-primary: #212121;
    --text-secondary: #666666;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===============================
   FLOATING BUTTONS
   =============================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all var(--transition-fast);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.phone-btn {
    background: linear-gradient(135deg, var(--go-green), #00CC66);
    color: var(--white);
}

.zalo-btn {
    background: linear-gradient(135deg, #0068FF, #0084FF);
    color: var(--white);
    position: relative;
}

.zalo-text {
    position: absolute;
    right: 70px;
    background: #0068FF;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.zalo-btn:hover .zalo-text {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 166, 80, 0.4);
    }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 181, 0, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    z-index: 1;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(0, 166, 80, 0.92), rgba(0, 80, 40, 0.88)),
        url('../images/ha-tang-kdc.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 166, 80, 0.1) 0%,
        rgba(0, 166, 80, 0.3) 50%,
        rgba(0, 50, 20, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo {
    max-width: 200px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--go-yellow);
    font-size: 4rem;
    display: inline-block;
    animation: scaleIn 0.8s ease 0.5s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle i {
    color: var(--go-yellow);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.primary-btn {
    background: var(--go-green);
    color: var(--white);
    border: 3px solid var(--go-green);
}

.primary-btn:hover {
    background: var(--white);
    color: var(--go-green);
}

.secondary-btn {
    background: var(--go-yellow);
    color: var(--dark-gray);
    border: 3px solid var(--go-yellow);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--go-yellow);
    border-color: var(--go-yellow);
}

.hero-contact {
    font-size: 1.2rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 1s both;
}

.hero-contact i {
    color: var(--go-yellow);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 3;
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===============================
   SECTION TITLES
   =============================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--go-green), var(--go-yellow));
    border-radius: 2px;
}

.title-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.white-text {
    color: var(--white);
}

.white-text::after {
    background: var(--go-yellow);
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--go-green);
    text-align: center;
}

/* ===============================
   TABLES
   =============================== */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.styled-table thead {
    background: linear-gradient(135deg, var(--go-green), #00CC66);
    color: var(--white);
}

.styled-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.styled-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.styled-table tbody tr:hover {
    background-color: rgba(0, 166, 80, 0.05);
}

.highlight-text {
    color: var(--go-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.status-badge.success {
    background: #E8F5E9;
    color: #2E7D32;
}

.comparison-table-2 {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-2 thead {
    background: var(--dark-gray);
    color: var(--white);
}

.comparison-table-2 th,
.comparison-table-2 td {
    padding: 18px;
    text-align: center;
}

.comparison-table-2 .highlight-col {
    background: rgba(0, 166, 80, 0.1);
    font-weight: 600;
}

.badge-success {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.badge-warning {
    background: #FFF3E0;
    color: #E65100;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.badge-danger {
    background: #FFEBEE;
    color: #C62828;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

/* ===============================
   ADVANTAGES SECTION
   =============================== */
.advantage-item {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.advantage-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.advantage-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--go-green), #00CC66);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
}

.advantage-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--go-green);
    flex: 1;
}

.advantage-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.advantage-body.full-width {
    grid-template-columns: 1fr;
}

.advantage-content.reverse .advantage-body {
    grid-template-columns: 1fr 1fr;
}

.advantage-content.reverse .advantage-text {
    order: 2;
}

.advantage-content.reverse .advantage-image {
    order: 1;
}

.advantage-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.advantage-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.advantage-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.advantage-image img {
    width: 100%;
    transition: transform var(--transition-medium);
    display: block;
}

.advantage-image:hover img {
    transform: scale(1.05);
}

.image-label {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--go-green);
    background: var(--light-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--go-green);
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--go-green);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-secondary);
}

/* Check List */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-item i {
    color: var(--go-green);
    font-size: 1.3rem;
}

/* Timeline */
.timeline {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.timeline h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--go-green);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.timeline-step {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: block;
    font-weight: 800;
    color: var(--go-green);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-note {
    margin-top: 15px;
    font-weight: 600;
    color: var(--go-green);
}

/* Location Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
}

.location-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--go-green);
    text-align: center;
    margin-bottom: 15px;
}

.location-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.location-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 0.95rem;
}

.location-card li:last-child {
    border-bottom: none;
}

.location-card img {
    border-radius: 8px;
    margin-top: 15px;
}

/* Google Maps Section */
.google-maps-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--go-green);
    text-align: center;
    margin-bottom: 25px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.map-info-item:hover {
    background: rgba(0, 166, 80, 0.1);
    transform: translateX(5px);
}

.map-info-item i {
    font-size: 1.5rem;
    color: var(--go-green);
    flex-shrink: 0;
}

.map-info-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Customer Source Stats */
.customer-source {
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.05), rgba(255, 181, 0, 0.05));
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.customer-source h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--go-green);
    text-align: center;
    margin-bottom: 30px;
}

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

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 166, 80, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--go-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.stat-details {
    list-style: none;
    text-align: left;
}

.stat-details li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--medium-gray);
}

.stat-details li:last-child {
    border-bottom: none;
}

/* Infrastructure */
.infrastructure-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.infra-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.infra-item i {
    font-size: 2rem;
    color: var(--go-green);
    flex-shrink: 0;
}

.infra-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--go-green);
    margin-bottom: 5px;
}

.savings-box {
    background: rgba(255, 181, 0, 0.1);
    border-left: 4px solid var(--go-yellow);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.savings-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--go-yellow);
    margin-bottom: 15px;
}

.savings-box ul {
    list-style: none;
}

.savings-box li {
    padding: 8px 0;
    color: var(--text-primary);
}

/* Cooperation Options */
.cooperation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.option-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--go-green);
}

.option-card.featured {
    border-color: var(--go-yellow);
    background: linear-gradient(135deg, rgba(255, 181, 0, 0.05), rgba(255, 181, 0, 0.1));
}

.option-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--go-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.option-card.featured .option-badge {
    background: var(--go-yellow);
    color: var(--dark-gray);
}

.option-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--go-green);
    text-align: center;
    margin: 20px 0;
}

.option-card ul {
    list-style: none;
}

.option-card li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--medium-gray);
}

.option-card li:last-child {
    border-bottom: none;
}

.option-card li i {
    color: var(--go-green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Exclusive Benefits */
.exclusive-benefits {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.exclusive-benefits h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--go-green);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
}

.benefit-item i {
    color: var(--go-green);
    font-size: 1.3rem;
}

/* ===============================
   OPPORTUNITY SECTION
   =============================== */
.news-quote {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--go-green);
    opacity: 0.2;
}

.news-quote h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.news-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    padding-left: 60px;
    margin-bottom: 20px;
}

.quote-source {
    text-align: center;
    margin-top: 20px;
}

.quote-source img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 8px;
}

.comparison-competitive {
    margin-bottom: 40px;
}

.comparison-competitive h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--go-green);
    margin-bottom: 25px;
    text-align: center;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 87, 34, 0.1));
    border-left: 4px solid #FF5722;
    padding: 30px;
    border-radius: 8px;
}

.warning-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 15px;
}

.warning-box ul {
    list-style: none;
}

.warning-box li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-primary);
}

.warning-box li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 10px;
}

/* ===============================
   GALLERY SECTION - REAL IMAGES
   =============================== */
.real-images-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-item-real {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
}

.gallery-item-real:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 166, 80, 0.25);
}

.gallery-item-real img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--white);
    padding: 20px 15px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.gallery-item-real:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-note {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 166, 80, 0.1), rgba(255, 181, 0, 0.1));
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--go-green);
}

.gallery-note i {
    color: var(--go-green);
    font-size: 1.2rem;
    margin-right: 8px;
}

.gallery-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Old Gallery Tabs (Keep for reference) */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--go-green);
    color: var(--go-green);
}

.tab-btn.active {
    background: var(--go-green);
    color: var(--white);
    border-color: var(--go-green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

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

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 250px;
}

.video-item p {
    padding: 15px;
    background: var(--white);
    font-weight: 600;
    text-align: center;
}

/* ===============================
   CTA FINAL SECTION
   =============================== */
.cta-section {
    background: linear-gradient(135deg, var(--go-green), #00CC66);
    color: var(--white);
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.cta-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cta-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    background: var(--white);
    color: var(--go-green);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.contact-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-step ul {
    list-style: none;
    text-align: left;
}

.cta-step li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-step li i {
    color: var(--go-yellow);
}

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

.cta-btn.large {
    padding: 22px 45px;
    font-size: 1.2rem;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 1.5rem;
    color: var(--go-green);
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--go-yellow);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--go-green);
}

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

.footer-bottom p {
    margin: 10px 0;
    opacity: 0.8;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 3rem;
    }
    
    .advantage-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-body {
        grid-template-columns: 1fr;
    }
    
    .advantage-content.reverse .advantage-body {
        grid-template-columns: 1fr;
    }
    
    .advantage-content.reverse .advantage-text {
        order: 1;
    }
    
    .advantage-content.reverse .advantage-image {
        order: 2;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid,
    .stats-grid,
    .cooperation-options {
        grid-template-columns: 1fr;
    }
    
    .cta-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .google-maps-section {
        padding: 25px 15px;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-info-item {
        padding: 12px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .advantage-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .advantage-title {
        font-size: 1.5rem;
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
    }
    
    .real-images-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item-real img {
        height: 220px;
    }
    
    .image-gallery,
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .styled-table,
    .comparison-table-2 {
        font-size: 0.85rem;
    }
    
    .styled-table th,
    .styled-table td,
    .comparison-table-2 th,
    .comparison-table-2 td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .real-images-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-real img {
        height: 200px;
    }
    
    .gallery-caption {
        font-size: 0.85rem;
        padding: 15px 10px 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-contact {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .title-icon {
        font-size: 2rem;
    }
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* Smooth Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}