/* Base Styles Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Scheme: Cream White, Gold, Sapphire Blue */
    --cream-white: #FAF8F3;
    --cream-light: #FFFEF9;
    --cream-dark: #F5F0E8;
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --gold-dark: #B8960C;
    --sapphire: #1E3A5F;
    --sapphire-light: #2E5A8F;
    --sapphire-dark: #0F1F33;
    
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-white: #FFFFFF;
    --border-color: #E8E4DC;
    --shadow: 0 2px 15px rgba(30, 58, 95, 0.08);
    --shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-white);
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sapphire);
    font-weight: 700;
    font-size: 1.4rem;
}

.logo {
    font-size: 2rem;
    margin-right: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--sapphire);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sapphire);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section - Banner Design */
.hero {
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--cream-light) 50%, var(--cream-dark) 100%);
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Islamic Geometric Pattern Background */
.hero-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.islamic-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    background-size: 100% 100%;
}

.islamic-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.islamic-pattern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    animation: rotate 45s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(250, 248, 243, 0.3) 0%, rgba(255, 254, 249, 0.2) 50%, rgba(245, 240, 232, 0.3) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 190,190 10,190" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></svg>');
    background-size: 100% 100%, 150px 150px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    color: var(--text-dark);
    padding: 60px 0;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--sapphire);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--sapphire);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stats .stat-icon {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn svg {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover svg {
    transform: translateX(4px);
}

/* Hero Visual - Product Showcase */
.hero-visual {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prayer-rug-showcase {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.rug-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.15);
    transition: transform 0.3s ease;
    width: 140px;
}

.rug-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.rug-card-1 {
    transform: rotate(-3deg);
}

.rug-card-2 {
    transform: translateY(-20px);
}

.rug-card-3 {
    transform: rotate(3deg);
}

.rug-img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.rug-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sapphire);
    margin-top: 10px;
}

/* Button Styles Enhancement */
.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--sapphire-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--sapphire);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--sapphire-dark);
}

.btn-outline {
    background: transparent;
    color: var(--sapphire);
    border: 2px solid var(--sapphire);
}

.btn-outline:hover {
    background: var(--sapphire);
    color: white;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 55px;
    color: var(--sapphire);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--cream-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: var(--sapphire);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Preview */
.products-preview {
    padding: 100px 0;
    background: var(--cream-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 55px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.product-image {
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sapphire-light) 0%, var(--sapphire) 100%);
    color: var(--cream-white);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--sapphire);
}

.product-desc {
    color: var(--text-light);
    margin-bottom: 18px;
}

.product-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--sapphire-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Stats Section */
.stats {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-white) 100%);
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 45px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.stat-icon {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--cream-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--gold);
}

.testimonial-content {
    margin-bottom: 28px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--sapphire);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-white) 100%);
    color: var(--text-dark);
    text-align: center;
    border-top: 2px solid var(--gold);
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 22px;
    color: var(--sapphire);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-dark) 100%);
    color: white;
    padding: 70px 0 35px;
}

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

.footer-brand .logo {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--gold);
}

.footer-brand p {
    color: #aaa;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 22px;
    color: var(--gold);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact li {
    color: #aaa;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--sapphire-dark);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-white) 100%);
    padding: 130px 0 90px;
    text-align: center;
    color: var(--text-dark);
    border-bottom: 2px solid var(--gold);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--sapphire);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.page-content {
    padding: 90px 0;
    background: var(--cream-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Product Images */
.product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    display: block;
}

.product-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: var(--cream-light);
}

/* Hero Rug Images */
.rug-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Quick Contact Section */
.quick-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--cream-dark) 100%);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-contact-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.quick-contact-card.whatsapp {
    border-color: #25D366;
}

