/* ============================================================================
   Awish Interiors - Modern Premium Stylesheet
   Luxury Gold & Dark Theme with Animations
   ============================================================================ */

/* -------------------------------------------------------------------------- */
/*                                CSS VARIABLES                               */
/* -------------------------------------------------------------------------- */
:root {
    /* Primary Colors - Pink & Red Brand Theme */
    --primary: #E65E80;
    --primary-dark: #C22139;
    --primary-light: #F07898;
    --secondary: #1C1C1C;
    --secondary-light: #3D3D3D;
    --secondary-dark: #0D0D0D;
    --accent: #C22139;
    --white: #FFFFFF;
    --off-white: #F9F6F7;
    --light-gray: #F0EDE8;
    --gray: #D4CFC9;
    --dark-gray: #5C5C5C;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #FFFFFF;
    --success: #2E8B57;
    --error: #C22139;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-pink: 0 4px 20px rgba(230, 94, 128, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* -------------------------------------------------------------------------- */
/*                                   RESET                                    */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* -------------------------------------------------------------------------- */
/*                                UTILITIES                                   */
/* -------------------------------------------------------------------------- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { display: inline-block; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 10px; }
.section-header h2 { font-size: 42px; margin-bottom: 15px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* -------------------------------------------------------------------------- */
/*                              ANIMATIONS                                     */
/* -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* -------------------------------------------------------------------------- */
/*                                 BUTTONS                                    */
/* -------------------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-family: var(--font-heading); font-size: 15px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-pink); }
.btn-secondary { background: var(--secondary); color: var(--white); border: 2px solid var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-outline-dark:hover { background: var(--secondary); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* -------------------------------------------------------------------------- */
/*                                TOP BAR                                     */
/* -------------------------------------------------------------------------- */
.top-bar { background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: var(--text-light); padding: 10px 0; font-size: 14px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 25px; }
.top-bar a { display: flex; align-items: center; gap: 8px; color: var(--text-light); opacity: 0.9; }
.top-bar a:hover { opacity: 1; color: var(--primary); }
.top-bar-right a { font-size: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.top-bar-right a:hover { background: var(--primary); }

/* -------------------------------------------------------------------------- */
/*                                 HEADER                                     */
/* -------------------------------------------------------------------------- */
.main-header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); }
.main-header.scrolled { box-shadow: var(--shadow-md); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.logo img { height: 55px; width: auto; transition: var(--transition); }
.logo:hover img { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }
.nav-link { font-family: var(--font-heading); font-size: 15px; font-weight: 500; color: var(--text-primary); padding: 10px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.has-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); padding: 10px 0; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 20px; font-size: 14px; color: var(--text-primary); }
.dropdown-menu li a:hover { background: var(--primary); color: var(--white); padding-left: 25px; }
.btn-calculator { background: var(--primary); color: var(--white) !important; padding: 10px 20px !important; border-radius: 8px; }
.btn-calculator:hover { background: var(--primary-dark); }
.nav-client-btn { display:flex !important; align-items:center; gap:6px; background:transparent; border:2px solid var(--primary); color:var(--primary) !important; padding:8px 16px !important; border-radius:8px; font-weight:600; font-size:13px; transition:all .2s; }
.nav-client-btn:hover { background:var(--primary); color:var(--white) !important; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--secondary); transition: var(--transition); }

/* -------------------------------------------------------------------------- */
/*                                  HERO                                      */
/* -------------------------------------------------------------------------- */
.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-slider { height: 100%; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--white); max-width: 800px; padding: 0 20px; z-index: 10; }
.hero-content h1 { font-size: 56px; font-weight: 700; margin-bottom: 20px; animation: fadeInUp 0.8s ease forwards; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-content p { font-size: 20px; margin-bottom: 35px; opacity: 0.9; animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 20; }
.hero-prev, .hero-next { width: 50px; height: 50px; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
.hero-prev:hover, .hero-next:hover { background: var(--primary); transform: scale(1.1); }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--primary); width: 30px; border-radius: 10px; }

