/* Custom Styles for About Us Section */
.about-custom-section {
    padding: 100px 0;
    background-color: var(--White);
    overflow: hidden;
}
.about-img-group {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
    margin-right: 30px;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    width: 90%;
    position: relative;
    z-index: 1;
}
.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 2;
    border: 10px solid var(--White);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-exp-badge {
    position: absolute;
    top: 50px;
    left: -20px;
    background: var(--Primary);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 3;
    min-width: 140px;
}
.about-exp-badge h3 {
    color: var(--Secondary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}
.about-exp-badge p {
    font-size: 13px;
    color: var(--Secondary);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-custom-content {
    padding-left: 20px;
}
.about-sub-heading {
    color: var(--Primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}
.about-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--Secondary);
                                        
}
.about-desc {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--Text);
    opacity: 0.8;
}
.about-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .about-feature-list {
        grid-template-columns: 1fr 1fr;
    }
}
.about-feature-item {
    display: flex;
    align-items: center;
}
.about-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(231, 200, 115, 0.15); /* Primary with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--Primary);
    font-size: 24px;
    transition: all 0.3s ease;
}
.about-feature-item:hover .about-feature-icon {
    background: var(--Primary);
    color: var(--White);
}
.about-feature-text {
    font-weight: 700;
    color: var(--Secondary);
    font-size: 18px;
    margin-bottom: 5px;
}
.about-feature-sub {
    font-size: 14px;
    color: var(--Text);
    opacity: 0.7;
}

/* Services Home Section */
.services-home-section {
    padding: 100px 0;
    background-color: #F9F7F3; /* Light warm gray */
    position: relative;
    overflow: hidden;
}

.service-card-home {
    background: var(--White);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--Secondary); /* Dark Brown on hover */
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card-home:hover::before {
    height: 100%;
}

.service-card-home .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #F9F7F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 35px;
    color: var(--Primary);
    transition: all 0.4s ease;
}

.service-card-home:hover .icon-wrapper {
    background: rgba(255,255,255,0.1);
    color: var(--Primary);
    transform: rotateY(360deg);
}

.service-card-home h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--Secondary);
    transition: color 0.4s ease;
}

.service-card-home p {
    color: var(--Text);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.7;
    transition: color 0.4s ease;
    flex-grow: 1;
}

.service-card-home:hover h4, 
.service-card-home:hover p {
    color: var(--White);
}

.service-card-home .link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #E6DFD5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Secondary);
    transition: all 0.4s ease;
    background: transparent;
    align-self: flex-start;
}

.service-card-home:hover .link-btn {
    background: var(--Primary);
    color: var(--Secondary);
    border-color: var(--Primary);
}

/* Why Us Dark Section */
.why-us-dark-section {
    padding: 100px 0;
    background-color: var(--Secondary); /* Dark Theme */
    color: var(--White);
    position: relative;
    z-index: 1;
}

.why-us-dark-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/section/bg-luxury-home.png'); /* Pattern if available, or just texture */
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.why-us-heading-small {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--Primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-us-heading-large {
    font-size: 48px;
    color: var(--White);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-us-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-box-dark {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.feature-box-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--Primary);
}

.feature-box-dark .feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-box-dark:hover .feature-number {
    color: rgba(231, 200, 115, 0.1);
}

.feature-box-dark .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(231, 200, 115, 0.1);
    color: var(--Primary);
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-box-dark:hover .icon-box {
    background: var(--Primary);
    color: var(--Secondary);
    transform: scale(1.1);
}

.feature-box-dark h4 {
    color: var(--White);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box-dark p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Image on the right side of Why Us */
.why-us-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.why-us-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.trust-badge-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--White);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 250px;
}

.trust-badge-floating .icon {
    font-size: 30px;
    color: var(--Primary);
    margin-right: 15px;
}