.quick-contact-card.whatsapp:hover {
    background: linear-gradient(135deg, #25D36615 0%, #25D36605 100%);
}

.quick-contact-card.email {
    border-color: var(--gold);
}

.quick-contact-card.email:hover {
    background: linear-gradient(135deg, var(--gold-light)15 0%, var(--gold)05 100%);
}

.quick-contact-card.alibaba {
    border-color: #FF6A00;
}

.quick-contact-card.alibaba:hover {
    background: linear-gradient(135deg, #FF6A0015 0%, #FF6A0005 100%);
}

.quick-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-contact-card h3 {
    font-size: 1.4rem;
    color: var(--sapphire);
    margin-bottom: 8px;
}

.quick-contact-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.quick-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--sapphire);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-contact-card:hover .quick-btn {
    background: var(--gold);
    color: var(--sapphire-dark);
}

/* Contact Page Enhancements */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--sapphire);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2::after,
.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 1.1rem;
    color: var(--sapphire);
    margin-bottom: 8px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.social-section h3 {
    font-size: 1.3rem;
    color: var(--sapphire);
    margin-bottom: 20px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: var(--cream-white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-card:hover {
    background: var(--sapphire);
    color: white;
    border-color: var(--sapphire);
    transform: translateY(-3px);
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form Styling */
.contact-form-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--sapphire);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cream-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* FAQ Section Enhancement */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--cream-dark) 100%);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--sapphire);
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== NEW CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-dark) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-stat {
    text-align: center;
}

.contact-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.contact-stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* Quick Contact Cards */
.quick-contact-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
}

.contact-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.whatsapp-card::before {
    background: #25D366;
}

.whatsapp-card {
    border-color: #25D366;
}

.whatsapp-card:hover {
    border-color: #25D366;
}

.email-card::before {
    background: var(--gold);
}

.email-card {
    border-color: var(--gold);
}

.alibaba-card::before {
    background: #FF6A00;
}

.alibaba-card {
    border-color: #FF6A00;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-card .contact-card-icon {
    background: linear-gradient(135deg, #25D36620 0%, #25D36610 100%);
    color: #25D366;
}

.email-card .contact-card-icon {
    background: linear-gradient(135deg, var(--gold-light)40 0%, var(--gold)20 100%);
    color: var(--gold-dark);
}

.alibaba-card .contact-card-icon {
    background: linear-gradient(135deg, #FF6A0020 0%, #FF6A0010 100%);
    color: #FF6A00;
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--sapphire);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card-info {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--sapphire);
    color: white;
}

.whatsapp-card:hover .contact-card-btn {
    background: #25D366;
}

.email-card:hover .contact-card-btn {
    background: var(--gold);
    color: var(--sapphire-dark);
}

.alibaba-card:hover .contact-card-btn {
    background: #FF6A00;
}

/* Main Contact Section */
.main-contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--cream-dark) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Panel */
.contact-info-panel {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
}

.contact-info-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.contact-info-header h2 {
    font-size: 1.8rem;
    color: var(--sapphire);
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--cream-white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: var(--cream-dark);
    transform: translateX(5px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.1rem;
    color: var(--sapphire);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-note {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.business-info {
    background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-dark) 100%);
    border-radius: 16px;
    padding: 25px;
    color: white;
}

.business-info h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.business-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.business-info li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.business-info li span {
    color: var(--gold);
    font-weight: 500;
}

/* Contact Form Panel */
.contact-form-panel {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--sapphire);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.inquiry-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 5px;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--sapphire);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream-white);
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: var(--sapphire);
    margin-bottom: 15px;
}

.faq-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-card {
    background: var(--cream-white);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    background: white;
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.1);
}

.faq-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.faq-card h3 {
    font-size: 1.15rem;
    color: var(--sapphire);
    margin-bottom: 15px;
    padding-right: 50px;
    font-weight: 600;
}

.faq-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-dark) 100%);
}

.cta-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--gold);
    color: var(--sapphire-dark);
    border-color: var(--gold);
}

.cta-buttons .btn-primary:hover {
    background: var(--gold-light);
}

.cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--sapphire);
    border-color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-faq .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-stats {
        gap: 30px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .inquiry-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-faq .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel,
    .contact-info-panel {
        padding: 30px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
}

/* About Page Images */
.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