/* -------------------------------------------------------------------------- */
/*                           TRUST BADGES                                      */
/* -------------------------------------------------------------------------- */
.trust-badges { background: var(--secondary); padding: 40px 0; margin-top: -1px; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.badge-item { display: flex; align-items: center; gap: 15px; color: var(--white); padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; transition: var(--transition); }
.badge-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.badge-item i { font-size: 36px; color: var(--primary); animation: float 3s ease-in-out infinite; }
.badge-item strong { display: block; font-family: var(--font-heading); font-size: 18px; }
.badge-item span { font-size: 13px; opacity: 0.8; }

/* -------------------------------------------------------------------------- */
/*                                SERVICES                                     */
/* -------------------------------------------------------------------------- */
.services-section { padding: 100px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 16px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; box-shadow: var(--shadow-pink); }
.service-icon i { font-size: 32px; color: var(--white); }
.service-card h3 { font-size: 22px; margin-bottom: 15px; }
.service-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 15px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.service-link:hover { gap: 12px; color: var(--primary-dark); }

/* -------------------------------------------------------------------------- */
/*                            WHY CHOOSE US                                    */
/* -------------------------------------------------------------------------- */
.why-choose-section { padding: 100px 0; background: var(--white); }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-choose-content h2 { font-size: 42px; margin-bottom: 20px; }
.why-choose-content > p { color: var(--text-secondary); font-size: 17px; margin-bottom: 30px; }
.why-choose-list { margin-bottom: 35px; }
.why-choose-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.why-choose-list li i { color: var(--primary); font-size: 20px; margin-top: 3px; background: rgba(201, 169, 98, 0.1); padding: 10px; border-radius: 50%; }
.why-choose-list li strong { display: block; font-family: var(--font-heading); font-size: 16px; }
.why-choose-list li span { font-size: 14px; color: var(--text-secondary); }
.why-choose-buttons { display: flex; gap: 15px; }
.why-choose-image { position: relative; }
.why-choose-image img { border-radius: 16px; box-shadow: var(--shadow-lg); }
.why-choose-image::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; border: 3px solid var(--primary); border-radius: 16px; z-index: -1; }
.experience-badge { position: absolute; bottom: 30px; right: -30px; background: var(--primary); color: var(--white); padding: 25px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-pink); animation: float 3s ease-in-out infinite; }
.experience-badge .years { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 700; line-height: 1; }
.experience-badge .text { font-size: 14px; opacity: 0.9; }

/* -------------------------------------------------------------------------- */
/*                                PROJECTS                                     */
/* -------------------------------------------------------------------------- */
.projects-section { padding: 100px 0; background: var(--light-gray); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: var(--transition); }
.project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.project-image { position: relative; height: 280px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-image img { transform: scale(1.15); }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; justify-content: center; padding: 20px; opacity: 0; transition: var(--transition); }
.project-card:hover .project-overlay { opacity: 1; }
.view-project { background: var(--primary); color: var(--white); padding: 12px 25px; border-radius: 8px; font-weight: 600; }
.project-info { padding: 25px; }
.project-info h3 { font-size: 20px; margin-bottom: 8px; }
.project-info p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
.project-budget { display: inline-block; background: var(--primary); color: var(--white); padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; }

/* -------------------------------------------------------------------------- */
/*                               TESTIMONIALS                                 */
/* -------------------------------------------------------------------------- */
.testimonials-section { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); }
.testimonials-section .section-subtitle, .testimonials-section h2, .testimonials-section p { color: var(--white); }
.testimonials-section p { color: rgba(255,255,255,0.8); }
.testimonials-slider { display: flex; gap: 30px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; }
.testimonials-slider::-webkit-scrollbar { height: 6px; }
.testimonials-slider::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 3px; }
.testimonials-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.testimonial-card { min-width: 400px; background: var(--white); padding: 35px; border-radius: 16px; scroll-snap-align: start; }
.testimonial-rating { margin-bottom: 20px; }
.testimonial-rating i { color: #FFD700; font-size: 16px; }
.testimonial-text { font-size: 17px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 25px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; font-weight: 600; }
.author-info h4 { font-size: 17px; margin-bottom: 3px; }
.author-info span { font-size: 14px; color: var(--text-secondary); }

/* -------------------------------------------------------------------------- */
/*                                  CTA                                        */
/* -------------------------------------------------------------------------- */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: rotate 20s linear infinite; }
.cta-content { text-align: center; color: var(--white); position: relative; z-index: 1; }
.cta-content h2 { font-size: 42px; margin-bottom: 20px; }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.cta-buttons .btn-outline { border-color: var(--white); color: var(--white); }
.cta-buttons .btn-outline:hover { background: var(--white); color: var(--primary); }

