/* [file name]: styles.css */
/* Universal styles for Canopies by Litlu Mart website */

:root {
    --primary-blue: #1a73e8;
    --gradient-blue: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    --golden-orange: #FFA500;
    --light-golden: #FFB74D;
    --dark-blue: #0d47a1;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333745;
}

/* BODY AND TYPOGRAPHY */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

/* UTILITY CLASSES */
.gradient-bg {
    background: var(--gradient-blue);
}

.golden-bg {
    background-color: var(--golden-orange);
}

.golden-text {
    color: var(--golden-orange);
}

.blue-text {
    color: var(--primary-blue);
}

.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* NAVIGATION */
.navbar-brand img {
    height: 60px;
}

/* HERO SECTION */
.hero-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

/* BUTTONS */
.btn-golden {
    background-color: var(--golden-orange);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-golden:hover {
    background-color: var(--light-golden);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-golden {
    background-color: transparent;
    color: var(--golden-orange);
    border: 2px solid var(--golden-orange);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* SECTION TITLES */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--golden-orange);
}

/* PRODUCT CARDS */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
}

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

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

/* CAROUSEL */
.carousel-custom {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption-custom {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

/* CUSTOM FABRICATION SECTION */
.custom-fabrication {
    background-color: var(--light-gray);
    padding: 100px 0;
}

/* FEATURE ICONS */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* FOOTER */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--golden-orange);
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-orange);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #aaaaaa;
}

/* CTA SECTION */
.cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* PRICE LIST SPECIFIC STYLES */
.price-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-card.popular {
    border-color: var(--golden-orange);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
    transform: scale(1.02);
}

.price-badge {
    background: var(--gradient-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.price-feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.price-feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden-orange);
    font-weight: bold;
}

.location-price-table th {
    background: var(--gradient-blue);
    color: white;
}

.size-badge {
    background: #e8f4ff;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* CAR SHADES PAGE SPECIFIC */
.design-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.design-section:nth-child(even) {
    background-color: white;
}

.design-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.design-features {
    list-style: none;
    padding-left: 0;
}

.design-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.design-features li:before {
    content: '✓';
    color: var(--golden-orange);
    font-weight: bold;
    margin-right: 10px;
}

.carousel-caption-design {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.specs-table th {
    background-color: var(--primary-blue);
    color: white;
}

.design-advantage {
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* CONTACT MODAL SPECIFIC */
.modal-header {
    background: var(--gradient-blue);
    color: white;
}

.modal-title {
    font-weight: 600;
}

.required-label::after {
    content: " *";
    color: #dc3545;
}

.success-alert {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.error-alert {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-blue);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    background: var(--gradient-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.logo-icon i {
    font-size: 1.8rem;
    color: white;
}

.logo-text h4 {
    margin: 0;
    color: var(--dark-blue);
}

.logo-text small {
    color: #666;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-item img {
        height: 350px;
    }
    
    .price-card {
        margin-bottom: 20px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}