/* Real Estate Page Specific Styles */

/* Hero Section */
.real-estate-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;   /* ელემენტები დალაგდეს ვერტიკალურად */
    justify-content: center;  /* გაცენტრვა ვერტიკალურად */
}

.hero-content .highlight {
    color: #00d9ff;
    background: linear-gradient(90deg, #00d9ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sector-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d9ff, #9d4edd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.sector-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.development-sector .sector-icon { color: #00d9ff; }
.investment-sector .sector-icon { color: #9d4edd; }
.management-sector .sector-icon { color: #00f5d4; }

.sector-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sector-description {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sector-results {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
}

.result-label {
    color: #b0b0d0;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0d0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    color: #ffffff;
}

.tab-btn.active {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(10px);
}

.problem-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00d9ff;
}

.problem-content {
    flex: 1;
}

.problem-content h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.problem-content p {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.problem-impact {
    display: flex;
    justify-content: space-between;
    color: #b0b0d0;
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-value {
    color: #ff6b6b;
    font-weight: bold;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.solution-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.solution-tab-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0d0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.solution-tab-btn:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: #9d4edd;
    color: #ffffff;
}

.solution-tab-btn.active {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9d4edd;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.solution-pane {
    display: none;
}

.solution-pane.active {
    display: block;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.solution-subtitle {
    color: #9d4edd;
    font-size: 1.2rem;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #9d4edd;
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #9d4edd;
    margin-bottom: 25px;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-result {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0d0;
    font-size: 0.9rem;
}

.result-value {
    color: #00d9ff;
    font-weight: bold;
}

/* Success Stories */
.stories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.story-type {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: #00d9ff;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.developer-story .story-type { 
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: #00d9ff;
}

.investor-story .story-type { 
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
    color: #9d4edd;
}

.manager-story .story-type { 
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.3);
    color: #00f5d4;
}

.story-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.story-content p {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.story-results {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.story-results .result {
    text-align: center;
    flex: 1;
}

.result-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00d9ff;
    margin-bottom: 5px;
}

.investor-story .result-number { color: #9d4edd; }
.manager-story .result-number { color: #00f5d4; }

.story-results .result-label {
    color: #b0b0d0;
    font-size: 0.9rem;
}

.story-author {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.story-author span {
    color: #b0b0d0;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.process-flow {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 90px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, #00d9ff, #9d4edd);
    opacity: 0.3;
}

.step-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00d9ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0d0;
    font-size: 0.9rem;
}

.detail i {
    color: #00d9ff;
}

.process-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #b0b0d0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sectors-grid,
    .solution-features,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-buttons,
    .solution-tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .problem-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        top: 90px;
        height: calc(100% + 20px);
        transform: translateX(-50%);
    }
    
    .story-results {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .sector-card,
    .feature-card,
    .story-card,
    .problem-item {
        padding: 25px 20px;
    }
    
    .sector-icon,
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .result-value {
        font-size: 1.8rem;
    }
    
    .tab-btn,
    .solution-tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}


/* ROI Calculator Styles */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

.calculator-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
}

.calculator-controls {
    margin-bottom: 50px;
}

.control-group {
    margin-bottom: 35px;
}

.control-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

input[type="range"] {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00d9ff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.value-display {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #b0b0d0;
}

#investmentValue {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d9ff;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.type-btn {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0d0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.type-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    color: #ffffff;
}

.type-btn.active {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.location-select {
    position: relative;
}

select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300d9ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.location-growth {
    margin-top: 10px;
    color: #b0b0d0;
    font-size: 0.9rem;
}

#growthValue {
    color: #9d4edd;
    font-weight: bold;
}

.calculate-btn {
    background: linear-gradient(90deg, #00d9ff, #9d4edd);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.2);
}

.calculate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.3);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.1);
}

.result-card.highlight {
    border-color: #9d4edd;
    background: rgba(157, 78, 221, 0.05);
}

.result-title {
    color: #b0b0d0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.result-card .result-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d9ff;
    margin-bottom: 10px;
}

.result-card.highlight .result-value {
    color: #9d4edd;
}

.result-label {
    color: #b0b0d0;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.result-detail {
    display: flex;
    justify-content: space-between;
    color: #b0b0d0;
    font-size: 0.9rem;
    margin-top: 10px;
}

.result-detail span:last-child {
    color: #ffffff;
    font-weight: bold;
}

.market-context {
    background: rgba(0, 245, 212, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.market-context h4 {
    color: #00f5d4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-context p {
    color: #b0b0d0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.data-source {
    color: #8888aa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .calculator-controls {
        margin-bottom: 30px;
    }
    
    .control-group {
        margin-bottom: 25px;
    }
    
    .type-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .calculate-btn {
        width: 100%;
        padding: 15px;
    }
}


.hero-subtitle {
    max-width: 800px;         /* რომ ტექსტი ძალიან არ გაიწელოს გვერდებზე */
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: fit-content;       /* იკავებს მხოლოდ ტექსტის სიგანეს */
}