.banner1 {
    background: linear-gradient(135deg, #724e2c 0%, #523823 100%);
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 20px;
}

.banner1::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}
.banner1::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 108, 37, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.banner1 .content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.banner1 .content h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner1 .content p {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 35px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
    line-height: 1.6;
}

.btn1 {
    background: white;
    color: #724e2c;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.btn1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a574 0%, #9b6c25 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 165, 116, 0.5);
    color: white;
}

.btn1:hover::before {
    opacity: 1;
}

.btn1:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Main Banner with Wall Texture */
.info-banner {
    background: linear-gradient(135deg, #724e2c 0%, #523823 100%);
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(114, 78, 44, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto 40px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-banner:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 80px rgba(114, 78, 44, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 108, 37, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.info-banner-content {
    position: relative;
    z-index: 1;
}

/* Decorative Circle */
.info-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-banner-content {
    position: relative;
    z-index: 1;
}

/* Engraved Title Effect */
.info-banner-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 165, 116, 0.3);
}

.info-banner-title .highlight {
    color: #d4a574;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 165, 116, 0.6);
    font-weight: 900;
    position: relative;
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 165, 116, 0.6); }
    50% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 165, 116, 0.8); }
}

/* Engraved Text Effect */
.info-banner-text {
    color: #e8d9c8;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-banner-text strong {
    color: #f4e4d0;
    font-weight: 700;
}

/* Engraved Link Style */
.info-banner-text a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.info-banner-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.info-banner-text a:hover::after {
    width: 100%;
}

.info-banner-text a:hover {
    color: #e8c199;
}

/* Badge with Carved Effect */
.badge-container {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-container {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge:hover {
    background: rgba(212, 165, 116, 0.3);
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 165, 116, 0.4);
}

.badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Decorative Divider */
.divider {
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(212, 165, 116, 0.5) 30%,
        rgba(212, 165, 116, 0.8) 50%,
        rgba(212, 165, 116, 0.5) 70%,
        transparent 100%
    );
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    border-radius: 2px;
}

.about .icon-box {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about .icon-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.15);
}

.about .icon-box:hover i {
    transform: scale(1.1) rotate(5deg);
}
.features .features-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid transparent;
}

.features .features-item:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(114, 78, 44, 0.15);
}

/* FAQ Items Enhancement */
.faq .faq-container .faq-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq .faq-container .faq-item:hover {
    border-left-color: var(--accent-color);
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .banner1 {
        padding: 60px 30px;
        margin: 0 10px;
    }

    .info-banner {
        padding: 40px 30px;
    }

    .info-banner-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .info-banner-text {
        font-size: 1rem;
    }

    .badge-container {
        margin-top: 20px;
    }

    .badge {
        font-size: 0.875rem;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .banner1 .content h2 {
        font-size: 1.75rem;
    }

    .btn1 {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
}

/* Add subtle parallax effect to sections */
.section {
    transform-style: preserve-3d;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus States for Accessibility */
.btn1:focus,
.badge:focus {
    outline: 3px solid rgba(212, 165, 116, 0.5);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .banner1::before,
    .banner1::after,
    .info-banner::before {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-banner {
        padding: 32px 24px;
    }

    .info-banner-title {
        font-size: 1.375rem;
        margin-bottom: 14px;
    }

    .info-banner-text {
        font-size: 0.9375rem;
    }

    .badge-container {
        margin-top: 16px;
    }

    .badge {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }
}

/* Alternative Lighter Version */
.info-banner.light-version {
    background: linear-gradient(135deg, #9b6c25 0%, #724e2c 100%);
}

.info-banner.light-version .info-banner-title {
    color: #3d2817;
    text-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.3),
        0 3px 5px rgba(0, 0, 0, 0.2),
        0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Quick Contact Form */
.quick-contact {
    margin-top: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background-color: #1a1a2e;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px 12px;
    color: #fff;
    font-size: 13px;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #523823;
}

.contact-form textarea {
    resize: vertical;
    height: 60px;
}

.contact-submit {
    background-color: #9b6c25;
    color: #05192D;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-submit:hover {
    background-color: #523823;
    color: #fff;
}