/* =========================================
PROPERTY PROTECTION SECTION
========================================= */


/* GRID */

.property-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.property-protection-section{
    padding:80px 0;
}

/* CONTENT */

.property-content{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* CARD */

.property-card{
    display:flex;
    gap:24px;

    background:#fff;

    padding:20px 22px;

    border-radius:28px;

    transition:0.3s ease;
}

.property-card:hover{
    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ICON */

.property-icon{
    min-width:40px;
    height:40px;

    background:var(--header-bg);
    color:#fff;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}

/* TEXT */

.property-text h3{
    color:var(--header-bg);
    margin-bottom:14px;
}

.property-text p{
    line-height:1.8;
    color:#000;
    text-align: left;
}
.property-hidden{
  display:none;
  margin-top:15px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    border: none !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.1s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #FFD055 0%, #FFB300 50%, #e09000 100%) !important;
    color: #fff !important;
    box-shadow: 0 3px 0px #b07800;
    margin-top: 15px;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #FFD055 0%, #FFB300 50%, #e09000 100%) !important;
    color: #fff !important;
    transform: translateY(1.5px);
    box-shadow: 0 1.5px 0px #b07800 !important;
}

.learn-more-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0px 0px #b07800 !important;
}
/* IMAGE */

.property-image{
    position:relative;
}

.property-image img{
    width:100%;
    height:800px;
    margin-top:10px;
    object-fit:cover;

    border-radius:30px;

    display:block;

    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* FLOATING BOX */

.property-floating-box{
    position:absolute;

    bottom:30px;
    left:30px;

    background:#fff;

    padding:20px 22px;

    border-radius:24px;

    max-width:320px;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.property-floating-box h4{
    color:var(--header-bg);
    margin-bottom:15px;
}

.property-floating-box p{
    line-height:1.8;
    color:#000;
    text-align: left;
    margin-bottom:20px;
}

.property-floating-box a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    background:var(--cta-color);
    color:#fff;

    border-radius:50px;

    text-decoration:none;
    font-weight:700;

    transition:0.3s ease;
}

.property-floating-box a:hover{
    transform:translateY(-3px);
}
.popup-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-box{
  background:#1A2CA3;
  width:90%;
  max-width:600px;
  padding:25px;
  border-radius:12px;
  position:relative;
  animation:popIn 0.3s ease;
  max-height:80vh;
  overflow-y:auto;
  color:#fff;
}
/* =========================================
RESPONSIVE BREAKPOINTS
========================================= */

/* Large Tablets & Small Desktops (1200px and below) */
@media(max-width: 1200px){
    .property-grid{
        gap: 50px;
    }
    
    .property-card{
        padding: 25px;
        gap: 20px;
    }
    
    .property-icon{
        min-width: 65px;
        width: 65px;
        height: 65px;
        font-size: 20px;
        border-radius: 18px;
    }
    
    .property-text h3{
    }
    
    .property-text p{
        line-height: 1.8;
    }
    
    .property-image img{
        height: 700px;
    }
    
    .property-floating-box{
        padding: 25px;
        max-width: 280px;
    }
}

/* Tablets & Medium Screens (992px and below) */
@media(max-width: 992px){
    .property-grid{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .property-protection-section{
        padding: 60px 0;
    }
    
    .property-content{
        order: 2;
    }
    
    .property-image{
        order: 1;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .property-image img{
        height: 520px;
        border-radius: 25px;
    }
    
    .property-floating-box{
        bottom: 25px;
        left: 25px;
        padding: 22px;
        max-width: 260px;
    }
    
    .property-floating-box h4{
    }
    
    .property-floating-box p{
    }
    
    .property-floating-box a{
        padding: 12px 24px;
        font-size: 18px;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media(max-width: 768px){
    .property-protection-section{
        padding: 50px 0;
    }
    
    .property-grid{
        gap: 40px;
    }
    
    .property-content{
        gap: 18px;
    }
    
    .property-card{
        flex-direction: column;
        padding: 22px;
        gap: 16px;
        border-radius: 22px;
    }
    
    .property-card:hover{
        transform: translateY(-4px);
    }
    
    .property-icon{
        min-width: 55px;
        width: 55px;
        height: 55px;
        font-size: 18px;
        border-radius: 15px;
    }
    
    .property-text h3{
        margin-bottom: 10px;
    }
    
    .property-text p{
        line-height: 1.7;
    }
    
    .learn-more-btn{
        padding: 8px 15px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .property-image img{
        height: 420px;
        border-radius: 22px;
    }
    
    .property-floating-box{
        bottom: 20px;
        left: 20px;
        padding: 18px;
        max-width: 240px;
        border-radius: 20px;
    }
    
    .property-floating-box h4{
        margin-bottom: 10px;
    }
    
    .property-floating-box p{
        margin-bottom: 15px;
    }
    
    .property-floating-box a{
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .trust-buttons{
        flex-direction: column;
        gap: 12px;
    }

    .btn-estimate,
    .btn-call{
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Mobile Devices (576px and below) */
@media(max-width: 576px){
    .property-protection-section{
        padding: 40px 0;
    }
    
    .property-grid{
        gap: 35px;
    }
    
    .property-content{
        gap: 15px;
    }
    
    .property-card{
        padding: 18px;
        gap: 14px;
        border-radius: 18px;
    }
    
    .property-icon{
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .property-text h3{
        margin-bottom: 8px;
    }
    
    .property-text p{
        line-height: 1.6;
    }
    
    .learn-more-btn{
        padding: 7px 12px;
        font-size: 14px;
    }
    
    .property-image img{
        height: 350px;
        border-radius: 18px;
    }
    
    .property-floating-box{
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
        padding: 18px;
    }
    
    .popup-box{
        padding: 20px;
        width: 95%;
    }
    
    .popup-box h2{
        font-size: 22px;
    }
}

/* Small Mobile Devices (480px and below) */
@media(max-width: 480px){
    .property-protection-section{
        padding: 35px 0;
    }
    
    .property-header h2{
        font-size: 28px;
    }
    
    .property-header p{
        font-size: 18px;
    }
    
    .property-grid{
        gap: 30px;
    }
    
    .property-card{
        padding: 20px;
        gap: 12px;
    }
    
    .property-icon{
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .property-text h3{
    }
    
    .property-text p{
    }
    
    .property-image img{
        height: 300px;
        border-radius: 16px;
    }
    
    .property-floating-box{
        padding: 20px;
        border-radius: 16px;
    }
    
    .property-floating-box h4{
    }
    
    .property-floating-box p{
    }
    
    .property-floating-box a{
        padding: 8px 16px;
        font-size: 16px;
    }
}

/* Very Small Mobile Devices (400px and below) */
@media(max-width: 400px){
    .property-protection-section{
        padding: 30px 0;
    }
    
    .property-header h2{
        font-size: 26px;
    }
    
    .property-card{
        padding: 20px;
    }
    
    .property-icon{
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .property-text h3{
    }
    
    .property-text p{
        line-height: 1.5;
    }
    
    .property-image img{
        height: 250px;
        border-radius: 14px;
    }
}

/* Landscape Mode for Mobile */
@media(max-width: 768px) and (orientation: landscape){
    .property-protection-section{
        padding: 40px 0;
    }
    
    .property-grid{
        gap: 30px;
    }
    
    .property-card{
        flex-direction: row;
        padding: 18px;
    }
    
    .property-image img{
        height: 350px;
    }
    
    .property-floating-box{
        position: absolute;
        bottom: 15px;
        left: 15px;
        padding: 12px 15px;
        max-width: 220px;
    }
    
    .property-floating-box h4{
    }
    
    .property-floating-box p{
        margin-bottom: 10px;
    }
    
    .property-floating-box a{
        padding: 6px 12px;
        font-size: 15px;
    }
}

/* Print Styles (Optional) */
@media print {
    .property-protection-section{
        padding: 20px 0;
    }
    
    .property-grid{
        display: block;
    }
    
    .property-card{
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .property-card:hover{
        transform: none;
    }
    
    .property-icon{
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
    
    .property-image img{
        box-shadow: none;
        border: 1px solid #ddd;
        height: auto;
    }
    
    .property-floating-box{
        position: relative;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-top: 15px;
        padding: 15px;
    }
    
    .learn-more-btn{
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
    
    .popup-overlay{
        display: none;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.property-protection-section h2, .section-title h2 { font-size: 40px !important; }
.property-protection-section h3, .property-floating-box h4, .section-title h3 { font-size: 22px !important; }
.property-protection-section p, .property-floating-box p, .property-text p, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
.property-protection-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .property-protection-section h2, .section-title h2 { font-size: 35px !important; }
    .property-protection-section h3, .property-floating-box h4, .section-title h3 { font-size: 22px !important; }
    .property-protection-section p, .property-floating-box p, .property-text p, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
    .property-protection-section li { font-size: 18px !important; line-height: 1.6 !important; }
}