/* Full Width Image Quote Section Styles */
.full-width-quote-section {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Decorative elements */
.full-width-quote-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 71, 31, 0.2) 0%, rgba(243, 71, 31, 0) 70%);
    border-radius: 50%;
    z-index: 2;
}

.full-width-quote-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 70, 151, 0.2) 0%, rgba(10, 70, 151, 0) 70%);
    border-radius: 50%;
    z-index: 2;
}

.full-width-image-container {
    position: relative;
    width: 100%;
    min-height: 500px; /* Reduced height */
    background-image: url('../img/image2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(251, 251, 247, 0.1) 0%,
        rgba(242, 200, 193, 0.2) 25%,
        rgba(251, 251, 247, 0.3) 50%,
        rgba(10, 70, 151, 0.1) 75%,
        rgba(251, 251, 247, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.quote-content {
    position: relative;
    max-width: 1000px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.quote-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 120px;
    font-family: 'Georgia', serif;
    color: rgba(243, 71, 31, 0.2);
    line-height: 1;
    z-index: -1;
}

.quote-content::after {
    content: '"';
    position: absolute;
    bottom: -60px;
    right: 20px;
    font-size: 120px;
    font-family: 'Georgia', serif;
    color: rgba(10, 70, 151, 0.2);
    line-height: 1;
    z-index: -1;
}

/* Quote badge */
.quote-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F3471F, #d33a18);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(243, 71, 31, 0.3);
    position: relative;
    z-index: 5;
}

/* Floating decorative elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    animation: float 8s infinite ease-in-out;
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 71, 31, 0.2), rgba(243, 71, 31, 0.1));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(10, 70, 151, 0.2), rgba(10, 70, 151, 0.1));
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(242, 200, 193, 0.3), rgba(242, 200, 193, 0.1));
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(251, 251, 247, 0.3), rgba(251, 251, 247, 0.1));
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.full-width-quote {
    font-family: 'Poppins', sans-serif;
    color: #F3471F;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.9),
        -1px -1px 2px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 5;
}

.button-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #F3471F, #d33a18);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(243, 71, 31, 0.3),
        0 0 0 0 rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0A4697;
    text-decoration: none;
    border: 2px solid #0A4697;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(10, 70, 151, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 70, 151, 0) 0%, rgba(10, 70, 151, 0.1) 50%, rgba(10, 70, 151, 0) 100%);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #d33a18;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(243, 71, 31, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: #0A4697;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(10, 70, 151, 0.3);
}

@media (max-width: 768px) {
    .full-width-image-container {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .quote-overlay {
        padding: 60px 20px;
    }
    
    .full-width-quote {
        margin-bottom: 20px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
