/* ==========================================
   VARIABLES & GLOBAL STYLES
   ========================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    --accent-gold: #d4af37;
    --accent-pink: #ff6b9d;
    --accent-teal: #00bcd4;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.5) 0%, rgba(99, 110, 114, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: slideInUp 0.8s ease-out;
    color: var(--white);
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    color: var(--white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   TYPOGRAPHY & SECTIONS
   ========================================== */
.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 500;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-content {
    background: linear-gradient(135deg, var(--text-dark), #636e72);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-bg) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 188, 212, 0.2));
    transition: all 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    top: -25%;
    right: -25%;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-bg) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.location-text {
    animation: slideInLeft 0.8s ease-out;
}

.location-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-details {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--accent-gold);
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item strong {
    color: var(--accent-gold);
    font-size: 16px;
}

.detail-item p {
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.6;
}

.location-map {
    animation: slideInRight 0.8s ease-out;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    padding: 25px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    color: var(--white);
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark), #636e72);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    background: var(--white);
    color: var(--accent-gold);
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--accent-gold);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 30px 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-links {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
@supports (--css: variables) {
    [data-animate] {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
    }
}



/* ===== TOP HEADER ===== */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: bold;
    color: #c79c2c !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(to right, #5c646b 50%, #0f232b 50%);
    padding: 80px 0;
    position: relative;
}

.hero-left h1 {
    font-size: 42px;
    color: #ffcc00;
    font-weight: bold;
}

.hero-left h2 {
    color: #fff;
    margin: 15px 0;
}

.hero-left h3 {
    font-size: 35px;
    font-weight: bold;
    color: #000;
    background: #e7d19a;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}

.hero-left p {
    color: #fff;
    margin-top: 15px;
}

/* ===== IMAGE STYLE ===== */
.hero-img {
    width: 100%;
    border-radius: 30px;
    transition: opacity 0.5s ease-in-out;
}

/* Golden vertical strip */
.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    background: #b77a15;
    z-index: -1;
    border-radius: 10px;
}

/* ===== FORM BOX ===== */
.call-btn {
    background: #c79c2c;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.form-box {
    background: #2d3439;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: none;
}

.submit-btn {
    background: #c79c2c;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    color: #fff;
}

/* Responsive */
@media(max-width: 991px){
    .hero-section {
        background: #0f232b;
        text-align: center;
    }
    .image-wrapper::before{
        display:none;
    }
}

/* second */
* Section */
.benefit-section{
    padding:80px 0;
}

/* LEFT SIDE */
.left-content{
    text-align:center;
    animation: slideLeftRight 5s infinite;
}

/* Slide Animation */
@keyframes slideLeftRight {
    0%{
        transform: translateX(-40px);
        opacity:0;
    }
    50%{
        transform: translateX(0);
        opacity:1;
    }
    100%{
        transform: translateX(40px);
        opacity:0;
    }
}

.left-content h2{
    color:#0f8fa3;
    font-weight:700;
    font-size:36px;
    margin-bottom:30px;
}

.left-content img{
    width:300px;
}

/* RIGHT SIDE */
.right-content h3{
    font-weight:700;
    margin-bottom:20px;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.feature-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#d4a017;
    font-weight:bold;
}

.benefit-section{
    margin-top: 30px;
    margin-bottom: 20px;
}

.right-content{
    padding: 19px;
}

/* ================= WHY SECTION ================= */

