/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #eaeaea;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #a0a0a0, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    animation: logo-sheen 6s linear infinite, logo-glow 3s ease-in-out infinite;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 12px rgba(192, 192, 192, 0.3);
}

.nav-logo h1:hover {
    transform: translateY(-1px);
    text-shadow: 0 0 16px rgba(192, 192, 192, 0.4);
}

/* Logo image fitting and effects */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 1;
}

.nav-logo h1 img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
    transition: transform 300ms ease, filter 300ms ease;
}

.nav-logo:hover h1 img {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45)) drop-shadow(0 0 8px rgba(192,192,192,0.25));
}

/* Animated sheen over the logo image */
.nav-logo h1::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 40%;
    height: 140%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    filter: blur(0.5px);
    animation: logo-sheen-img 4.5s ease-in-out infinite;
}

@keyframes logo-sheen-img {
    0% { left: -50%; opacity: 0; }
    10% { opacity: 0.7; }
    50% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
}

@media (max-width: 768px) {
    .nav-logo h1 img { height: 36px; }
}

@media (max-width: 480px) {
    .nav-logo h1 img { height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    .nav-logo h1::after { animation: none; }
    .nav-logo h1 img { transition: none; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #c0c0c0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(192,192,192,0.9), rgba(192,192,192,0.5));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

@keyframes logo-sheen {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes logo-glow {
    0% { text-shadow: 0 0 8px rgba(192, 192, 192, 0.2); }
    50% { text-shadow: 0 0 20px rgba(192, 192, 192, 0.4); }
    100% { text-shadow: 0 0 8px rgba(192, 192, 192, 0.2); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient( circle at 20% 20%, rgba(192,192,192,0.08), transparent 40%),
                radial-gradient( circle at 80% 0%, rgba(160,160,160,0.06), transparent 35%),
                linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.25;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-content {
        margin-left: 8vw;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 0 2px 20px rgba(192, 192, 192, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-stores {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.store-badge {
    background: rgba(192,192,192,0.1);
    color: #f1f1f1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192,192,192,0.3);
}

.cta-button {
    display: inline-block;
    background: rgba(192,192,192,0.1);
    color: #c0c0c0;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(192,192,192,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    background: rgba(192,192,192,0.15);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: relative;
    width: 400px;
    height: 400px;
}

.card {
    position: absolute;
    background: rgba(192,192,192,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(192,192,192,0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: #f5f5f5;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #c0c0c0;
}

.card span {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stores Section */
.stores {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f3f3f3;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.store-card {
    background: rgba(192,192,192,0.06);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(192,192,192,0.2);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(192,192,192,0.7), rgba(192,192,192,0.25));
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.store-icon {
    width: 80px;
    height: 80px;
    background: rgba(192,192,192,0.15);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.store-icon i {
    font-size: 2rem;
    color: #c0c0c0;
}

.store-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f3f3f3;
}

.store-card p {
    color: #bdbdbd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.store-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.store-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cfcfcf;
    font-size: 0.9rem;
}

.store-features i {
    color: #33d17a;
}

.store-link {
    display: inline-block;
    background: rgba(192,192,192,0.1);
    color: #c0c0c0;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(192,192,192,0.3);
}

.store-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(192, 192, 192, 0.2);
    background: rgba(192,192,192,0.15);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f3f3f3;
}

.about-text p {
    font-size: 1.1rem;
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cfcfcf;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 400px;
}

.image-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.image-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,215,0,0.06));
}

.image-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.image-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
}

.image-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #c0c0c0;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f3f3f3;
}

.contact-item p {
    color: #cfcfcf;
    line-height: 1.6;
}

.contact-form {
    background: rgba(192,192,192,0.06);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(192,192,192,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(192,192,192,0.06);
    color: #f1f1f1;
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdbdbd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(192,192,192,0.5);
    background: rgba(192,192,192,0.08);
}

.submit-btn {
    width: 100%;
    background: rgba(192,192,192,0.15);
    color: #c0c0c0;
    padding: 1rem;
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(192, 192, 192, 0.2);
    background: rgba(192,192,192,0.2);
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(192,192,192,0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fafafa;
}

.footer-section p {
    color: #cfcfcf;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c0c0c0;
}

.footer-section ul li a i {
    margin-right: 0.5rem;
    width: 16px;
    color: #c0c0c0;
    opacity: 0.8;
}

/* Newsletter Form */
.newsletter-form {
    margin: 1rem 0;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 8px;
    color: #f1f1f1;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-input input::placeholder {
    color: #bdbdbd;
}

.newsletter-input input:focus {
    outline: none;
    border-color: rgba(192,192,192,0.5);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: rgba(192,192,192,0.15);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 8px;
    color: #c0c0c0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(192,192,192,0.25);
    transform: translateY(-1px);
}

/* Special Offers */
.special-offers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.offer-item:hover {
    background: rgba(192,192,192,0.08);
    border-color: rgba(192,192,192,0.3);
    transform: translateX(5px);
}

.offer-item i {
    color: #c0c0c0;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.offer-item span {
    color: #cfcfcf;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(192,192,192,0.08);
    color: #c0c0c0;
    text-align: center;
    line-height: 40px;
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(192,192,192,0.15);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192,192,192,0.2);
    color: #bdbdbd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 16, 0.8);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255,215,0,0.18);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.25);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stores {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-cards {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .store-card {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
} 

/* Floating Audio Control */
.audio-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(192,192,192,0.3);
    background: rgba(192,192,192,0.08);
    color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 1100;
}

.audio-toggle:hover {
    transform: translateY(-3px);
    background: rgba(192,192,192,0.15);
}

.audio-toggle.active {
    background: rgba(192,192,192,0.2);
    box-shadow: 0 12px 24px rgba(192,192,192,0.25);
}

.audio-toggle i { pointer-events: none; } 

/* About: feature badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 2rem;
}

.feature-badges .feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(192,192,192,0.08);
    border: 1px solid rgba(192,192,192,0.3);
    color: #e9e9e9;
    font-weight: 500;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.feature-badges .feature i {
    color: #c0c0c0;
}

/* About: info cards */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 992px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    background: rgba(192,192,192,0.08);
}

.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(192,192,192,0.15);
    border: 1px solid rgba(192,192,192,0.3);
}

.info-icon i {
    color: #c0c0c0;
    font-size: 1.2rem;
}

.info-card h4 {
    color: #f3f3f3;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-card p {
    color: #cfcfcf;
}

.values {
    margin-top: 0.25rem;
    margin-left: 1rem;
    color: #cfcfcf;
}

.values li {
    margin: 0.25rem 0;
}

/* Improve About layout spacing on small screens */
@media (max-width: 768px) {
    .about-content {
        gap: 1.5rem;
    }
} 

/* Testimonials */
.testimonials {
    padding: 90px 0;
    background: rgba(255,255,255,0.02);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    background: rgba(192,192,192,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(192,192,192,0.2);
    border: 1px solid rgba(192,192,192,0.3);
    color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card h4 {
    color: #f3f3f3;
    font-weight: 700;
}

.stars {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #cfcfcf;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .testimonial-grid {
        gap: 1rem;
    }
} 

/* FAQ Section */
.faq {
    padding: 90px 0;
    background: rgba(255,255,255,0.02);
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: rgba(192,192,192,0.06);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(192,192,192,0.08);
    border-color: rgba(192,192,192,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(192,192,192,0.08);
}

.faq-question h3 {
    color: #f3f3f3;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #c0c0c0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #cfcfcf;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        margin-top: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Navbar logo image */
 