/* ============================================
   PRINTU WEBSITE STYLES
   Brand Colors:
   - Background: #FFF1ED
   - Primary: #FF8197
   - Accent: #374B73
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #FFF1ED;
    --primary: #FF8197;
    --accent: #374B73;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #ff6680;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
}

.btn-nav:hover {
    background-color: #ff6680;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.logo-highlight {
    color: var(--primary);
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffe4e0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

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

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
    border-radius: 20px;
    padding: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.hero-image-placeholder i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-image-placeholder i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */
.featured-work {
    padding: 80px 0;
    background-color: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.work-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.work-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 100%);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 129, 151, 0.1);
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
}

.placeholder-img i {
    font-size: 4rem;
    color: var(--white);
}

.work-content {
    padding: 25px;
}

.work-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.work-content p {
    color: var(--text-medium);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-author strong {
    color: var(--accent);
    font-size: 1.1rem;
}

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

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

.indiamart-rating {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    font-size: 1.1rem;
}

/* ============================================
   TRUSTED BRANDS SECTION
   ============================================ */
.trusted-brands {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.brands-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-scroll {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate items for seamless scroll - handled by duplicating in JS or manually */
.brands-scroll::after {
    content: '';
    position: absolute;
    width: 100%;
}

.brand-logo-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-placeholder {
    text-align: center;
    color: var(--text-light);
}

.brand-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.brand-placeholder p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.brands-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.brands-note code {
    background-color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--accent);
}

/* Legacy grid styles - kept for backwards compatibility */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.brand-card p {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--accent) 0%, #4a6399 100%);
    border-radius: 20px;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: var(--white);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.about-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.about-item h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.about-item p {
    color: var(--text-medium);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #4a6399 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--bg-light);
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--accent);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--bg-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--bg-light);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-rating {
    background-color: rgba(255, 129, 151, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

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

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #4a6399 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.product-section {
    padding: 80px 0;
}

.product-section.alt-bg {
    background-color: var(--bg-light);
}

.product-header {
    margin-bottom: 50px;
}

.product-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-title i {
    font-size: 3rem;
    color: var(--primary);
}

.product-title h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.product-title p {
    color: var(--text-medium);
    font-size: 1rem;
}

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

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

.product-section.alt-bg .product-card {
    background-color: var(--white);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 75%;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.premium {
    background-color: #ffc107;
    color: var(--accent);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
}

.product-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

.product-variants {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.variant-label {
    color: var(--accent);
    font-weight: 600;
    margin-right: 5px;
}

.product-variants span:last-child {
    color: var(--text-medium);
}

.packaging-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.packaging-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.packaging-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.packaging-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.packaging-card i {
    font-size: 3rem;
    color: var(--primary);
}

.packaging-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.packaging-card p {
    color: var(--text-medium);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

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

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.contact-info-card p a {
    color: var(--primary);
    font-weight: 600;
}

.contact-info-card p a:hover {
    text-decoration: underline;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.quote-intro h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.quote-intro p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-medium);
}

.quote-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-medium);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 80px 0;
    background-color: var(--white);
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--accent);
}

.map-description {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

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

.location-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.location-item i {
    font-size: 2rem;
    color: var(--primary);
}

.location-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.location-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.why-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-medium);
}

/* ============================================
   IMAGE STYLES
   ============================================ */

/* Logo styles with SVG support and fallback */
.logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

.logo-text-fallback {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Hide fallback by default, show when image fails */
.logo a {
    display: block;
}

.logo-image:not([style*="display: none"]) ~ .logo-text-fallback {
    display: none;
}

/* Original placeholder images for product sections */
.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
}

.placeholder-img i {
    font-size: 4rem;
    color: var(--white);
}

/* When images are added, they will fit perfectly */
.work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
}

/* About section image */
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--accent) 0%, #4a6399 100%);
    border-radius: 20px;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: var(--white);
}

/* Hero image placeholder */
.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6680 100%);
    border-radius: 20px;
    padding: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.hero-image-placeholder i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-image-placeholder i:nth-child(3) {
    animation-delay: 1s;
}

/* Footer logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-logo-image {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Hide fallback by default, show when image fails */
.footer-logo-image:not([style*="display: none"]) ~ .footer-logo-text {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-placeholder {
        padding: 40px 20px;
        gap: 20px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-image-placeholder i {
        font-size: 2.5rem;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        min-height: auto;
    }
    
    .hero-image-grid img {
        height: 180px;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        min-height: auto;
    }
    
    .hero-image-grid img {
        height: 180px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .logo-image {
        max-height: 45px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .work-image {
        height: 250px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .quote-form-container {
        padding: 25px;
    }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.faq-item h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.faq-item h3 i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
}

/* ============================================
   LOADING ANIMATION & LAZY LOADING
   ============================================ */

/* Page Loading Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 129, 151, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loader-text {
    margin-top: 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lazy Loading Image Styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Skeleton Loading for Images */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   POLICY PAGES STYLES
   ============================================ */

.policy-section {
    padding: 100px 0 80px;
    background-color: var(--white);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.policy-date {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.policy-block h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.policy-block h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-block ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-block ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-block ul li strong {
    color: var(--accent);
}

.contact-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-top: 15px;
}

.contact-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box i {
    color: var(--primary);
    width: 20px;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.acknowledgment {
    text-align: center;
    font-size: 1.05rem;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 100%);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-block {
        padding: 20px;
    }
    
    .policy-block h2 {
        font-size: 1.3rem;
    }
}