.why-section{
    background: linear-gradient(135deg, #0f1720, #1c2733);
    color:#d1d5db;
    padding:80px 0;
    text-align:center;
}

.why-section h2{
    color:#fff;
    font-weight:700;
}

.divider{
    width:60px;
    height:3px;
    background:#cfa02c;
    margin:15px auto 40px;
}

.why-box{
    padding:40px 25px;
}

.icon-circle{
    width:70px;
    height:70px;
    border:2px solid #cfa02c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:28px;
    color:#cfa02c;
}

.why-box h4{
    color:#f5b84f;
    transition:0.3s;
}

.why-box h4:hover{
    color:#fff;
}

.why-box p{
    color:#cbd5e1;
}

/* ================= STATS SECTION ================= */

.stats-section{
    margin-top: 30px;
    margin-bottom:30px;
}

.stats-box{
    background:#d9d3c8;
    border-radius: 25px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    padding:40px 20px;
}

.stat-item{
    text-align:center;
    color:#cfa02c;
}

.stat-item h3{
    font-weight:700;
    font-size:32px;
    margin-bottom:5px;
}

.stat-item p{
    font-size:13px;
    letter-spacing:1px;
    color:#a9791c;
}

/* SECTION BACKGROUND */
.services-section{
    background: linear-gradient(135deg, #0f1720, #1c2733);
    padding:80px 0;
    color:#fff;
}

/* HEADING */
.services-section h2{
    text-align:center;
    font-weight:700;
}

.divider{
    width:60px;
    height:3px;
    background:#cfa02c;
    margin:15px auto 25px;
}

.services-subtitle{
    text-align:center;
    margin-bottom:50px;
    color:#d1d5db;
}

/* CARD STYLE */
.service-card{
    background:#f3f3f3;
    border-radius:10px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    height:100%;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

/* ICON CIRCLE */
.service-icon{
    width:70px;
    height:70px;
    border:2px solid #000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

/* TEXT */
.service-card h5{
    font-weight:600;
    margin-bottom:10px;
    color:#000;
}

.service-card p{
    font-size:14px;
    color:#444;
    line-height:1.6;
}

.rw-results-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.rw-container {
    max-width: 1200px;
    margin: auto;
}

.rw-heading {
    font-size: 38px;
    font-weight: 600;
    color: #b67b2e;
    margin-bottom: 10px;
}

.rw-subheading {
    color: #666;
    margin-bottom: 40px;
}

/* Tabs */
.rw-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.rw-tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 6px;
    font-weight: 500;
    position: relative;
}

.rw-tab-btn.active {
    color: #b67b2e;
}

.rw-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #b67b2e;
}

/* Content */
.rw-tab-content {
    display: none;
}

.rw-tab-content.active {
    display: block;
}

/* Grid */
.rw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Images */
.rw-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Videos */
.rw-video-box video {
    width: 100%;
    border-radius: 12px;
    background: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .rw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rw-grid {
        grid-template-columns: 1fr;
    }
}
.wb-testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.wb-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.wb-heading {
    font-size: 36px;
    margin-bottom: 10px;
}

.wb-subheading {
    color: #777;
    margin-bottom: 50px;
}

.wb-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wb-review-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
}

/* Continuous Marquee Animation */
@keyframes continuousScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 25px));
    }
}

.wb-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wb-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wb-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wb-google-logo {
    width: 60px;
}

.wb-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive */
@media(max-width:992px){
    .wb-review-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:576px){
    .wb-review-grid{
        grid-template-columns:1fr;
    }
}
 .wb-contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.wb-contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */
.wb-contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb-contact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.wb-contact-icon {
    width: 45px;
    height: 45px;
    background: #9E9E9E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wb-contact-box h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.wb-contact-box p {
    margin: 0;
    color: #555;
}

.wb-contact-box a {
    color: #555;
    text-decoration: none;
}

.wb-contact-box a:hover {
    color: #b67b2e;
}

/* SOCIAL ICONS */
.wb-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.wb-social-icons a {
    width: 38px;
    height: 38px;
    background: #b67b2e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.wb-social-icons a:hover {
    background: #000;
}

/* MAP */
.wb-contact-right {
    flex: 1.2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    min-height: 350px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wb-contact-container {
        flex-direction: column;
    }
}
  .wb-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 20px 0;
}

.wb-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.wb-footer-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wb-footer-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #b67b2e;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-footer-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COLUMNS */
.wb-footer-col {
    flex: 1;
    min-width: 220px;
}

.wb-footer-logo {
    width: 160px;
    margin-bottom: 20px;
    background: #fff;
}

.wb-footer-col h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}

.wb-footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.wb-footer-col ul {
    list-style: none;
    padding: 0;
}

.wb-footer-col ul li {
    margin-bottom: 10px;
}

.wb-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.wb-footer-col ul li a:hover {
    color: #b67b2e;
}

