/* 
 * Formawell - Custom CSS Styles
 */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
}

a {
    color: #d4a35a;
    transition: all 0.3s ease;
}

a:hover {
    color: #b78a3f;
    text-decoration: none;
}

.btn-primary {
    background-color: #d4a35a;
    border-color: #d4a35a;
}

.btn-primary:hover {
    background-color: #b78a3f;
    border-color: #b78a3f;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d4a35a;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.logo img {
    max-height: 60px;
}

.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu li a {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu li.active a,
.nav-menu li a:hover {
    color: #d4a35a;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: relative;
    height: 100%;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
}

.slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Product Cards */
.product-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-top: 0;
    font-size: 18px;
}

.product-price {
    color: #d4a35a;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.testimonial-card:before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #f0f0f0;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-style: italic;
    text-align: right;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: #d4a35a;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: #d4a35a;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #aaa;
}

/* About Page */
.feature-box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 40px;
    color: #d4a35a;
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f0f0f0;
}

/* Products Page */
.product-sidebar {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.product-categories li:last-child {
    border-bottom: none;
}

.product-categories li a {
    cursor: pointer;
}

/* Product Detail Page */
.product-detail {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.product-features ul {
    padding-left: 20px;
}

.product-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.quantity {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.quantity label {
    margin-right: 10px;
    margin-bottom: 0;
}

.quantity input {
    width: 60px;
    text-align: center;
    padding: 5px;
}

.nav-tabs {
    margin-bottom: 20px;
}

.tab-content {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

/* Contact Page */
.contact-info {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #d4a35a;
    margin-right: 15px;
    margin-top: 3px;
}

.map-container {
    height: 450px;
    margin-top: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery Page */
.gallery-row {
    margin-top: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-page h1 {
    font-size: 120px;
    color: #d4a35a;
    margin-bottom: 0;
}

.error-page h2 {
    margin-bottom: 30px;
}

/* Form Messages */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .main-navigation {
        position: relative;
    }
    
    .logo {
        text-align: center;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-in-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-in-out;
}

.animate-slide-up {
    animation: slideInUp 1s ease-in-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Promotion Banner */
.promotion-banner {
    background: linear-gradient(135deg, #d4a35a 0%, #b78a3f 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-banner h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    display: inline-block;
}

.promotion-banner .btn {
    margin-left: 20px;
    background-color: white;
    color: #d4a35a;
    border: none;
    transition: all 0.3s ease;
}

.promotion-banner .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.promotion-banner .close-promotion {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    cursor: pointer;
    font-size: 20px;
}

/* Improved Product Cards */
.product-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4a35a;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 163, 90, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* Featured Product */
.featured-product {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.featured-product-content {
    padding: 40px;
}

.featured-product h2 {
    color: #d4a35a;
    margin-bottom: 20px;
}

.featured-product-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.featured-badge {
    display: inline-block;
    background-color: #d4a35a;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #d4a35a;
    margin: 15px 0;
}

.features-list {
    margin: 20px 0;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
}

.features-list li:before {
    content: '✓';
    color: #d4a35a;
    position: absolute;
    left: -20px;
}

/* Testimonial Improvements */
.testimonial-card {
    transition: all 0.3s ease;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: bold;
    margin: 0;
}

.testimonial-author-title {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    min-width: 60px;
}

.countdown-number {
    background-color: #d4a35a;
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    width: 60px;
    text-align: center;
}

.countdown-label {
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}

/* Treatment Process Styles */
.treatment-steps {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.treatment-step {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.treatment-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.treatment-step h4 {
    color: #d4a35a;
    font-size: 16px;
    margin-bottom: 5px;
}

.treatment-step p {
    font-size: 13px;
    margin-bottom: 0;
}

.treatment-process {
    max-width: 800px;
    margin: 0 auto;
}

.treatment-step-full {
    display: flex;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.treatment-step-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: #d4a35a;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 20px;
}

.step-content {
    padding: 20px;
}

.step-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
}

/* Policies Page */
.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #d4a35a;
    margin-bottom: 20px;
    font-size: 24px;
}

.policy-section p {
    margin-bottom: 15px;
}

/* Tradeshows Section */
.tradeshow-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tradeshow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tradeshow-item h3 {
    color: #d4a35a;
    margin-bottom: 10px;
}

.tradeshow-item p {
    margin-bottom: 5px;
    color: #666;
}

.tradeshow-item .date {
    font-weight: bold;
    color: #333;
}

.tradeshow-item .location {
    font-style: italic;
}

/* Carousel Styles */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    margin: 0 auto;
    bottom: 20%;
}

.carousel-caption h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 24px;
    margin-bottom: 30px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 991px) {
    .carousel-item {
        height: 500px;
    }
    
    .carousel-caption h2 {
        font-size: 36px;
    }
    
    .carousel-caption p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 28px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
}

/* Founders Image */
.founders-image {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
