body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

.why-us-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

.section-title-light {
    color: white;
}

.announcement-bar {
    background: linear-gradient(90deg, #F5A623 0%, #f0c143 50%, #F5A623 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.announcement-bar a {
    transition: all 0.3s ease;
}

.announcement-bar a:hover {
    letter-spacing: 1px;
}

.main-nav {
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-link-custom {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F5A623;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: #F5A623 !important;
}

.hero-section {
    position: relative;
    min-height: 620px;
    background: url('images/House Painting Services Ryton - Johnson Decorators ltd.jpg') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
                    rgba(0, 0, 0, 0.85) 0%,
                    rgba(0, 0, 0, 0.7) 40%,
                    rgba(0, 0, 0, 0.4) 60%,
                    rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.quote-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.form-input-wrapper input, .form-input-wrapper select {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.form-input-wrapper input:focus, .form-input-wrapper select:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
    background: #fff;
}

.form-input-wrapper .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0052D4 0%, #0d6efd 50%, #4364F7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.cta-strip {
    background: linear-gradient(135deg, #0052D4 0%, #0d6efd 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.paint-drip {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.logo-text {
    border: 2.5px solid white;
    border-radius: 8px;
    padding: 6px 16px;
    line-height: 1.1;
}

.services-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    min-width: 260px;
    padding: 12px 0;
    z-index: 100;
}

.services-trigger:hover .services-dropdown {
    display: block;
}

.services-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.services-dropdown a:hover {
    background: #FFF8E7;
    color: #F5A623;
    padding-left: 28px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111111;
    padding: 20px;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-menu a:hover {
    color: #F5A623;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.scroll-indicator {
    animation: bounce-down 1.5s ease-in-out infinite;
}

.quote-section {
    position: relative;
    background: #fafafa;
    overflow: hidden;
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.quote-liquid-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.quote-liquid-bg .ql-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.ql-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(245, 166, 35, 0.25);
    top: -200px;
    right: -150px;
    animation: ql-drift 10s ease-in-out infinite;
}

.ql-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(13, 110, 253, 0.18);
    bottom: -200px;
    left: -100px;
    animation: ql-drift 12s ease-in-out infinite reverse;
}

.quote-glass-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 50px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.quote-glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), transparent 40%, transparent 60%, rgba(13, 110, 253, 0.2));
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}

.quote-icon {
    font-size: 42px;
    color: #F5A623;
    opacity: 0.7;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin: 24px 0;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 1px;
}

.quote-title {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.glow-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5A623, transparent);
    margin: 20px auto;
    border-radius: 2px;
}

.review-badges-section {
    position: relative;
    background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
    padding: 50px 0 60px;
    overflow: hidden;
}

.review-badge-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-badge-glass:hover {
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.1), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.review-badge-glass .stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-badge-glass .rating {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
}

.review-badge-glass .source {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-badge-glass img {
    max-height: 50px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.review-badge-glass:hover img {
    filter: brightness(1.05) contrast(1.05);
}

.why-us-section {
    background: #000000;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.why-us-v4-container {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.v4-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.v4-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.v4-image-side:hover .v4-main-img {
    transform: scale(1.05);
}

.v4-overlay-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #F5A623;
    color: #000;
    padding: 12px 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 4px;
    z-index: 5;
}

.v4-content-side {
    flex: 1;
    background: #0a0a0a;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v4-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
}

.v4-title span {
    color: #F5A623;
}

.v4-desc {
    font-size: 18px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
}

.v4-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.v4-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.v4-icon-wrap {
    color: #F5A623;
    font-size: 20px;
    margin-top: 5px;
}

.v4-item h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.v4-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.v4-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #F5A623;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.v4-btn:hover {
    gap: 25px;
    color: white;
}

.v3-btn:hover {
    background: #F5A623;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 166, 35, 0.3);
}

.gallery-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    color: #F5A623;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-name {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-cat, .gallery-item:hover .gallery-name {
    transform: translateY(0);
}

.detailed-services-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 992px) {
    .services-main-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.service-full-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    will-change: transform;
}

.service-full-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 166, 35, 0.3);
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    transition: all 0.4s ease;
    text-decoration: none;
    padding: 12px 30px;
    background: #F5A623;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.2);
}

.service-read-more:hover {
    background: #111111;
    color: #F5A623;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-read-more i {
    font-size: 11px;
    transition: transform 0.4s ease;
}

.service-read-more:hover i {
    transform: translateX(5px);
}

