* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;x
    color: #2c2c2c;
    overflow-x: hidden;
    background: #fff;
}

/* Sub Header Offer Banner */
.sub-header {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 12px 18px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sub-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sub-header-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
}

.countdown {
    display: flex;
    gap: 1rem;
    color: #1a1a1a;
    font-weight: bold;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
}

.countdown-number {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Header */
header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 48px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo img{
        height: 70px;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: 0.3s;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 999;
    padding-top: 100px;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 2rem;
}

.mobile-sidebar li {
    margin-bottom: 1.5rem;
}

.mobile-sidebar a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-sidebar a:hover {
    background: #f9f9f9;
    color: #d4af37;
    padding-left: 1.5rem;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 2rem 2rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-text .highlight{
    color:#aa8829;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #aa8829 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    animation: fadeInUp 1s ease 0.6s backwards;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #2c2c2c;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: #fff;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #d4af37 0%, #aa8829 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Counters Section */
.counters-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.counters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.counter-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    color: #555;
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
    background: #fff;
    position: relative;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #aa8829 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 1rem auto;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-desc {
    color: #777;
    font-size: 0.9rem;
}

/* Video CTA Section */
.video-cta-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.video-cta-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.video-cta-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 2rem;
    background: #f9f9f9;
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.why-choose-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-choose-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

.why-choose-image:hover {
    transform: scale(1.03);
}

/* Before/After Section */
.before-after {
    padding: 5rem 2rem;
    background: #fff;
    position: relative;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.4s;
}

.comparison-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.comparison-card h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.comparison-card ul {
    list-style: none;
    color: #555;
}

.comparison-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.comparison-card li:hover {
    padding-left: 10px;
    color: #d4af37;
}

.comparison-card li:before {
    content: '✦ ';
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

.faq-item:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.faq-question {
    background: #fff;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #2c2c2c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
    background: #fafafa;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    text-align: center;
    position: relative;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #aa8829 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: #f9f9f9;
    color: #2c2c2c;
    padding: 3rem 2rem 1rem;
    border-top: 2px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #d4af37;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #888;
}

.footer-bottom p a {
    color: #888;
    text-decoration: none;
}





/* Responsive Breakpoints */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .sub-header {
        padding: 0.6rem rem;
        top: 0;
    }
    
    .sub-header-content {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .sub-header-text {
        font-size: 0.85rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-item {
        font-size: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }

    header {
        top: 46px;
    }

    nav {
        padding: 0 1rem;
    }
    
    .mobile-sidebar {
        padding-top: 135px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
    }

    .hero {
        padding: 170px 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .counters-section {
        padding: 3rem 1rem;
    }

    .counters-container {
        gap: 2rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .products-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .video-cta-section {
        padding: 4rem 1rem;
        min-height: 300px;
    }

    .video-cta-content h2 {
        font-size: 2rem;
    }

    .video-cta-content p {
        font-size: 1.1rem;
    }

    .why-choose {
        padding: 3rem 1rem;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-content h2 {
        font-size: 2rem;
    }

    .why-choose-content p {
        font-size: 1rem;
    }

    .before-after {
        padding: 3rem 1rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-card h3 {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cta-banner {
        padding: 3rem 1rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    
    .sub-header-text {
        font-size: 0.8rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        font-size: 0.7rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }

    header {
        top: 43px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .mobile-sidebar {
        width: 85%;
        padding-top: 120px;
    }

    .mobile-sidebar ul {
        padding: 1.5rem;
    }

    .mobile-sidebar a {
        font-size: 1.1rem;
    }

    .hero {
        padding: 160px 1rem 2rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .counters-section {
        padding: 2.5rem 1rem;
    }

    .counters-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .counter-card {
        padding: 1.5rem;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .counter-label {
        font-size: 1rem;
    }

    .products-section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }

    .video-cta-section {
        padding: 3rem 1rem;
        min-height: 250px;
    }

    .video-cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .video-cta-content p {
        font-size: 1rem;
    }

    .why-choose {
        padding: 2.5rem 1rem;
    }

    .why-choose-content h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .why-choose-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .before-after {
        padding: 2.5rem 1rem;
    }

    .comparison-card {
        padding: 1.2rem;
    }

    .comparison-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .comparison-card li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 2.5rem 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .cta-banner {
        padding: 2.5rem 1rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    footer {
        padding: 2rem 1rem 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .contact-info {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    header {
        top: 64px;
    }
    .hero {
        padding: 175px 1rem 2rem;
    }

}

/* Small mobile devices (320px) */
@media (max-width: 320px) {
    .sub-header {
        
    }
    
    .sub-header-text {
        font-size: 0.7rem;
    }
    
    .countdown {
        gap: 0.3rem;
        font-size: 0.7rem;
    }
    
    .countdown-number {
        font-size: 0.7rem;
    }
    
    .countdown-item { 
         font-size: 0.7rem;
    }

    header {
        top: 60px;
    }

    nav {
        padding: 0 0.8rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .logo img {
        height: 65px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        gap: 4px;
    }

    .mobile-sidebar {
        width: 90%;
        padding-top: 70px;
    }

    .mobile-sidebar ul {
        padding: 1rem;
    }

    .mobile-sidebar li {
        margin-bottom: 1rem;
    }

    .mobile-sidebar a {
        font-size: 1rem;
        padding: 0.6rem;
    }

    .hero {
        padding: 150px 0.8rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .counters-section {
        padding: 2rem 0.8rem;
    }

    .counter-card {
        padding: 1.2rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.9rem;
    }

    .products-section {
        padding: 2rem 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
        margin: 0.8rem auto;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1.5rem;
    }

    .products-grid {
        gap: 1rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-desc {
        font-size: 0.8rem;
    }

    .video-cta-section {
        padding: 2.5rem 0.8rem;
        min-height: 220px;
    }

    .video-cta-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .video-cta-content p {
        font-size: 0.9rem;
    }

    .why-choose {
        padding: 2rem 0.8rem;
    }

    .why-choose-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .why-choose-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .before-after {
        padding: 2rem 0.8rem;
    }

    .comparison-container {
        gap: 1rem;
    }

    .comparison-card {
        padding: 1rem;
    }

    .comparison-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .comparison-card li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .comparison-card li:before {
        margin-right: 0.3rem;
    }

    .faq-section {
        padding: 2rem 0.8rem;
    }

    .faq-item {
        margin-bottom: 0.8rem;
        border-radius: 8px;
    }

    .faq-question {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .faq-answer {
        padding: 0.7rem;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .cta-banner {
        padding: 2rem 0.8rem;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .cta-banner p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    footer {
        padding: 1.5rem 0.8rem 0.5rem;
    }

    .footer-content {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .contact-info {
        gap: 0.4rem;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.8rem;
    }
}


/* Thankyou Page */


.thankyou-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.thankyou-page {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 50%, #f5f5f5 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 180px 2rem 2rem;
}

.thankyou-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.05)"/></svg>');
    animation: thankyou-float 20s infinite linear;
    pointer-events: none;
    z-index: 0;
}

@keyframes thankyou-float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.thankyou-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
    position: relative;
    z-index: 1;
}

.thankyou-container {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 850px;
    width: 100%;
    position: relative;
    animation: thankyou-scaleIn 0.6s ease;
    margin: auto;
}

@keyframes thankyou-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thankyou-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: thankyou-checkmark 0.8s ease;
}

@keyframes thankyou-checkmark {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.thankyou-success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: thankyou-pulse 2s infinite;
}

@keyframes thankyou-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5);
    }
}

.thankyou-checkmark {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.thankyou-heading {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    animation: thankyou-fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes thankyou-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thankyou-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: thankyou-fadeInUp 0.8s ease 0.4s backwards;
}

.thankyou-text strong {
    color: #d4af37;
    font-weight: 600;
}

.thankyou-info-boxes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.thankyou-info-box {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    animation: thankyou-fadeInUp 0.8s ease 0.6s backwards;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.thankyou-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.thankyou-info-box:first-child {
    animation-delay: 0.6s;
}

.thankyou-info-box:last-child {
    animation-delay: 0.7s;
}

.thankyou-info-box p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thankyou-info-box p:last-child {
    margin-bottom: 0;
}

.thankyou-info-box .thankyou-highlight {
    color: #d4af37;
    font-weight: bold;
}

.thankyou-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thankyou-contact-boxes-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thankyou-contact-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 2rem 2.5rem;
    animation: thankyou-fadeInUp 0.8s ease 0.8s backwards;
    transition: all 0.3s;
}

.thankyou-contact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.thankyou-contact-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.thankyou-phone-number {
    display: inline-block;
    font-size: 1.6rem;
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.thankyou-phone-number:hover {
    color: #aa8829;
    transform: scale(1.05);
}

.thankyou-back-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #aa8829 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: thankyou-fadeInUp 0.8s ease 1s backwards;
}

.thankyou-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.thankyou-sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    animation: thankyou-sparkle 2s infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes thankyou-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.thankyou-sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.thankyou-sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.thankyou-sparkle:nth-child(3) { bottom: 15%; left: 20%; animation-delay: 1s; }
.thankyou-sparkle:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 1.5s; }

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablets and below (768px) */
@media screen and (max-width: 768px) {
    .thankyou-page {
        padding: 1.5rem 1rem;
    }

    .thankyou-container {
        padding: 2.5rem 2rem;
        border-radius: 15px;
    }

    .thankyou-heading {
        font-size: 1.8rem;
    }

    .thankyou-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .thankyou-info-boxes-wrapper {
        gap: 1rem;
    }

    .thankyou-info-box {
        padding: 1.5rem 1rem;
    }

    .thankyou-info-icon {
        font-size: 2rem;
    }

    .thankyou-contact-box {
        padding: 1.5rem 2rem;
    }

    .thankyou-phone-number {
        font-size: 1.4rem;
    }
}

/* Small mobile devices (480px) */
@media screen and (max-width: 480px) {
    .thankyou-page {
        padding: 1rem 0.75rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .thankyou-success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .thankyou-success-circle {
        width: 70px;
        height: 70px;
    }

    .thankyou-checkmark {
        font-size: 35px;
    }

    .thankyou-heading {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .thankyou-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .thankyou-info-boxes-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .thankyou-info-box {
        padding: 1.5rem 1.2rem;
    }

    .thankyou-info-box p {
        font-size: 0.95rem;
    }

    .thankyou-info-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .thankyou-contact-box {
        padding: 1.5rem 1.5rem;
    }

    .thankyou-contact-text {
        font-size: 0.95rem;
    }

    .thankyou-phone-number {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    .thankyou-back-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices (375px) */
@media screen and (max-width: 375px) {
    .thankyou-page {
        padding: 0.8rem 0.5rem;
    }

    .thankyou-container {
        padding: 1.8rem 1.2rem;
        border-radius: 10px;
    }

    .thankyou-success-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .thankyou-success-circle {
        width: 65px;
        height: 65px;
    }

    .thankyou-checkmark {
        font-size: 32px;
    }

    .thankyou-heading {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .thankyou-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.3rem;
    }

    .thankyou-info-boxes-wrapper {
        gap: 0.8rem;
        margin-bottom: 1.3rem;
    }

    .thankyou-info-box {
        padding: 1.3rem 1rem;
        border-radius: 10px;
    }

    .thankyou-info-box p {
        font-size: 0.9rem;
    }

    .thankyou-info-icon {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

    .thankyou-contact-box {
        padding: 1.3rem 1.2rem;
        border-radius: 12px;
    }

    .thankyou-contact-text {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .thankyou-phone-number {
        font-size: 1.2rem;
    }

    .thankyou-back-btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* iPhone SE and very small devices (320px) */
@media screen and (max-width: 320px) {
    .thankyou-page {
        padding: 0.5rem 0.4rem;
    }

    .thankyou-container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
        border-width: 1px;
    }

    .thankyou-success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }

    .thankyou-success-circle {
        width: 60px;
        height: 60px;
    }

    .thankyou-checkmark {
        font-size: 28px;
    }

    .thankyou-heading {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .thankyou-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .thankyou-info-boxes-wrapper {
        gap: 0.7rem;
        margin-bottom: 1rem;
    }

    .thankyou-info-box {
        padding: 1rem 0.8rem;
        border-radius: 8px;
        border-width: 1px;
    }

    .thankyou-info-box p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .thankyou-info-icon {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .thankyou-contact-box {
        padding: 1rem 1rem;
        border-radius: 10px;
        border-width: 1px;
    }

    .thankyou-contact-text {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }

    .thankyou-phone-number {
        font-size: 1.1rem;
        letter-spacing: 0px;
    }

    .thankyou-back-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        border-radius: 40px;
    }

    /* Reduce sparkle effect on very small screens */
    .thankyou-sparkle {
        width: 4px;
        height: 4px;
    }
}