.trust-badge-floating .text h5 {
    font-size: 24px;
    color: var(--Secondary);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.trust-badge-floating .text p {
    font-size: 12px;
    color: var(--Text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Global Impact Section (White Theme) */
.impact-section {
    padding: 100px 0;
    background-color: var(--White);
    position: relative;
    overflow: hidden;
}

.impact-content-left {
    padding-right: 30px;
}

.impact-subtitle {
    display: inline-block;
    color: var(--Primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: rgba(231, 200, 115, 0.15);
    padding: 8px 16px;
    border-radius: 4px;
}

.impact-title {
    font-size: 42px;
    color: var(--Secondary);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.impact-desc {
    color: var(--Text);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.8;
}

.impact-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.impact-stat-item {
    background: #F9F7F3;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--Primary);
    transition: all 0.3s ease;
}

.impact-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.impact-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--Secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    font-family: 'Jost', sans-serif;
    line-height: 1;
}

.impact-stat-label {
    color: var(--Text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.impact-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 20px 20px 0px var(--F9F7F3); /* Simple graphic offset effect */
}

.impact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impact-image-container:hover img {
    transform: scale(1.05);
}

.impact-image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--Primary);
    color: var(--Secondary);
    padding: 30px;
    border-top-right-radius: 20px;
}

.impact-image-badge h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.impact-image-badge p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Consistent Spacing for TF Sections */
.tf-section {
    padding: 100px 0;
}

/* Adjust Parallax Spacing */
.parallax-wrap,
.parallax-wrap.style-1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Mobile Spacing Adjustments */
@media (max-width: 767px) {
    .about-custom-section,
    .services-home-section,
    .why-us-dark-section,
    .impact-section,
    .tf-section,
    .parallax-wrap,
    .parallax-wrap.style-1 {
        padding: 50px 0 !important;
    }
}

/* Improve visibility of active widget tabs and their cards */
.widget-tabs.style-1 .widget-menu-tab .item-title.active {
    background-color: var(--Secondary) !important;
    border-color: var(--Secondary) !important;
}
.widget-tabs.style-1 .widget-menu-tab .item-title.active .inner {
    color: #ffffff !important;
}

/* Ensure active tab content cards look enabled */
.widget-content-tab .widget-content-inner.active .box-dream {
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
    transform: none !important;
}

/* Small accent to make active tab stand out */
.widget-tabs.style-1 .widget-menu-tab .item-title.active {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Why Us Grid Layout */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ensure equal height for grid items */
.why-us-grid .feature-box-dark {
    height: 100%;
    margin: 0; /* Override any potential legacy margins */
}

/* Elegant Footer Design - Premium V2 */
.footer-elegant {
    background-color: var(--Secondary);
    color: var(--White);
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
}

/* Background Gradients */
.footer-elegant::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    /* Approximation of radial gradient using Primary color with transparency if supported, or fallback */
    background: radial-gradient(circle, rgba(231, 200, 115, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-elegant::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(231, 200, 115, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-content-wrapper {
    position: relative;
    z-index: 1;
}

/* CTA Top Section */
.footer-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.footer-cta-box:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(231, 200, 115, 0.2);
}

.footer-cta-text h2 {
    font-size: 56px;
    font-weight: 300;
    color: var(--White);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.footer-cta-text h2 span {
    font-weight: 700;
    color: var(--Primary);
}

.footer-cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-cta-btn .btn-shine {
    padding: 18px 40px;
    background: var(--Primary);
    color: var(--Secondary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    border: none;
}

.footer-cta-btn .btn-shine:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 200, 115, 0.2);
    background: var(--White);
}

/* Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 3fr 1.5fr 3fr 2.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Brand Column */
.footer-brand-col .footer-logo {
    max-width: 160px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 300px;
}

.social-icons-modern {
    display: flex;
    gap: 15px;
}

.social-icons-modern a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--White);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
}

.social-icons-modern a:hover {
    background: var(--Primary);
    color: var(--Secondary);
    border-color: var(--Primary);
    transform: scale(1.1);
}

/* Links Columns */
.footer-nav-col h4,
.footer-contact-col h4 {
    color: var(--White);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.footer-nav-col ul li {
    margin-bottom: 20px;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-col ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--Primary);
    transition: width 0.3s ease;
}

.footer-nav-col ul li a:hover {
    color: var(--Primary);
    padding-left: 5px;
}

.footer-nav-col ul li a:hover::before {
    width: 100%;
}

.footer-contact-col .contact-info-minimal {
    margin-top: 0;
}

.footer-contact-col .contact-info-minimal .item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-contact-col .contact-info-minimal .item i {
    font-size: 24px;
    color: var(--Primary);
    margin-top: 5px;
}

.footer-contact-col .contact-info-minimal .item .label {
    display: block;
    color: var(--White);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.6;
}

.footer-contact-col .contact-info-minimal .item .value {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Subscribe & Contact Column */
.footer-subscribe-col h4 {
    color: var(--White);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.newsletter-box-modern {
    position: relative;
    margin-bottom: 40px;
}

.newsletter-box-modern input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 50px 15px 0;
    color: var(--White);
    font-size: 16px;
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.newsletter-box-modern input:focus {
    border-color: var(--Primary);
    outline: none;
}

.newsletter-box-modern input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-box-modern button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--Primary);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-box-modern button:hover {
    transform: translateY(-50%) translateX(5px);
}

.contact-info-minimal .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-minimal .item i {
    color: var(--Primary);
    font-size: 20px;
    margin-right: 20px;
    margin-top: 2px;
}

.contact-info-minimal .item div {
    display: flex;
    flex-direction: column;
}

.contact-info-minimal .item .label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-minimal .item .value {
    color: var(--White);
    font-size: 16px;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.copyright-text .sep {
    margin: 0 10px;
    opacity: 0.3;
}

.copyright-text .dev-credit {
    color: var(--Primary);
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.copyright-text .dev-credit:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(231, 200, 115, 0.3);
}

.footer-legal-links {
    display: flex;
    gap: 40px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--Primary);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--Primary);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
    
    .footer-cta-text h2 {
        font-size: 42px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}





/* Modern Creative Testimonial (V6 - Elegance) */
.testimonial-modern-section {
    padding: 70px 0;

    position: relative;
}

.testimonial-modern-box {
    background: var(--White);
    padding: 50px 40px;
    border-radius: 4px; /* Crisp corners for elegance */
    border-top-right-radius: 40px; /* Creative corner */
    border-bottom-left-radius: 40px; /* Creative corner */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin: 15px; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-modern-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); 
    border-bottom-color: var(--Primary); /* Gold Accent reveal */
}

/* Background Watermark Icon */
.modern-quote-icon {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 140px;
    color: var(--Secondary);
    opacity: 0.03; /* Very subtle watermark */
    pointer-events: none;
    line-height: 1;
    transition: all 0.4s ease;
}

.testimonial-modern-box:hover .modern-quote-icon {
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.06;
}

/* Review Text */
.modern-review-text {
    position: relative;
    z-index: 2;
    font-size: 17px;
    line-height: 1.8;
    color: var(--Text);
    margin-bottom: 35px;
    font-weight: 400; 
    font-style: italic;
    opacity: 0.8;
}

/* Author Section */
.modern-author-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05); /* Subtle separator */
    padding-top: 20px;
}

.modern-author-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--Secondary);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.modern-author-details span {
    font-size: 13px;
    color: var(--Primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.testimonial-nav-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.modern-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--White);
    color: var(--Secondary);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-nav-btn:hover {
    background: var(--Secondary);
    color: var(--Primary);
    transform: scale(1.1);
}




/* Mobile Optimization for Hero Slider */
@media (max-width: 991px) {
    .slider.home7 .swiper-button-next,
    .slider.home7 .swiper-button-prev,
    .slider-home7 .home7-next,
    .slider-home7 .home7-prev {
        display: none !important;
    }
}

/* Standardize Hero Slider Height */
.slider.home7 .swiper-slide .image,
.slider.home7 .swiper-slide .image img {
    height: 800px; /* Fixed height for consistency */
    width: 100%;
    object-fit: cover; /* Maintain aspect ratio without distortion */
}

@media (max-width: 991px) {
    .slider.home7 .swiper-slide .image,
    .slider.home7 .swiper-slide .image img {
        height: 600px; /* Adjusted fixed height for mobile/tablets */
    }
}


/* Import Elegant Serif Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Premium Hero Content Redesign (V4.2 - Centered Editorial) */
.slider.home7 .slider-content {
    background: transparent; 
    backdrop-filter: none;
    padding: 0;
    border: none;
    max-width: 900px; 
    margin: 0 auto;
    text-align: center; /* Centered alignment for balance */
    position: relative;
    /* Removed padding-left and accent line */
}

/* Sub-text (Phone/info) - High Tracking */
.slider.home7 .slider-content .text {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    letter-spacing: 6px; 
    text-transform: uppercase;
    color: var(--Primary); 
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
    background: transparent;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Main Heading - Editorial Serif */
.slider.home7 .slider-content h1 {
    font-family: 'Playfair Display', serif; /* The key to elegance */
    font-size: 75px; 
    line-height: 1.1;
    color: #fff;
    margin-bottom: 45px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.slider.home7 .slider-content h1 span {
    font-style: italic; /* Elegant touch */
    font-weight: 400;
}

/* Button - Minimalist Outline to Solid */
.slider.home7 .slider-content .tf-button-primary {
    background: transparent;
    border: 2px solid var(--Primary);
    color: #fff;
    padding: 15px 40px;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.slider.home7 .slider-content .tf-button-primary:hover {
    background: var(--Primary);
    border-color: var(--Primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 200, 115, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .slider.home7 .slider-content {
        margin: 0 15px;
        text-align: left;
        padding-left: 20px;
        border-left: none; /* Rely on pseudo-element */
    }
    .slider.home7 .slider-content h1 {
        font-size: 40px; /* Readable on mobile */
        margin-bottom: 25px;
    }
    .slider.home7 .slider-content .text {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    /* Hide accent line on very small screens if needed, or adjust */
    .slider.home7 .slider-content::before {
        width: 3px;
    }
}

    /* Ensure hero slider has no background color (override theme defaults) */
    .slider.home7,
    .slider.home7 .swiper-container,
    .slider.home7 .swiper-wrapper,
    .slider.home7 .swiper-slide,
    .slider.home7 .swiper-slide .image,
    .slider.home7 .slider-content {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* Remove any overlay or tinted pseudo-element that may add bg */
    .slider.home7 .slider-content::after,
    .slider.home7 .slider-content::before {
        background: transparent !important;
        opacity: 1 !important;
    }