.service-card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.service-card-img-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-full-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-icon-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #111111;
    color: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-full-card:hover .service-icon-badge {
    background: #F5A623;
    color: #111111;
    transform: translateX(-50%) rotate(360deg);
}

.service-icon-badge i {
    font-size: 24px;
    transition: all 0.4s ease;
}

.service-card-info {
    padding: 50px 40px 60px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.specialization-split {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.spec-side {
    flex: 1;
    min-width: 100%;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.spec-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.spec-side:hover .spec-bg {
    transform: scale(1.1);
}

.spec-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.spec-side-left .spec-overlay {
    background: linear-gradient(rgba(26, 69, 72, 0.9), rgba(26, 69, 72, 0.7));
}

.spec-side-right .spec-overlay {
    background: linear-gradient(rgba(245, 166, 35, 0.9), rgba(245, 166, 35, 0.7));
}

.spec-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 600px;
}

.spec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.spec-side-right .spec-title {
    color: #1a1a1a;
}

.spec-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.spec-side-left .spec-btn {
    background: #F5A623;
    color: #1a1a1a;
}

.spec-side-left .spec-btn:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.spec-side-right .spec-btn {
    background: #1a1a1a;
    color: white;
}

.spec-side-right .spec-btn:hover {
    background: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.testimonials-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(245, 166, 35, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 166, 35, 0.5);
}

.testi-quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 40px;
    color: rgba(13, 110, 253, 0.08);
    z-index: 1;
}

.testi-rating {
    color: #F5A623;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.testi-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.testi-text::-webkit-scrollbar {
    width: 4px;
}

.testi-text::-webkit-scrollbar-track {
    background: transparent;
}

.testi-text::-webkit-scrollbar-thumb {
    background: rgba(245, 166, 35, 0.5);
    border-radius: 4px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #F5A623 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

.author-info h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.author-info span {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.cta-banner-section {
    position: relative;
    padding: 100px 0;
    background: url('images/IMG_3192.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(13, 110, 253, 0.4) 100%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.main-footer {
    background: #111111;
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #F5A623;
}

.footer-link {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F5A623;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
    font-size: 16px;
}

.footer-contact-item i {
    color: #F5A623;
    font-size: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 10px;
}

.social-btn:hover {
    background: #F5A623;
    color: #111;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #777;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 30px;
    text-align: center;
}

.feature-item {
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.service-swiper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.service-swiper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-swiper .swiper-pagination-bullet-active {
    background: #F5A623;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111111;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid #F5A623;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    z-index: 100;
    border-radius: 0 0 8px 8px;
}

.group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-link:hover {
    background: rgba(245, 166, 35, 0.08);
    color: #F5A623;
    padding-left: 32px;
}

.about-hero {
    position: relative;
    height: 500px;
    background: url('images/PHOTO-2026-03-12-11-58-442.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.story-section {
    padding: 100px 0;
    background: #ffffff;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-img-container {
    position: relative;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.story-section:hover .story-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #F5A623;
    color: black;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.3);
    text-align: center;
    z-index: 10;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: -1;
    animation: blob-float 8s ease-in-out infinite;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: #F5A623;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
}

.what-we-do {
    padding: 100px 0;
    background: #ffffff;
}

.wwd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.wwd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

.wwd-view-all {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.wwd-view-all:hover {
    color: #F5A623;
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-mini {
    display: flex;
    background: #f9f9f9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    min-height: 240px;
}

.service-card-mini.dark {
    background: #111111;
    color: #ffffff;
    border-color: #222;
}

.service-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wwd-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wwd-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wwd-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-card-mini.dark .wwd-card-desc {
    color: #999;
}

.wwd-read-more {
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wwd-img-wrap {
    width: 45%;
    overflow: hidden;
}

.wwd-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Thank You Page ──────────────────────────────── */
.thankyou-section {
    position: relative;
    min-height: 100vh;
    background: #111111 url('images/IMG_3191 (1).jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
}

.thankyou-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 1;
}

.thankyou-content {
    position: relative;
    z-index: 2;
}

.thankyou-icon {
    font-size: 5rem;
    color: #F5A623;
    margin-bottom: 24px;
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes pop-in {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.thankyou-strips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.thankyou-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: left;
    min-width: 220px;
}

.thankyou-strip i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.thankyou-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F5A623;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thankyou-btn-primary:hover {
    background: #e09410;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.thankyou-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.thankyou-btn-outline:hover {
    border-color: #F5A623;
    color: #F5A623;
    transform: translateY(-2px);
}

/* ── Hero form error banner ──────────────────────── */
.quote-error-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.quote-error-msg a {
    color: #991b1b;
    font-weight: 700;
}

.blog-hero {
    position: relative;
    height: 450px;
    background: url('images/IMG_3191 (1).jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.3);
}

.blog-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #F5A623;
    color: black;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    gap: 16px;
}

.blog-meta i {
    color: #F5A623;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #F5A623;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #F5A623;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #F5A623;
    gap: 12px;
}

/* ── Blog Post Detail ─────────────────────────── */
.post-hero {
    position: relative;
    min-height: 480px;
    background: url('images/IMG_3191 (1).jpeg') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: white;
    padding-bottom: 60px;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.post-breadcrumb a:hover { color: #F5A623; }

.post-breadcrumb i {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}

.post-breadcrumb span {
    color: #F5A623;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.post-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-hero-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    flex-wrap: wrap;
}

.post-hero-meta i {
    color: #F5A623;
    margin-right: 6px;
}

.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 32px;
    border-bottom: 2px solid #F5A623;
    padding-bottom: 2px;
    transition: color 0.2s, gap 0.2s;
}

.post-back-link:hover {
    color: #F5A623;
    gap: 12px;
}

.post-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    border-left: 4px solid #F5A623;
    padding-left: 20px;
    margin-bottom: 36px;
}

.post-featured-img {
    margin: 0 0 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.post-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

/* Content typography */
.post-content {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-top: 2em;
    margin-bottom: 0.6em;
    line-height: 1.25;
}

.post-content h2 { font-size: 1.75rem; }
.post-content h3 { font-size: 1.4rem; }
.post-content h4 { font-size: 1.15rem; }

.post-content p { margin-bottom: 1.4em; }

.post-content a {
    color: #F5A623;
    text-decoration: underline;
}

.post-content a:hover { color: #e09410; }

.post-content ul,
.post-content ol {
    margin: 0 0 1.4em 1.5em;
    padding: 0;
}

.post-content li { margin-bottom: 0.5em; }

.post-content blockquote {
    border-left: 4px solid #F5A623;
    margin: 2em 0;
    padding: 16px 24px;
    background: #fef9ee;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
}

.post-content blockquote p { margin: 0; }

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5em 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95rem;
}

.post-content th {
    background: #1a1a1a;
    color: #F5A623;
    padding: 10px 14px;
    text-align: left;
}

.post-content td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e5e5;
}

.post-content tr:nth-child(even) td { background: #f9f9f9; }

.post-content pre,
.post-content code {
    font-family: 'Courier New', Courier, monospace;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.9rem;
}

.post-content pre {
    padding: 16px 20px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.post-content code {
    padding: 2px 6px;
}

/* Bottom CTA */
.post-footer-cta {
    margin-top: 56px;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 16px;
    text-align: center;
}

.post-footer-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
}

.post-footer-cta p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    font-size: 15px;
}

.post-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F5A623;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-cta-btn:hover {
    background: #e09410;
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.post-nav {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e5e5e5;
}

.page-hero {
    position: relative;
    height: 450px;
    background: url('images/domestic-her.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.stats-strip {
    background: #F5A623;
    padding: 50px 0;
}

.intro-img {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-img:hover img {
    transform: scale(1.04);
}

.alt-section-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.alt-section-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s;
}

.alt-section-img:hover img {
    transform: scale(1.04);
}

.service-item-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-item-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(245, 166, 35, 0.12);
    color: #F5A623;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.service-item-card:hover .service-item-icon {
    background: #F5A623;
    color: #111;
}

.sector-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: default;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sector-card:hover img {
    transform: scale(1.08);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 40%, rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: all 0.3s;
}

.sector-card:hover .sector-overlay {
    background: linear-gradient(to top, rgba(245, 166, 35, 0.85) 35%, rgba(0, 0, 0, 0.15));
}

.sector-icon {
    font-size: 26px;
    color: #F5A623;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.sector-card:hover .sector-icon {
    color: #111;
}

.sector-card:hover h3 {
    color: #111;
}

.sector-card:hover p {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-strip div {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-strip div:hover img {
    transform: scale(1.08);
}

.process-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #F5A623;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    margin: 0 auto 22px;
}

.cta-section {
    padding: 140px 0;
    background: url('images/PHOTO-2026-03-12-11-41-094.jpg') center 60% / cover no-repeat;
    position: relative;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.contact-hero {
    position: relative;
    height: 450px;
    background: url("images/IMG_3192 (1).jpeg") center center / cover
          no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.75),
          rgba(0, 0, 0, 0.45)
        );
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

/* ── Contact form alerts ─────────────────────────── */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.5;
}

.contact-alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 166, 35, 0.3);
}

.contact-card a, .contact-card span {
    display: block;
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    background: #f5a623;
    color: #1a1a1a;
    transform: scale(1.1) rotate(8deg);
}

.contact-form-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.form-container {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 1fr;
}

.form-body {
    padding: 60px;
}

.form-info-pane {
    background: #111111;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.form-input:focus {
    outline: none;
    background: #fff;
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.submit-btn-premium {
    background: #f5a623;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    padding: 20px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn-premium:hover {
    background: #111111;
    color: #f5a623;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.services-provide-section {
    position: relative;
    background: #f4f4f4;
    padding: 100px 0;
    overflow: hidden;
}

.services-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
    gap: 0;
}

.services-watermark span {
    font-family: "Playfair Display", serif;
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
    white-space: nowrap;
}

.service-node {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.service-node:hover {
    transform: translateY(-6px);
}

.service-node-icon {
    font-size: 48px;
    color: #4361ee;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.service-node:hover .service-node-icon {
    transform: scale(1.15);
}

.service-node h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.map-section {
    height: 500px;
    background: #eee;
    position: relative;
}

.service-hero {
    background: #111;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-bottom: 4px solid #F5A623;
}

.sidebar-box {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    background: #F5A623;
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 18px;
}

.sidebar-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-list a:hover {
    color: #F5A623;
    background: #fdfdfd;
    padding-left: 24px;
}

.sidebar-list a:last-child {
    border-bottom: none;
}

.content-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

.content-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-list li {
    margin-bottom: 10px;
    color: #4b5563;
}

.city-links {
    background: #111;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    color: white;
}

.city-btn {
    display: inline-block;
    border: 1px solid #F5A623;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 5px;
    transition: all 0.3s;
}

.city-btn:hover {
    background: #F5A623;
    color: black;
}

.work-hero {
    position: relative;
    height: 450px;
    background: url('images/PHOTO-2026-03-12-11-49-02.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.work-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.work-hero-content {
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
    color: #666;
}

#filter-buttons .active {
    background-color: #F5A623;
    color: #1a1a1a;
    border-color: #F5A623;
}

.filter-btn.active {
    background: #F5A623;
    color: black;
    border-color: #F5A623;
    box-shadow: 0 10px 20px -5px rgba(245, 166, 35, 0.4);
}

.filter-btn:hover:not(.active) {
    background: #f8f8f8;
    border-color: #ddd;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.5s ease;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card.hidden {
    display: none;
}

.services-hero {
    position: relative;
    height: 450px;
    background: url('images/PHOTO-2026-03-12-11-50-09.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.service-row-bily {
    padding: 80px 0;
    background: #ffffff;
}

.service-img-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.service-img-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-img-container::after {
    content: "";
    position: absolute;
    border: 3px solid #F5A623;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
}

.frame-right::after {
    top: 20px;
    left: 20px;
}

.frame-left::after {
    top: 20px;
    right: 20px;
}

.btn-bily-yellow {
    background: #F5A623;
    color: black;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-bily-blue {
    background: #0d6efd;
    color: white;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-bily-yellow:hover, .btn-bily-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats-dashboard {
    background: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.stat-item-bily {
    text-align: center;
}

.stat-item-bily i {
    font-size: 40px;
    color: #F5A623;
    margin-bottom: 20px;
    display: block;
}

.why-us-bily {
    background: #111111;
    padding: 100px 0;
    color: white;
}

.why-node {
    text-align: center;
    padding: 20px;
}

.why-node i {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #F5A623;
    transition: all 0.3s;
}

.why-node:hover i {
    background: #F5A623;
    color: black;
}

.faq-item-premium {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 166, 35, 0.2);
}

.faq-item-premium.active {
    border-color: #F5A623;
    box-shadow: 0 20px 50px -10px rgba(245, 166, 35, 0.15);
}

.faq-trigger-premium {
    width: 100%;
    text-align: left;
    padding: 30px 40px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1a1a1a;
    background: none;
    border: none;
    outline: none;
}

.faq-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #F5A623;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-item-premium.active .faq-icon-box {
    background: #F5A623;
    color: white;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.faq-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 40px 0 88px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.faq-item-premium.active .faq-content-premium {
    max-height: 500px;
    padding-bottom: 40px;
    opacity: 1;
}

.faq-q-badge {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
    color: #F5A623;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    margin-right: 20px;
    box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.2);
}

.faq-footer-cta {
    margin-top: 60px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes shimmer {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

@keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
            }

            50% {
                box-shadow: 0 4px 25px rgba(13, 110, 253, 0.6);
            }
        }

@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

@keyframes bounce-down {

            0%,
            100% {
                transform: translateY(0);
                opacity: 1;
            }

            50% {
                transform: translateY(8px);
                opacity: 0.5;
            }
        }

@keyframes ql-drift {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(40px, -30px);
            }
        }

@keyframes blob-float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(40px, -30px) scale(1.1);
            }
        }

@keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

@media (max-width: 1023px) {
            .hero-section {
                min-height: auto;
            }

            .hero-overlay {
                background: linear-gradient(to bottom,
                        rgba(0, 0, 0, 0.8) 0%,
                        rgba(0, 0, 0, 0.6) 100%);
            }
        }

@media (max-width: 1023px) {
            .wwd-grid {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 767px) {
            .hero-section {
                min-height: auto;
            }
        }

@media (min-width: 1024px) {
            .why-us-v4-container {
                flex-direction: row;
                height: 60vh;
                
                min-height: 550px;
                
            }
        }

@media (min-width: 1024px) {
            .v4-content-side {
                padding: 60px 80px;
                
            }
        }

@media (min-width: 1024px) {
            .services-main-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

@media (min-width: 1024px) {
            .spec-side {
                min-width: 50%;
                height: 480px;
            }
        }

@media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

@media (min-width: 1024px) {
        .form-container {
          grid-template-columns: 1.2fr 0.8fr;
        }
      }

@media (min-width: 640px) {
            .v4-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

@media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (min-width: 768px) {
            .services-main-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

@media (max-width: 639px) {
            .service-card-mini {
                flex-direction: column;
                min-height: auto;
            }

            .wwd-img-wrap {
                width: 100%;
                height: 200px;
            }

            .wwd-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        }

/* ==========================================================================
   INNER SERVICE PAGES STYLES
   ========================================================================== */

.inner-service-page {
    background-color: #fafafa;
}

.inner-service-page .service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), #111;
    padding: 120px 0 100px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.inner-service-page .service-featured-image img {
    height: 500px;
}

@media (max-width: 1023px) {
    .inner-service-page .service-featured-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .inner-service-page .service-featured-image img {
        height: 300px;
    }
}

.inner-service-page .content-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.2;
}

.inner-service-page .content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #F5A623;
    border-radius: 2px;
}

.inner-service-page .content-subheading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 45px 0 25px;
    font-family: 'Playfair Display', serif;
}

.inner-service-page .content-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.inner-service-page .content-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.inner-service-page .content-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #F5A623;
    font-size: 14px;
}

/* Sidebar Styling */
.inner-service-page .sidebar-box {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.inner-service-page .sidebar-box:hover {
    transform: translateY(-5px);
}

.inner-service-page .sidebar-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #F5A623;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.inner-service-page .sidebar-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

.inner-service-page .sidebar-list a:last-child {
    border-bottom: none;
}

.inner-service-page .sidebar-list a i {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.inner-service-page .sidebar-list a:hover {
    color: #F5A623;
    padding-left: 12px;
}

.inner-service-page .sidebar-list a:hover i {
    transform: translateX(5px);
    opacity: 1;
}

/* Form inputs on service pages */
.inner-service-page .form-input {
    width: 100%;
    padding: 16px 20px;
    background: #f9f9f9;
    border: 1.5px solid #eee;
    border-radius: 12px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 14px;
}

.inner-service-page .form-input:focus {
    background: white;
    border-color: #F5A623;
    outline: none;
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.1);
}

/* Gallery Section inside Service Page */
.inner-service-page .gallery-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

/* FAQ Overlap Fix & Enhancement */
.inner-service-page .faq-item-premium {
    margin-bottom: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.inner-service-page .faq-item-premium:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: rgba(245, 166, 35, 0.2);
}

.inner-service-page .faq-trigger-premium {
    padding: 25px 30px;
    font-size: 18px;
}

.inner-service-page .faq-content-premium {
    padding: 0 30px 25px;
}

@media (max-width: 768px) {
    .inner-service-page .service-hero {
        padding: 80px 0 60px;
    }
.inner-service-page .sidebar-list a.active {
    color: #F5A623;
    padding-left: 12px;
    font-weight: 800;
}

.inner-service-page .sidebar-list a.active i {
    transform: translateX(5px);
    opacity: 1;
}

.nav-link-custom.active {
    color: #F5A623 !important;
    font-weight: 700;
}

}
.sidebar-list a.active {
    color: #eab308; /* Tailwind-equivalent yellow text */
}

/* ==================== COOKIE POPUP ==================== */
.cookie-popup {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.cookie-popup:not(.translate-y-20) {
    transform: translate(0);
    opacity: 1;
    pointer-events: auto;
}

.service-img-container::after {
    content: "";
    position: absolute;
    border: 3px solid #F5A623;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
}
@media (max-width: 640px) {
    .cookie-popup {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
        width: auto;
        max-width: none;
    }
}

@media(max-width:590px)
{
    
.service-img-container::after {
    content: "";
    position: absolute;
    border: 3px solid #F5A623;
    width: 100%;
    height: 100%;
    display:none;
    border-radius: 12px;
    z-index: 1;
}
.faq-footer-cta{
    display:none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 13px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}


/* =========================
   CONTACT FORM RESPONSIVE
========================= */

@media (max-width: 991px){

    .form-container{
        display:flex;
        flex-direction:column;
    }

    .form-body{
        width:100%;
        padding:40px 25px;
    }

    .form-info-pane{
        width:100%;
        padding:40px 25px;
    }

}

@media (max-width: 768px){

    .contact-hero{
        padding:120px 0 80px;
        text-align:center;
    }

    .contact-hero h1{
        font-size:38px !important;
        line-height:1.2;
    }

    .contact-card{
        padding:30px 20px;
        text-align:center;
    }

    .contact-form-section{
        padding:10px 0;
    }

    .form-container{
        border-radius:20px;
        overflow:hidden;
    }

    .form-body{
        padding:35px 20px;
    }

    .form-info-pane{
        padding:35px 20px;
    }

    .form-body h2{
        font-size:32px;
        line-height:1.3;
    }

    .form-input{
        height:55px;
        font-size:15px;
        padding:0 16px;
    }

    textarea.form-input{
        height:140px !important;
        padding-top:15px;
    }

    .submit-btn-premium{
        width:100%;
        justify-content:center;
        text-align:center;
        padding:16px 20px;
        font-size:15px;
    }

    .social-btn{
        width:45px;
        height:45px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

}

@media (max-width: 576px){

    .contact-hero h1{
        font-size:30px !important;
    }

    .contact-hero .text-sm{
        font-size:12px;
    }

    .form-body h2{
        font-size:28px;
    }

    .contact-card h3{
        font-size:20px;
    }

    .contact-card{
        padding:25px 18px;
    }

    .form-input{
        font-size:14px;
    }

    .submit-btn-premium{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
    }

    .map-section iframe{
        height:320px;
    }

}
/* WhatsApp Fixed Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1ebe5d;
}

/* MOBILE FIXED BOTTOM BUTTONS */
.mobile-bottom-buttons{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

/* Buttons */
.mobile-bottom-buttons a{
    width: 50%;
    text-align: center;
    padding: 16px 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left Button */
.call-btn{
    background: #000;
    border-top: 2px solid #d4ff00;
}

/* Right Button */
.quote-btn{
    background: #FACC15;
}

/* ONLY SHOW ON MOBILE */
@media (max-width: 768px){
    .mobile-bottom-buttons{
        display: flex;
    }
}
/* MOBILE FIXED BOTTOM BUTTONS */
.mobile-bottom-buttons{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999999;

    display: flex;
    flex-wrap: nowrap;

    overflow: hidden;
}

/* BOTH BUTTONS */
/* MOBILE FIXED BOTTOM BUTTONS */
.mobile-bottom-buttons{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    z-index: 999999;

    overflow: hidden;

    display: none; /* HIDE BY DEFAULT */
}

/* BOTH BUTTONS */
.mobile-bottom-buttons a{
    flex: 1;
    min-width: 0;

    text-align: center;
    padding: 14px 8px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

/* LEFT BUTTON */
.call-btn{
    background: #000;
    border-top: 2px solid #d4ff00;
}

/* RIGHT BUTTON */
.quote-btn{
    background: #D69120;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px){

    body{
        overflow-x: hidden;
        padding-bottom: 58px;
    }

    .mobile-bottom-buttons{
        display: flex;
    }
    
    .whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 178px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: 0.3s ease;
    text-decoration: none;
}
}