.wb-footer-col i {
    margin-right: 8px;
    color: #b67b2e;
}

/* COPYRIGHT */
.wb-footer-bottom {
    margin-top: 50px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
    background: #000;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wb-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wb-footer-left {
        margin-bottom: 30px;
    }
}



/* ===== TOP HEADER ===== */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: bold;
    color: #c79c2c !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(to right, #5c646b 50%, #0f232b 50%);
    padding: 80px 0;
    position: relative;
}

.hero-left h1 {
    font-size: 42px;
    color: #ffcc00;
    font-weight: bold;
}

.hero-left h2 {
    color: #fff;
    margin: 15px 0;
}

.hero-left h3 {
    font-size: 35px;
    font-weight: bold;
    color: #000;
    background: #e7d19a;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}

.hero-left p {
    color: #fff;
    margin-top: 15px;
}

/* ===== IMAGE STYLE ===== */
.hero-img {
    width: 100%;
    border-radius: 30px;
    transition: opacity 0.5s ease-in-out;
}

/* Golden vertical strip */
.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    background: #b77a15;
    z-index: -1;
    border-radius: 10px;
}

/* ===== FORM BOX ===== */
.call-btn {
    background: #c79c2c;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.form-box {
    background: #2d3439;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: none;
}

.submit-btn {
    background: #c79c2c;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    color: #fff;
}

/* Responsive */
@media(max-width: 991px){
    .hero-section {
        background: #0f232b;
        text-align: center;
    }
    .image-wrapper::before{
        display:none;
    }
}

/* second */
* Section */
.benefit-section{
    padding:80px 0;
}

/* LEFT SIDE */
.left-content{
    text-align:center;
    animation: slideLeftRight 5s infinite;
}

/* Slide Animation */
@keyframes slideLeftRight {
    0%{
        transform: translateX(-40px);
        opacity:0;
    }
    50%{
        transform: translateX(0);
        opacity:1;
    }
    100%{
        transform: translateX(40px);
        opacity:0;
    }
}

.left-content h2{
    color:#ffcc00;
    font-weight:700;
    font-size:36px;
    margin-bottom:30px;
}

.left-content img{
    width:300px;
}

/* RIGHT SIDE */
.right-content h3{
    font-weight:700;
    margin-bottom:20px;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.feature-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#d4a017;
    font-weight:bold;
}

.benefit-section{
    margin-top: 30px;
    margin-bottom: 20px;
}

.right-content{
    padding: 19px;
}

/* ================= WHY SECTION ================= */

.why-section{
    background: linear-gradient(135deg, #0f1720, #1c2733);
    color:#d1d5db;
    padding:80px 0;
    text-align:center;
}

.why-section h2{
    color:#fff;
    font-weight:700;
}

.divider{
    width:60px;
    height:3px;
    background:#cfa02c;
    margin:15px auto 40px;
}

.why-box{
    padding:40px 25px;
}

.icon-circle{
    width:70px;
    height:70px;
    border:2px solid #cfa02c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:28px;
    color:#cfa02c;
}

.why-box h4{
    color:#f5b84f;
    transition:0.3s;
}

.why-box h4:hover{
    color:#fff;
}

.why-box p{
    color:#cbd5e1;
}

/* ================= STATS SECTION ================= */

.stats-section{
    margin-top: 30px;
    margin-bottom:30px;
}

.stats-box{
    background:#d9d3c8;
    border-radius: 25px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    padding:40px 20px;
}

.stat-item{
    text-align:center;
    color:#cfa02c;
}

.stat-item h3{
    font-weight:700;
    font-size:32px;
    margin-bottom:5px;
}

.stat-item p{
    font-size:13px;
    letter-spacing:1px;
    color:#a9791c;
}

/* SECTION BACKGROUND */
.services-section{
    background: linear-gradient(135deg, #0f1720, #1c2733);
    padding:80px 0;
    color:#fff;
}

/* HEADING */
.services-section h2{
    text-align:center;
    font-weight:700;
}

.divider{
    width:60px;
    height:3px;
    background:#cfa02c;
    margin:15px auto 25px;
}

.services-subtitle{
    text-align:center;
    margin-bottom:50px;
    color:#d1d5db;
}

/* CARD STYLE */
.service-card{
    background:#f3f3f3;
    border-radius:10px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    height:100%;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

/* ICON CIRCLE */
.service-icon{
    width:70px;
    height:70px;
    border:2px solid #000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

/* TEXT */
.service-card h5{
    font-weight:600;
    margin-bottom:10px;
    color:#000;
}

.service-card p{
    font-size:14px;
    color:#444;
    line-height:1.6;
}

.rw-results-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.rw-container {
    max-width: 1200px;
    margin: auto;
}

.rw-heading {
    font-size: 38px;
    font-weight: 600;
    color: #b67b2e;
    margin-bottom: 10px;
}

.rw-subheading {
    color: #666;
    margin-bottom: 40px;
}

/* Tabs */
.rw-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.rw-tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 6px;
    font-weight: 500;
    position: relative;
}

.rw-tab-btn.active {
    color: #b67b2e;
}

.rw-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #b67b2e;
}

/* Content */
.rw-tab-content {
    display: none;
}

.rw-tab-content.active {
    display: block;
}

/* Grid */
.rw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Images */
.rw-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Videos */
.rw-video-box video {
    width: 100%;
    border-radius: 12px;
    background: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .rw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rw-grid {
        grid-template-columns: 1fr;
    }
}
.wb-testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.wb-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.wb-heading {
    font-size: 36px;
    margin-bottom: 10px;
}

.wb-subheading {
    color: #777;
    margin-bottom: 50px;
}

.wb-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wb-review-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
}

/* Continuous Marquee Animation */
@keyframes continuousScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 25px));
    }
}

