.sub-banner-padding{
    padding-top: 140px;
    padding-bottom: 40px;
}

.form-width{
    max-width: 70%;
    margin: 0 auto;
}

.consultation-form{
    max-width: 80%;
    margin: 0 auto;
}

.btn-outline{
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sub-banner-padding{
        padding-top: 110px;
        padding-bottom: 30px;
    }

    .form-width{
        max-width: 100%;
    }

    .consultation-form{
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .sub-banner-padding{
        padding-top: 110px;
        padding-bottom: 20px;
    }
}

/* Contact Method Cards */
.contact-method-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 12px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-method-card:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.contact-method-card input[type="radio"]:checked + .contact-method-content {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
}

.contact-method-card input[type="radio"]:checked + .contact-method-content .contact-method-icon {
    color: white;
}

.contact-method-card input[type="radio"]:checked + .contact-method-content .contact-method-title {
    color: white;
}

.contact-method-card input[type="radio"]:checked + .contact-method-content .contact-method-desc {
    color: rgba(255, 255, 255, 0.9);
}

.contact-method-content {
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-method-icon {
    color: #d4af37;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-method-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    transition: all 0.3s ease;
}

/* Lightbox Modal Responsive Styles */
#lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox-modal .modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

#close-lightbox:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

#prev-image, #next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    padding: 0.75rem;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

#prev-image {
    left: 1rem;
}

#next-image {
    right: 1rem;
}

#prev-image:hover, #next-image:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#image-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive for Lightbox */
@media (max-width: 768px) {
    #lightbox-modal .modal-container {
        padding: 0.5rem;
    }
    
    #close-lightbox {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem;
    }
    
    #prev-image, #next-image {
        padding: 0.6rem;
    }
    
    #prev-image {
        left: 0.5rem;
    }
    
    #next-image {
        right: 0.5rem;
    }
    
    #image-counter {
        bottom: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    #lightbox-modal .modal-container {
        padding: 0.25rem;
    }
    
    #close-lightbox {
        top: 0.25rem;
        right: 0.25rem;
        padding: 0.3rem;
    }
    
    #prev-image, #next-image {
        padding: 0.5rem;
    }
    
    #prev-image {
        left: 0.25rem;
    }
    
    #next-image {
        right: 0.25rem;
    }
    
    #image-counter {
        bottom: 0.25rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Gallery Grid Responsive */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Gallery Item Hover Effects */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Button Styles */
.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Button Adjustments */
@media (max-width: 768px) {
    .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-outline {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Success Icon Styles */
.success-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
    margin: 0 auto 32px;
}

.success-outer-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(244, 208, 63, 0.2), rgba(212, 175, 55, 0.3));
    animation: successPulse 2s ease-in-out infinite;
}

.success-middle-ring {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    border: 4px solid #f4d03f;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.success-inner-circle {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border: 2px solid #f4d03f;
}

.success-checkmark {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    stroke-width: 4;
}

.success-particles {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.success-particle {
    position: absolute;
    border-radius: 50%;
    animation: successBounce 1.5s ease-in-out infinite;
}

.success-particle:nth-child(1) {
    top: 12px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: #d4af37;
    animation-delay: 0s;
}

.success-particle:nth-child(2) {
    top: 20px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #f4d03f;
    animation-delay: 0.2s;
}

.success-particle:nth-child(3) {
    bottom: 16px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #d4af37;
    animation-delay: 0.4s;
}

.success-particle:nth-child(4) {
    bottom: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #f4d03f;
    animation-delay: 0.6s;
}

.success-particle:nth-child(5) {
    top: 50%;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #d4af37;
    animation-delay: 0.8s;
}

.success-particle:nth-child(6) {
    top: 50%;
    right: 4px;
    width: 6px;
    height: 6px;
    background: #f4d03f;
    animation-delay: 1s;
}

/* Animations */
@keyframes successPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes successBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive Success Icon */
@media (max-width: 768px) {
    .success-icon-container {
        width: 96px;
        height: 96px;
        margin-bottom: 24px;
    }
    
    .success-inner-circle {
        width: 60px;
        height: 60px;
    }
    
    .success-checkmark {
        width: 30px;
        height: 30px;
    }
    
    .success-particle:nth-child(1) {
        width: 8px;
        height: 8px;
    }
    
    .success-particle:nth-child(2),
    .success-particle:nth-child(3) {
        width: 6px;
        height: 6px;
    }
    
    .success-particle:nth-child(4) {
        width: 7px;
        height: 7px;
    }
    
    .success-particle:nth-child(5),
    .success-particle:nth-child(6) {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .success-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .success-inner-circle {
        width: 50px;
        height: 50px;
    }
    
    .success-checkmark {
        width: 25px;
        height: 25px;
    }
}

/* Mobile Service Images - Show only on sm and md devices */
@media (max-width: 1023px) {
    .mobile-service-images {
        display: block;
        margin-top: 2rem;
    }
    
    .mobile-service-images .service-image-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .mobile-service-images .service-image {
        width: 100%;
        height: 200px;
        max-height: 400px!important;
        object-fit: cover;
        border-radius: 0.75rem;
        transition: all 0.7s ease-in-out;
    }
}

/* Hide on lg and larger devices */
@media (min-width: 1024px) {
    .mobile-service-images {
        display: none;
    }
}

/* Testimonials Slider Responsive */
@media (max-width: 1023px) {
    #testimonials-slider .w-full {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    #testimonials-slider .w-full {
        width: 50%;
    }
}

.dropdown-submenu .dropdown-item {
    font-size: 16px;
    font-weight: 400;
}

