body {
    background-color: #151508;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.logo{
    width: 3.5vw;
    height: 3.5vw;
    margin-right: 1vw;
    box-shadow: 0 0 10px  #FFB300;
    min-width: 40px;
    min-height: 40px;
}

.title{
    color: #FFB300;
    font-family: "Rajdhani", sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 10px;
    text-shadow: 0 0 10px  #FFB300;
}

.icon{
    font-size: 6vw;
    color: rgb(255, 231, 231);
    min-font-size: 40px;
}

.buttonContainer{
    margin-top: 0 !important;
    height: 24vw;
    min-height: 200px;
}

.property {
    padding: 2vw;
    border-radius: 10px;
    border: 0.5vw solid #FFB300;
    transition: all 0.3s ease;
    min-padding: 15px;
}
.property:hover {
    box-shadow: 0 0 10px #FFB300;
}
.forButton{
    padding: 2vw;
    border-radius: 10px;
    border: 0.5vw solid #FFB300;
    height: 21vw;
    width: 35vw;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 150px;
    min-width: 250px;
}

.forButton:hover {
    border-bottom-width: 1.5vw;
    box-shadow: 0 0 10px #FFB300;
    transform: translateY(-1vw);
    height: 22vw;
}

.propertyTitle{
    color: #FFB300;
    font-family: "Rajdhani", sans-serif;
    font-size: 2.5vw;
    font-weight: 700;
    letter-spacing: 10px;
    text-shadow: 0 0 10px  #FFB300;
    cursor: pointer;
    min-font-size: 16px;
}

.imagePreview{
    width: auto;
    height: 10vw;
    object-fit: cover;
    border-radius: 10px;
    min-height: 80px;
    max-height: 200px;
}

input {
    color: #FFB300 !important;
    font-family: "Rajdhani", sans-serif !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    background-color: #151508 !important;
    border: 2px solid #FFB300 !important;
    border-radius: 10px !important;
    appearance: none;
}

input[type=range] {
    appearance: none; /* Remove default styling */
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 5px;
    outline: none;
  }
  
  /* Track */
  input[type=range]::-webkit-slider-runnable-track {
    height: 8px;
    background: #FFB300; /* Gold track */
    border-radius: 5px;
  }
  
  /* Thumb */
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -6px; /* Align thumb vertically */
    width: 20px;
    height: 20px;
    background: #FFB300;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  input[type=range]::-webkit-slider-thumb:hover {
    background: #ffc533;
  }
  

select {
    color: #FFB300 !important;
    font-family: "Rajdhani", sans-serif !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    background-color: #151508 !important;
    border: 2px solid #FFB300 !important;
    border-radius: 10px !important;
}

/* Footer Styles */
.footer {
    background-color: #1a1a0a;
    border-top: 0.1vw solid #FFB300;
    padding: 1rem 0 1rem 0;
    margin-top: 4rem;
    color: #FFB300;
    font-family: "Rajdhani", sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

.social-link {
    color: #FFB300;
    font-size: 1.4rem;
    border: 2px solid #FFB300;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    vertical-align: middle;
}

.social-link:hover {
    color: #151508;
    background-color: #FFB300;
    box-shadow: 0 0 10px #FFB300;
    transform: translateY(-2px);
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-copyright {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    color: #FFB300;
    margin: 0;
    display: inline;
}

/* Mobile Responsive Design */

/* Tablets (768px and below) - MOBILE ONLY */
@media (max-width: 768px) {
    body {
        font-size: 24px;
    }

    .buttonContainer{
        margin-bottom: 0 !important;
    }
    
    /* Mobile header adjustments */
    .d-flex.justify-content-center.align-items-center {
        flex-direction: column !important;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .title {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .icon {
        font-size: 50px;
    }
    
    .buttonContainer {
        height: auto;
        min-height: auto;
        margin-bottom: 2rem;
    }
    
    .forButton {
        width: 100%;
        height: 120px;
        min-width: auto;
        min-height: 120px;
        margin-bottom: 1rem;
        padding: 20px;
    }
    
    .forButton:hover {
        height: 125px;
        transform: translateY(-2px);
    }
    
    .propertyTitle {
        font-size: 18px;
        letter-spacing: 4px;
        line-height: 1.2;
    }
    
    .property {
        padding: 20px;
        border-width: 3px;
    }
    
    .imagePreview {
        height: 120px;
        min-height: 80px;
        max-height: 150px;
    }
    
    input, select {
        font-size: 18px !important;
        padding: 12px 15px !important;
    }
    
    .footer {
        padding: 1.5rem 0 1rem 0;
        border-top-width: 2px;
    }
    
    .footer-social {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
    }
    
    /* Stack buttons vertically on tablets */
    .d-flex.gap-5 {
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 20px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .title {
        font-size: 36px;
        letter-spacing: 4px;
        text-align: center;
        line-height: 1.1;
    }
    
    .icon {
        font-size: 40px;
    }
    
    .forButton {
        height: 100px;
        min-height: 100px;
        padding: 15px;
    }
    
    .forButton:hover {
        height: 105px;
        transform: translateY(-1px);
    }
    
    .propertyTitle {
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.3;
    }
    
    .property {
        padding: 15px;
        border-width: 2px;
        width: 95% !important;
    }
    
    .imagePreview {
        height: 100px;
        min-height: 60px;
        max-height: 120px;
    }
    
    input, select {
        font-size: 16px !important;
        padding: 10px 12px !important;
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .btn-lg {
        font-size: 18px;
        padding: 15px 25px;
    }
    
    /* Upload areas */
    .upload-area {
        padding: 20px 15px;
    }
    
    /* Form controls */
    .form-control, .form-select {
        font-size: 16px;
        padding: 12px;
        min-height: 44px;
    }
    
    /* Range sliders - make them touch-friendly */
    input[type=range] {
        height: 12px;
    }
    
    input[type=range]::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
        margin-top: -8px;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 1rem 0;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .forButton {
        height: 90px;
        min-height: 90px;
        padding: 12px;
    }
    
    .forButton:hover {
        height: 95px;
    }
    
    .propertyTitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .property {
        width: 100% !important;
        margin: 0 5px;
    }
    
    input, select {
        font-size: 14px !important;
        padding: 8px 10px !important;
    }
}
/* Mobile-specific fixes ONLY - preserve original desktop experience */
@media (max-width: 768px) {
    .forButton {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px 10px !important;
        height: auto !important;
        min-height: 140px !important;
    }
    
    .forButton .icon {
        font-size: 3rem !important;
        margin-bottom: 10px !important;
    }
    
    .forButton .propertyTitle {
        font-size: 14px !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .forButton br {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .forButton {
        min-height: 120px !important;
        padding: 12px 8px !important;
    }
    
    .forButton .icon {
        font-size: 2.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .forButton .propertyTitle {
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }
}

@media (max-width: 360px) {
    .forButton {
        min-height: 110px !important;
        padding: 10px 6px !important;
    }
    
    .forButton .icon {
        font-size: 2.2rem !important;
        margin-bottom: 6px !important;
    }
    
    .forButton .propertyTitle {
        font-size: 12px !important;
        letter-spacing: 0px !important;
        line-height: 1.3 !important;
    }
}