.wb-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wb-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wb-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wb-google-logo {
    width: 60px;
}

.wb-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive */
@media(max-width:992px){
    .wb-review-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:576px){
    .wb-review-grid{
        grid-template-columns:1fr;
    }
}
 .wb-contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.wb-contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */
.wb-contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb-contact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.wb-contact-icon {
    width: 45px;
    height: 45px;
    background: #9E9E9E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wb-contact-box h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.wb-contact-box p {
    margin: 0;
    color: #555;
}

.wb-contact-box a {
    color: #555;
    text-decoration: none;
}

.wb-contact-box a:hover {
    color: #b67b2e;
}

/* SOCIAL ICONS */
.wb-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.wb-social-icons a {
    width: 38px;
    height: 38px;
    background: #b67b2e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.wb-social-icons a:hover {
    background: #000;
}

/* MAP */
.wb-contact-right {
    flex: 1.2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    min-height: 350px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wb-contact-container {
        flex-direction: column;
    }
}
  .wb-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 20px 0;
}

.wb-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.wb-footer-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wb-footer-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #b67b2e;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-footer-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COLUMNS */
.wb-footer-col {
    flex: 1;
    min-width: 220px;
}

.wb-footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.wb-footer-col h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}

.wb-footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.wb-footer-col ul {
    list-style: none;
    padding: 0;
}

.wb-footer-col ul li {
    margin-bottom: 10px;
}

.wb-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.wb-footer-col ul li a:hover {
    color: #b67b2e;
}

.wb-footer-col i {
    margin-right: 8px;
    color: #b67b2e;
}

/* COPYRIGHT */
.wb-footer-bottom {
    margin-top: 50px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
    background: #000;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wb-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wb-footer-left {
        margin-bottom: 30px;
    }
}

/* ========== NEW HERO SECTION STYLES ========== */

/* PRICE FOCUS - CENTER TOP */
.hero-price-focus {
    text-align: center;
    margin-bottom: 50px;
    animation: heroSlideInDown 0.8s ease-out;
}

.hero-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.price-badge {
    background: linear-gradient(135deg, rgba(207, 160, 44, 0.2), rgba(207, 160, 44, 0.1));
    border: 2px solid #cfa02c;
    border-radius: 20px;
    padding: 3px 40px;
    display: inline-block;
    animation: heroPulse 2s ease-in-out infinite;
}

