/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated Professional Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    height: 80px;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #2c3e50;
    letter-spacing: -0.5px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 5px;
}

.nav-links li a {
    padding: 10px 16px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.nav-links li a:hover {
    background-color: rgba(0,0,0,0.04);
    color: #c0392b;
}

.nav-links li a.active {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.08);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c3e50;
}

/* Responsive Navbar */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.show {
        max-height: 300px;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        border-radius: 0;
    }
}

/* Scroll behavior for navbar */
.navbar.scrolled {
    height: 65px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw; /* Full viewport width */
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: flex-start !important;
    justify-content: center;
    padding-top: 90px !important;
    padding-bottom: 30px;
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.95)),
                url('https://source.unsplash.com/random/1920x1080?luxury,technology') center/cover;
    color: #fff;
    box-sizing: border-box;
    margin: 0;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Enhanced hero title styling */
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: clamp(0.5rem, 2vw, 1.2rem);
    text-align: center;
    max-width: 90vw;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 30%, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 3px 10px rgba(0,0,0,0.15);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
    border-radius: 2px;
}

/* Side-by-side layout adjustment for the title */
@media (min-width: 992px) {
    .hero h1 {
        text-align: left; 
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    
    .hero h1::after {
        left: 0;
        transform: none;
    }
    
    .hero-text {
        padding-right: 30px;
    }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-align: center;
    max-width: 80vw;
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact Form */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Buttons */
.cta-button {
    display: inline-block !important;
    position: relative !important;
    z-index: 100 !important;
    background-color: #c0392b !important;
    color: white !important;
    padding: clamp(12px, 2vw, 20px) clamp(25px, 4vw, 40px) !important;
    margin: 20px auto !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important;
    text-transform: uppercase !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    border: none !important;
    cursor: pointer !important;
    max-width: min(90vw, 300px) !important;
    text-align: center !important;
}

.cta-button:hover {
    background-color: #e74c3c !important; /* Lighter red on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}

.footer-newsletter h4, .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after, .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.newsletter-success {
    color: #2ecc71;
    margin-top: 10px;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Chat Notification Dot */
.chat-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .features h2, .premium-features h2, .testimonials h2, .buy h2, .contact h2 {
        font-size: 2rem;
    }
    
    .chat-container {
        width: 300px;
        height: 400px;
        right: -10px;
    }
}

:root {
    --primary-color: #2c3e50;    /* Deep navy */
    --secondary-color: #3498db;   /* Electric blue */
    --accent-color: #c0392b;      /* Deep red */
    --text-color: #2c3e50;        /* Dark blue-gray */
    --light-bg: #f5f6fa;          /* Light gray-blue */
    --gold: #c4a047;              /* Subtle gold */
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.info-card li {
    margin-bottom: 0.5rem;
}

/* Add wave animation for EMF visualization */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(52, 152, 219, 0.1),
        rgba(52, 152, 219, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Product Specific Styles */
.hero-text {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Make YouTube Shorts video container expand with browser width */
.video-container {
    width: min(90vw, 400px) !important; /* Use viewport width with max limit */
    max-width: none !important; /* Remove fixed max-width restriction */
    margin: 0 auto 20px !important;
    position: relative !important;
    padding-bottom: calc(min(90vw, 400px) * 1.67) !important; /* Maintain aspect ratio */
    height: 0 !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Media queries for responsive video sizes */
@media (min-width: 576px) {
    .video-container {
        width: min(80vw, 450px) !important;
        padding-bottom: calc(min(80vw, 450px) * 1.67) !important;
    }
}

@media (min-width: 992px) {
    .video-container {
        width: min(50vw, 500px) !important;
        padding-bottom: calc(min(50vw, 500px) * 1.67) !important;
    }
}

@media (min-width: 1400px) {
    .video-container {
        width: min(40vw, 550px) !important;
        padding-bottom: calc(min(40vw, 550px) * 1.67) !important;
    }
}

/* Remove video controls CSS since we no longer need them */
.video-controls {
    display: none; /* Hide the entire controls container */
}

/* Also hide the volume toggle button */
.volume-toggle-button {
    display: none;
}

/* Improved mobile unmute button - less intrusive */
.mobile-unmute-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    z-index: 10;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mobile-unmute-button:hover {
    opacity: 1;
}

/* Remove all styles related to the YouTube button */
.youtube-link {
    display: none;
}

/* Desktop-specific layout - keep video centered */
@media (min-width: 992px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    
    .video-container {
        flex: 0 0 45%;
        margin-right: 20px;
    }
    
    .hero-text {
        flex: 0 0 45%;
        text-align: left;
        padding-top: 0;
    }
    
    .hero h1 {
        text-align: left;
    }
    
    .hero p {
        text-align: left;
    }
    
    .hero-text .benefits {
        margin: 0;
        text-align: left;
    }
    
    .hero-text .cta-button {
        margin-left: 0;
    }
}

/* Extra large screens - keep portrait ratio but allow slightly wider */
@media (min-width: 1400px) {
    .video-container {
        max-width: 500px !important; /* Slightly wider but still portrait */
    }
    
    .hero-content {
        max-width: 1400px;
    }
    
    .video-container {
        flex: 0 0 40%;
    }
    
    .hero-text {
        flex: 0 0 50%;
        padding-left: 30px;
    }
}

.product-image {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

/* Pricing Box */
.pricing-box {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.price {
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 30px 0;
    letter-spacing: -2px;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    padding: 0 2rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.buy-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-button:hover {
    background: var(--primary-color);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin-bottom: 2rem;
        max-width: 280px;
    }
}

/* Chat Section Styles */
.chat-section {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 1000;
}

.chat-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-container {
    position: absolute;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    max-height: 70vh;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: height 0.3s ease, width 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1001;
}

.chat-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-container.minimized {
    height: 50px !important;
    overflow: hidden;
}

.chat-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border-radius: 10px 10px 0 0;
}

#chat-close, #chat-minimize {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.chat-controls {
    display: flex;
    align-items: center;
}

.chat-messages {
    flex: 1;
    padding: 8px !important;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: calc(100% - 110px) !important;
    max-height: calc(65vh - 110px) !important;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 18px;
    line-height: 1.4;
}

.message.bot {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background-color: #3498db;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message.typing {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 3px;
    animation: typing 1.5s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}

.chat-input {
    display: flex;
    padding: 8px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    height: 40px;
    font-size: 14px;
}

.chat-send-button {
    position: relative;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px; /* Prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1002;
}

.chat-send-button:hover {
    background: #005999;
}

.chat-send-button i {
    font-size: 14px;
}

/* Premium Features Section */
.premium-features {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 100px 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Update testimonials section */
.testimonials {
    background: var(--light-bg);
    padding: 80px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; /* Make sure all testimonials are visible */
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Remove any styles for hidden testimonials since all are now visible */
.testimonial.hidden {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Add premium animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-card, .pricing-box, .testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced typography */
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Fix reCAPTCHA display */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.g-recaptcha > div {
    margin: 0 auto;
}

/* Make sure reCAPTCHA is visible on mobile */
@media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* Order Success Page Styling */
.order-success {
    background: var(--light-bg);
    min-height: 100vh;
    padding: 100px 0;
}

.success-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.order-details, .shipping-info {
    margin: 30px 0;
    text-align: left;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.order-info {
    margin-top: 15px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-row:last-child {
    border-bottom: none;
}

.status-completed {
    color: #2ecc71;
    font-weight: bold;
}

.next-steps {
    padding-left: 20px;
    margin: 15px 0;
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.support-note {
    margin-top: 20px;
    font-style: italic;
}

.support-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.support-note a:hover {
    text-decoration: underline;
}

/* Add highlight pulse animation for pricing box */
@keyframes highlightPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.highlight-pulse {
    animation: highlightPulse 2s ease-out;
    border-color: var(--secondary-color);
}

/* Add distinctive styling for the hero buy button */
.hero-buy-button {
    background-color: #e74c3c !important; /* Bright red */
    color: white !important;
    font-weight: bold !important;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4) !important;
    animation: pulse-red 2s infinite !important;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    }
}

.hero-buy-button:hover {
    background-color: #c0392b !important; /* Darker red on hover */
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5) !important;
}

/* Enhanced Key Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 5px solid #3498db;
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #3498db;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Remove notification dot after click */
.chat-toggle.notification-read::after {
    display: none;
}

/* Tax information styling */
.tax-info {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.total-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Enhanced Product Gallery Styles */
.product-images-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #f7f9fc, #fff);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-images-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Featured image container - single image display */
.featured-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.featured-image-container img {
    max-width: 100%;
    max-height: 270px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Thumbnail gallery styling */
.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.thumbnail-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.thumbnail.active {
    border-color: #3498db;
    transform: scale(1.05);
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive layout - two-column for desktop */
@media (min-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .featured-image-container {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        margin-bottom: 15px;
    }
    
    .thumbnail-gallery {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .product-description {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Mobile layout */
@media (max-width: 767px) {
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-image-container {
        height: 250px;
    }
    
    .featured-image-container img {
        max-height: 220px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Compact testimonials styling */
.testimonials-grid {
    max-width: 600px;
    margin: 0 auto;
    max-height: 300px; /* Compact height */
    overflow-y: auto;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f0f0f0;
    display: block; /* Change from grid to block for compact layout */
}

.testimonial-card {
    background: white;
    padding: 1rem; /* Reduced padding */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 0.75rem; /* Reduced margin */
}

.testimonial-content {
    margin-bottom: 0.5rem; /* Reduced margin */
    font-size: 0.9rem; /* Smaller font */
    line-height: 1.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
}

.testimonial-author img {
    width: 30px; /* Smaller image */
    height: 30px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 0.8rem; /* Smaller font */
}

.testimonial-author p {
    margin: 0;
    font-size: 0.7rem; /* Smaller font */
    color: #666;
}

/* Remove view more button */
#view-more-testimonials {
    display: none;
}

/* No hidden testimonials - all visible */
.testimonial-card.hidden {
    display: block;
}

/* Form Success Message Styles */
.success-message {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.success-message .success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.success-message p {
    color: #555;
    margin-bottom: 10px;
}

.send-another-btn {
    background-color: #0070ba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.send-another-btn:hover {
    background-color: #005999;
}

/* Chat widget positioning */
.chat-widget {
    bottom: 20px !important; /* Back to original bottom position */
}

.chat-button {
    bottom: 20px !important; /* Back to original bottom position */
    right: 20px !important;
}

/* Reposition chat container to align with new button position */
.chat-container {
    width: 300px !important;
    height: 400px !important;
    max-height: 70vh !important;
    right: 20px !important;
    bottom: 90px !important;  /* Move it higher to prevent overlap */
    z-index: 1001; /* Ensure proper layering */
}

.chat-messages {
    height: calc(100% - 110px) !important;
    max-height: calc(65vh - 110px) !important; /* Reduce max height */
}

/* Optional: make fonts slightly smaller to fit reduced size */
.chat-header h3 {
    font-size: 16px !important;
}

.chat-message {
    font-size: 14px !important;
    padding: 8px 12px !important;
    margin-bottom: 8px !important;
}

/* Chat input with button styling - fix button overlap */
.input-with-button {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 8px;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    height: 40px;
    font-size: 14px;
}

.chat-send-button {
    position: relative;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px; /* Prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1002;
}

.chat-send-button:hover {
    background: #005999;
}

.chat-send-button i {
    font-size: 14px;
} 