/* -------------------------------------------------------------------------- */
/*                                  BLOG                                      */
/* -------------------------------------------------------------------------- */
.blog-section { padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.blog-image { height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-content { padding: 25px; }
.blog-category { display: inline-block; background: var(--primary); color: var(--white); padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; }
.blog-content h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.4; }
.blog-content h3 a:hover { color: var(--primary); }
.blog-content p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

/* -------------------------------------------------------------------------- */
/*                                 FOOTER                                     */
/* -------------------------------------------------------------------------- */
.main-footer { background: var(--secondary-dark); color: var(--white); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; }
.footer-about .footer-logo img { height: 50px; margin-bottom: 20px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 25px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-badges .badge { background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 6px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-badges .badge i { color: var(--primary); }
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--primary); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact i { color: var(--primary); font-size: 18px; margin-top: 3px; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
.footer-bottom { background: var(--secondary); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-bottom strong { color: var(--primary); }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* -------------------------------------------------------------------------- */
/*                              CHAT WIDGET                                   */
/* -------------------------------------------------------------------------- */
.chat-widget { position: relative; z-index: 9999; flex-shrink: 0; }
.chat-toggle { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: var(--shadow-lg); transition: var(--transition); cursor: pointer; animation: pulse 2s infinite; }
.chat-toggle:hover { transform: scale(1.1); }
.chat-badge { position: absolute; top: -5px; right: -5px; background: var(--error); color: var(--white); font-size: 11px; padding: 3px 8px; border-radius: 10px; font-weight: 600; }
.chat-window { position: absolute; bottom: 80px; right: 0; width: 380px; height: 500px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: var(--transition); }
.chat-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-radius: 16px 16px 0 0; }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-header-info img { width: 40px; height: 40px; border-radius: 50%; background: var(--white); padding: 2px; }
.chat-header-info h4 { font-size: 16px; color: var(--white); }
.chat-header-info span { font-size: 12px; opacity: 0.9; display: flex; align-items: center; gap: 5px; }
.online-dot { width: 8px; height: 8px; background: #00FF00; border-radius: 50%; display: inline-block; }
.chat-close { color: var(--white); font-size: 20px; opacity: 0.8; }
.chat-close:hover { opacity: 1; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.chat-message { display: flex; flex-direction: column; max-width: 85%; }
.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }
.message-content { background: var(--light-gray); padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.6; }
.chat-message.user .message-content { background: var(--primary); color: var(--white); border-bottom-right-radius: 4px; }
.chat-message.bot .message-content { border-bottom-left-radius: 4px; }
.message-time { font-size: 11px; color: var(--dark-gray); margin-top: 5px; }
.chat-message.user .message-time { text-align: right; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.quick-reply { background: var(--primary); color: var(--white); padding: 8px 15px; border-radius: 20px; font-size: 13px; transition: var(--transition); }
.quick-reply:hover { background: var(--primary-dark); }
.chat-input { display: flex; gap: 10px; padding: 15px; border-top: 1px solid var(--gray); }
.chat-input input { flex: 1; padding: 12px 15px; border: 1px solid var(--gray); border-radius: 8px; font-size: 14px; outline: none; }
.chat-input input:focus { border-color: var(--primary); }
.chat-send { width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.chat-send:hover { background: var(--primary-dark); }
.chat-typing { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 13px; color: var(--text-secondary); }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.4s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* -------------------------------------------------------------------------- */
/*                             SCROLL TOP                                     */
/* -------------------------------------------------------------------------- */
.scroll-top { position: fixed; bottom: 30px; left: 30px; width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 9998; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* -------------------------------------------------------------------------- */
/*                             RESPONSIVE                                     */
/* -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .hero-content h1 { font-size: 42px; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: 1fr; gap: 50px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-image::before { display: none; }
    .experience-badge { right: 0; }
}
@media (max-width: 767px) {
    .top-bar { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-menu { position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 80px 30px 30px; box-shadow: var(--shadow-lg); transition: var(--transition); }
    .nav-menu.active { left: 0; }
    .nav-item { width: 100%; }
    .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray); }
    .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 20px; }
    .hero { height: 70vh; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .section-header h2 { font-size: 32px; }
    .services-grid, .projects-grid, .blog-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 300px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .chat-window { width: calc(100vw - 40px); right: -10px; }
}

/* -------------------------------------------------------------------------- */
/*                            FORMS                                           */
/* -------------------------------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--gray); border-radius: 8px; font-size: 15px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* -------------------------------------------------------------------------- */
/*                           PAGE HEADER                                      */
/* -------------------------------------------------------------------------- */
.page-header { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); padding: 120px 0 80px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') repeat; background-size: 200px; opacity: 0.5; }
.page-header h1 { color: var(--white); font-size: 48px; margin-bottom: 15px; position: relative; }
.page-header p { font-size: 18px; opacity: 0.9; position: relative; }

/* -------------------------------------------------------------------------- */
/*                          GALLERY PAGE                                      */
/* -------------------------------------------------------------------------- */
.gallery-filter { background: var(--light-gray); padding: 25px 0; position: sticky; top: 70px; z-index: 100; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn { padding: 10px 20px; background: var(--white); border-radius: 8px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); }
.gallery-section { padding: 60px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.gallery-item { position: relative; height: 300px; border-radius: 16px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { color: var(--white); margin-bottom: 15px; }
.gallery-category { font-size: 12px; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.gallery-info h3 { color: var(--white); font-size: 20px; margin: 8px 0; }
.gallery-info p { font-size: 14px; opacity: 0.8; }
.view-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; width: fit-content; }
.no-projects { text-align: center; padding: 80px 20px; }
.no-projects i { font-size: 64px; color: var(--gray); margin-bottom: 20px; }
.no-projects h3 { font-size: 24px; margin-bottom: 10px; }
.no-projects p { color: var(--text-secondary); }

/* -------------------------------------------------------------------------- */
/*                       SERVICES PAGE                                        */
/* -------------------------------------------------------------------------- */
.services-list-section { padding: 80px 0; }
.service-list-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.service-list-item.reverse { direction: rtl; }
.service-list-item.reverse > * { direction: ltr; }
.service-list-image { position: relative; border-radius: 16px; overflow: hidden; height: 400px; }
.service-list-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-list-item:hover .service-list-image img { transform: scale(1.05); }
.service-list-content { position: relative; }
.service-number { display: block; font-family: var(--font-heading); font-size: 80px; font-weight: 700; color: var(--primary); opacity: 0.15; line-height: 1; margin-bottom: -30px; position: relative; z-index: 0; }
.service-list-content h2 { font-size: 36px; margin-bottom: 20px; position: relative; z-index: 1; }
.service-list-content > p { font-size: 17px; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.8; }
.service-features { margin-bottom: 30px; }
.service-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 15px; }
.service-features li i { color: var(--primary); }

/* -------------------------------------------------------------------------- */
/*                         CONTACT PAGE                                        */
/* -------------------------------------------------------------------------- */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.contact-form-wrapper h2 { font-size: 32px; margin-bottom: 10px; }
.contact-form-wrapper > p { color: var(--text-secondary); margin-bottom: 30px; }
.alert { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border-radius: 8px; margin-bottom: 25px; }
.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.alert-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.alert i { font-size: 24px; margin-top: 2px; }
.alert strong { display: block; margin-bottom: 5px; }
.contact-info-card { background: var(--light-gray); padding: 40px; border-radius: 16px; }
.contact-info-card h3 { font-size: 28px; margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 25px; }
.contact-info-item .icon { width: 50px; height: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.contact-info-item .details h4 { font-size: 16px; margin-bottom: 5px; }
.contact-info-item .details p, .contact-info-item .details a { color: var(--text-secondary); font-size: 15px; }
.contact-info-item .details a:hover { color: var(--primary); }
.contact-map { margin-top: 25px; border-radius: 16px; overflow: hidden; }

/* -------------------------------------------------------------------------- */
/*                         ABOUT PAGE                                          */
/* -------------------------------------------------------------------------- */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 42px; margin-bottom: 20px; }
.about-content .lead { font-size: 20px; color: var(--text-secondary); margin-bottom: 25px; }
.about-content p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 35px; }
.feature-item { display: flex; gap: 15px; }
.feature-item i { font-size: 32px; color: var(--primary); }
.feature-item h4 { font-size: 16px; margin-bottom: 3px; }
.feature-item p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.about-image img { border-radius: 16px; box-shadow: var(--shadow-lg); }
.founder-section { padding: 80px 0; background: var(--light-gray); }
.founder-grid { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center; }
.founder-image img { border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%; }
.founder-content h2 { font-size: 36px; margin-bottom: 5px; }
.founder-content > p { color: var(--primary); font-weight: 600; margin-bottom: 25px; }
.founder-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.founder-social { margin-top: 25px; }
.founder-social a { width: 45px; height: 45px; background: var(--primary); color: white; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; margin-right: 10px; }
.founder-social a:hover { background: var(--primary-dark); }

/* -------------------------------------------------------------------------- */
/*                          BLOG PAGE                                          */
/* -------------------------------------------------------------------------- */
.blog-listing-section { padding: 60px 0; }
.blog-single { padding: 60px 0; }
.blog-single-content { max-width: 800px; margin: 0 auto; }
.back-link { color: var(--primary); font-weight: 500; margin-bottom: 20px; display: inline-block; }
.blog-single h1 { font-size: 42px; margin: 20px 0; }
.blog-meta { display: flex; gap: 25px; color: var(--text-secondary); margin-bottom: 30px; }
.blog-meta span { display: flex; align-items: center; gap: 8px; }
.featured-image { width: 100%; border-radius: 16px; margin-bottom: 40px; }
.blog-body { font-size: 17px; line-height: 1.9; color: var(--text-secondary); }
.blog-body h2 { color: var(--text-primary); margin: 30px 0 15px; font-size: 28px; }
.blog-body h3 { color: var(--text-primary); margin: 25px 0 12px; font-size: 22px; }
.blog-body p { margin-bottom: 20px; }
.blog-body ul, .blog-body ol { margin: 20px 0; padding-left: 25px; }
.blog-body li { margin-bottom: 10px; }
.blog-share { margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; }
.blog-share h4 { margin-bottom: 15px; }
.share-btn { width: 45px; height: 45px; background: var(--light-gray); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; color: var(--text-primary); transition: var(--transition); }
.share-btn:hover { background: var(--primary); color: white; }

/* -------------------------------------------------------------------------- */
/*                         CITIES PAGE                                         */
/* -------------------------------------------------------------------------- */
.cities-section { padding: 80px 0; }
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.city-card { background: var(--white); padding: 25px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.city-card i { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
.city-card h3 { font-size: 18px; margin-bottom: 5px; }
.city-card p { font-size: 14px; color: var(--text-secondary); }

/* -------------------------------------------------------------------------- */
/*                       CALCULATOR PAGE                                       */
/* -------------------------------------------------------------------------- */
.calculator-section { padding: 80px 0; }
.calculator-container { max-width: 600px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow-lg); }
.calculator-form .form-group { margin-bottom: 25px; }
.calculator-form label { display: block; font-weight: 600; margin-bottom: 10px; }
.calculator-result { margin-top: 30px; padding: 30px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; text-align: center; color: var(--white); }
.calculator-result h3 { color: var(--white); font-size: 24px; margin-bottom: 15px; }
.calculator-result .price { font-size: 42px; font-weight: 700; }
.calculator-result p { opacity: 0.9; margin-top: 15px; }

/* -------------------------------------------------------------------------- */
/*                           PAGINATION                                        */
/* -------------------------------------------------------------------------- */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.pagination a, .pagination span { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 600; transition: var(--transition); }
.pagination a { background: var(--light-gray); color: var(--text-primary); }
.pagination a:hover, .pagination span.active { background: var(--primary); color: var(--white); }
.pagination span.disabled { opacity: 0.5; cursor: not-allowed; }