.price-label {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.hero-price {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #cfa02c 0%, #ffed7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.price-sublabel {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 500;
    display: none;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

@keyframes heroSlideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* BEFORE/AFTER IMAGES */
.hero-image-showcase {
    padding: 20px;
    animation: heroSlideInLeft 0.8s ease-out;
}

.before-after-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(207, 160, 44, 0.1), rgba(0, 0, 0, 0.3));
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(207, 160, 44, 0.3);
}

.before-img, .after-img {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.before-img:hover, .after-img:hover {
    transform: scale(1.02);
}

.before-img img, .after-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.img-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(207, 160, 44, 0.9);
    color: #1c2733;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.arrow-divider {
    font-size: 32px;
    color: #cfa02c;
    font-weight: bold;
    animation: heroBlink 1.5s ease-in-out infinite;
}

@keyframes heroBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* PRODUCTS SHOWCASE */
.hero-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: heroSlideInUp 0.8s ease-out;
}

.product-highlight {
    background: linear-gradient(135deg, rgba(207, 160, 44, 0.2), rgba(0, 0, 0, 0.2));
    border: 2px solid #cfa02c;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(207, 160, 44, 0.2);
    background: linear-gradient(135deg, rgba(207, 160, 44, 0.3), rgba(0, 0, 0, 0.3));
}

.product-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.product-highlight p {
    color: #fff;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* FORM BOX NEW */
.form-box-new {
    background: linear-gradient(135deg, #2d3439 0%, #1a1a1f 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #cfa02c;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: heroSlideInRight 0.8s ease-out;
}

.form-box-new h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffed7f;
}

.form-subtext {
    color: #d1d5db;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 16px;
}

.form-box-new input,
.form-box-new select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 0;
    border-radius: 10px;
    border: 2px solid #444;
    background: #1a1f26;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-box-new input::placeholder {
    color: #888;
}

.form-box-new input:focus,
.form-box-new select:focus {
    outline: none;
    border-color: #cfa02c;
    box-shadow: 0 0 0 3px rgba(207, 160, 44, 0.2);
}

.form-box-new select {
    cursor: pointer;
}

.form-box-new select option {
    background: #1a1f26;
    color: #fff;
}

.submit-btn-new {
    width: 100%;
    padding: 16px 24px;
    margin-top: 10px;
    background: linear-gradient(135deg, #cfa02c 0%, #ffed7f 100%);
    border: none;
    color: #1a1f26;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(207, 160, 44, 0.3);
}

.submit-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(207, 160, 44, 0.5);
}

.submit-btn-new span {
    display: block;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.form-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-benefits p {
    color: #d1d5db;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 991px){
    .hero-section {
        padding: 40px 0 60px 0;
    }
    
    .hero-price {
        font-size: 52px;
    }
    
    .before-after-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .before-img img, .after-img img {
        height: 280px;
    }
    
    .hero-products {
        margin: 30px 0;
    }
    
    .form-box-new {
        padding: 30px;
    }
}

@media(max-width: 768px){
    .hero-price {
        font-size: 42px;
    }
    
    .before-img img, .after-img img {
        height: 220px;
    }
    
    .arrow-divider {
        font-size: 24px;
    }
    
    .form-box-new {
        padding: 25px;
    }
    
    .price-badge {
        padding: 25px 30px;
    }
}

/* ========== CAROUSEL STYLES ========== */

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: none;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
    background: linear-gradient(135deg, #cfa02c, #ffed7f);
    border: none;
    color: #1c2733;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(207, 160, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(207, 160, 44, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Transform Info Badge */
.transform-info {
    text-align: center;
    margin-top: 20px;
}

.transform-badge {
    background: linear-gradient(135deg, #cfa02c 0%, #ffed7f 100%);
    color: #1c2733;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(207, 160, 44, 0.2);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(207, 160, 44, 0.3);
    border: 2px solid #cfa02c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #cfa02c;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(207, 160, 44, 0.5);
}

.dot:hover {
    background: rgba(207, 160, 44, 0.6);
}

/* Responsive Carousel */
@media(max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-nav {
        padding: 0 5px;
    }
    
    .transform-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* BEFORE/AFTER IMAGES - UPDATED */
.hero-image-showcase {
    padding: 20px;
    animation: heroSlideInLeft 0.8s ease-out;
    position: relative;
}
