/* ============================================
   TeddyVisuals - Custom Styles
   Brand Colors: Navy #052F54, Gold #EDBF15
   ============================================ */

:root {
    --primary: #052F54;
    --primary-light: #0a4a7f;
    --primary-dark: #021e38;
    --secondary: #EDBF15;
    --secondary-light: #f5d04a;
    --secondary-dark: #c9a00e;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); background-color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; color: var(--primary); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; }

.section { padding: 100px 0; }
.section-badge { display: inline-block; padding: 8px 20px; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 50px; margin-bottom: 15px; }
.section-title { font-size: 42px; margin-bottom: 15px; }
.section-subtitle { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-desc { color: var(--gray); margin-bottom: 20px; }
.bg-light { background-color: #f8f9fc !important; }

.btn { font-family: var(--font-body); font-weight: 500; padding: 12px 28px; border-radius: var(--radius); transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--secondary); border-color: var(--secondary); color: var(--primary); font-weight: 600; }
.btn-accent:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-primary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 15px 35px; font-size: 16px; }

.navbar { padding: 20px 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: var(--white); padding: 15px 0; box-shadow: var(--shadow); }
.navbar .navbar-brand { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--white); }
.navbar.scrolled .navbar-brand { color: var(--primary); }
.navbar .brand-text { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar .nav-link { font-weight: 500; color: rgba(255,255,255,0.9); padding: 10px 20px !important; position: relative; }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--secondary); }
.navbar .nav-link::after { content: ''; position: absolute; bottom: 5px; left: 20px; width: 0; height: 2px; background: var(--secondary); transition: var(--transition); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { width: calc(100% - 40px); }
.navbar-toggler { border: none; padding: 10px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%285, 47, 84, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #000 100%); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(5,47,84,0.85) 0%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-badge { display: inline-block; padding: 10px 25px; background: rgba(237,191,21,0.2); border: 1px solid var(--secondary); color: var(--secondary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; border-radius: 50px; margin-bottom: 25px; }
.hero-title { font-size: 72px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 24px; color: rgba(255,255,255,0.9); margin-bottom: 15px; font-weight: 300; }
.hero-description { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; color: rgba(255,255,255,0.7); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; transition: var(--transition); }
.scroll-indicator:hover { color: var(--secondary); }
.scroll-indicator i { font-size: 24px; margin-top: 10px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(10px); } 60% { transform: translateY(5px); } }

.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 180px 0 100px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-header-content { position: relative; z-index: 1; }
.page-badge { display: inline-block; padding: 8px 20px; background: rgba(237,191,21,0.2); border: 1px solid var(--secondary); color: var(--secondary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 50px; margin-bottom: 15px; }
.page-title { font-size: 52px; color: var(--white); margin-bottom: 20px; }
.page-desc { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--secondary); }
.breadcrumb-item.active { color: var(--secondary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

.service-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: var(--transition); }
.service-icon i { font-size: 32px; color: var(--white); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); }
.service-card:hover .service-icon i { color: var(--primary); }
.service-title { font-size: 22px; margin-bottom: 15px; }
.service-desc { color: var(--gray); margin-bottom: 20px; }
.service-link { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.service-link:hover { color: var(--secondary); gap: 12px; }

.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 0; }
.stat-card { text-align: center; padding: 30px 20px; }
.stat-icon { width: 60px; height: 60px; background: rgba(237,191,21,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.stat-icon i { font-size: 24px; color: var(--secondary); }
.stat-number { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--white); display: inline; }
.stat-suffix { font-family: var(--font-heading); font-size: 36px; color: var(--secondary); }
.stat-label { color: rgba(255,255,255,0.8); margin-top: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

.portfolio-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn { padding: 10px 25px; background: transparent; border: 2px solid var(--gray-light); color: var(--gray); border-radius: 50px; font-weight: 500; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.portfolio-card { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.portfolio-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.portfolio-card:hover .portfolio-img img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(5,47,84,0.95) 0%, rgba(5,47,84,0.5) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; opacity: 0; transition: var(--transition); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-category { display: inline-block; padding: 5px 15px; background: var(--secondary); color: var(--primary); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; margin-bottom: 10px; width: fit-content; }
.portfolio-title { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.portfolio-desc { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 10px; }
.portfolio-view { color: var(--secondary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.featured-badge { position: absolute; top: 15px; right: 15px; background: var(--secondary); color: var(--primary); padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; z-index: 2; }
.portfolio-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--gray-light) 0%, #ddd 100%); display: flex; align-items: center; justify-content: center; }
.portfolio-placeholder i { font-size: 48px; color: var(--gray); }

.testimonial-card { background: var(--white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow); height: 100%; position: relative; border: 1px solid var(--gray-light); transition: var(--transition); }
.testimonial-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-lg); }
.testimonial-quote { position: absolute; top: 20px; right: 25px; }
.testimonial-quote i { font-size: 40px; color: var(--secondary); opacity: 0.3; }
.testimonial-content { font-size: 16px; color: var(--gray); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-rating { margin-bottom: 20px; }
.testimonial-rating i { color: var(--secondary); font-size: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-placeholder { width: 50px; height: 50px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; }
.author-placeholder i { font-size: 24px; color: var(--gray); }
.author-info h5 { font-size: 16px; margin-bottom: 2px; color: var(--primary); }
.author-info span { font-size: 13px; color: var(--gray); }

.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(237,191,21,0.1); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 300px; height: 300px; background: rgba(237,191,21,0.1); border-radius: 50%; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 42px; color: var(--white); margin-bottom: 15px; }
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.about-images { position: relative; }
.about-images .main-img { width: 85%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-images .secondary-img { position: absolute; bottom: -30px; right: 0; width: 50%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 5px solid var(--white); }
.experience-badge { position: absolute; top: 30px; right: 30px; background: var(--secondary); color: var(--primary); padding: 25px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg); }
.exp-number { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 700; line-height: 1; }
.exp-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-title { font-size: 36px; margin-bottom: 20px; }
.about-story { color: var(--gray); }
.about-mission h4, .about-vision h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.image-placeholder { background: linear-gradient(135deg, var(--gray-light) 0%, #ddd 100%); display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; border-radius: var(--radius-lg); }
.image-placeholder i { font-size: 64px; color: var(--gray); }

.skills-container { display: flex; flex-direction: column; gap: 25px; }
.skill-item { width: 100%; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 10px; }
.skill-name { font-weight: 600; color: var(--primary); }
.skill-percent { color: var(--gray); }
.skill-bar { height: 10px; background: var(--gray-light); border-radius: 10px; overflow: hidden; }
.skill-progress { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); border-radius: 10px; transition: width 1s ease; }

.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-img img { transform: scale(1.1); }
.team-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--gray-light) 0%, #ddd 100%); display: flex; align-items: center; justify-content: center; }
.team-placeholder i { font-size: 80px; color: var(--gray); }
.team-social { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(5,47,84,0.9), transparent); display: flex; justify-content: center; gap: 15px; opacity: 0; transform: translateY(20px); transition: var(--transition); }
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a { width: 40px; height: 40px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.team-social a:hover { background: var(--secondary); }
.team-info { padding: 25px; text-align: center; }
.team-name { font-size: 20px; margin-bottom: 5px; }
.team-role { color: var(--secondary); font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.team-bio { color: var(--gray); font-size: 14px; margin-top: 10px; }

.why-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); height: 100%; transition: var(--transition); border: 1px solid transparent; }
.why-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
.why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon i { font-size: 28px; color: var(--white); }
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 14px; margin: 0; }

.contact-info-card { background: var(--white); padding: 35px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); height: 100%; transition: var(--transition); border: 1px solid transparent; }
.contact-info-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
.contact-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-icon i { font-size: 28px; color: var(--white); }
.contact-info-card h4 { font-size: 18px; margin-bottom: 15px; }
.contact-info-card p { color: var(--gray); margin-bottom: 5px; }
.contact-info-card a { color: var(--gray); }
.contact-info-card a:hover { color: var(--secondary); }

.contact-form-wrapper { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--primary); }
.form-control { border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 12px 15px; font-family: var(--font-body); transition: var(--transition); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,47,84,0.1); }
.form-select { border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 12px 15px; font-family: var(--font-body); transition: var(--transition); }
.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,47,84,0.1); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 300px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { width: 100%; height: 100%; background: var(--gray-light); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.map-placeholder i { font-size: 48px; color: var(--gray); margin-bottom: 10px; }
.working-hours { background: var(--white); padding: 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.working-hours h4 { font-size: 18px; margin-bottom: 15px; }
.contact-social { background: var(--white); padding: 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-social h4 { font-size: 18px; margin-bottom: 15px; }
.social-btn { width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; transition: var(--transition); }
.social-btn:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); }

.package-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; position: relative; height: 100%; transition: var(--transition); border: 2px solid transparent; }
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.package-card.popular { border-color: var(--secondary); }
.popular-badge { position: absolute; top: 20px; right: -35px; background: var(--secondary); color: var(--primary); padding: 5px 40px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transform: rotate(45deg); }
.package-img { height: 150px; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; }
.package-content { padding: 30px; }
.package-name { font-size: 24px; margin-bottom: 15px; text-align: center; }
.package-price { text-align: center; margin-bottom: 20px; }
.package-price .currency { font-size: 24px; color: var(--primary); vertical-align: top; }
.package-price .amount { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; }
.package-price .duration { font-size: 14px; color: var(--gray); }
.package-desc { color: var(--gray); text-align: center; margin-bottom: 20px; font-size: 14px; }
.package-features { list-style: none; padding: 0; margin: 0 0 25px; }
.package-features li { padding: 10px 0; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--secondary); }

.booking-form-wrapper { background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-section { margin-bottom: 35px; padding-bottom: 25px; border-bottom: 1px solid var(--gray-light); }
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-section-title { font-size: 18px; margin-bottom: 20px; color: var(--primary); }

.process-card { background: var(--white); padding: 35px 25px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); height: 100%; position: relative; }
.process-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 35px; height: 35px; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.process-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 10px auto 20px; }
.process-icon i { font-size: 28px; color: var(--white); }
.process-card h4 { font-size: 18px; margin-bottom: 10px; }
.process-card p { color: var(--gray); font-size: 14px; margin: 0; }

.accordion-item { background: var(--white); border: 1px solid var(--gray-light) !important; border-radius: var(--radius) !important; margin-bottom: 15px; overflow: hidden; }
.accordion-button { font-family: var(--font-body); font-weight: 600; color: var(--primary); padding: 20px 25px; }
.accordion-button:not(.collapsed) { background: var(--primary); color: var(--white); }
.accordion-button:focus { box-shadow: none; border-color: var(--primary); }
.accordion-button::after { background-size: 16px; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-body { color: var(--gray); padding: 20px 25px; }

.project-featured-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.project-featured-image .image-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.project-featured-image:hover .image-zoom { opacity: 1; }
.project-featured-image .image-zoom i { font-size: 24px; color: var(--primary); }
.project-description h3 { font-size: 24px; margin-bottom: 20px; }
.gallery-item { display: block; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 1; 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: rgba(5,47,84,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: var(--white); }
.video-wrapper { border-radius: var(--radius-lg); overflow: hidden; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.project-testimonial .testimonial-box { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 40px; border-radius: var(--radius-lg); position: relative; }
.testimonial-box .testimonial-icon { font-size: 60px; color: rgba(237,191,21,0.3); position: absolute; top: 20px; left: 30px; }
.testimonial-box .testimonial-text { color: var(--white); font-size: 18px; font-style: italic; line-height: 1.8; position: relative; z-index: 1; }
.testimonial-box .testimonial-author { color: var(--secondary); margin-top: 20px; font-weight: 600; }

.sidebar-card { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 25px; }
.sidebar-card h4 { font-size: 18px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--gray-light); }
.project-info-list { list-style: none; padding: 0; margin: 0; }
.project-info-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.project-info-list li:last-child { border-bottom: none; }
.info-label { color: var(--gray); }
.info-value { font-weight: 600; color: var(--primary); }
.share-buttons { display: flex; gap: 10px; }
.share-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.pinterest { background: #e60023; }
.share-btn.whatsapp { background: #25d366; }
.share-btn:hover { transform: translateY(-3px); color: var(--white); opacity: 0.9; }
.cta-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
.cta-card h4 { color: var(--white); border-color: rgba(255,255,255,0.2); }
.cta-card p { color: rgba(255,255,255,0.8); }

.features-list { display: flex; flex-direction: column; gap: 25px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { font-size: 24px; color: var(--white); }
.feature-content h4 { font-size: 18px; margin-bottom: 8px; }
.feature-content p { color: var(--gray); margin: 0; font-size: 14px; }

.service-detail-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 100%; transition: var(--transition); text-align: center; padding-bottom: 30px; }
.service-detail-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-detail-card .service-img { height: 200px; overflow: hidden; }
.service-detail-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.service-detail-card:hover .service-img img { transform: scale(1.1); }
.service-icon-wrap { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: -40px auto 20px; position: relative; z-index: 1; border: 5px solid var(--white); }
.service-icon-wrap i { font-size: 32px; color: var(--white); }
.service-detail-card h3 { font-size: 22px; margin-bottom: 15px; padding: 0 20px; }
.service-detail-card p { color: var(--gray); padding: 0 25px; margin-bottom: 20px; }

.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 80px 0 50px; }
.footer-brand .brand-text { font-family: var(--font-heading); font-size: 32px; color: var(--white); }
.footer-brand p { margin-top: 15px; color: rgba(255,255,255,0.7); }
.footer .social-links { display: flex; gap: 10px; }
.footer .social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer .social-links a:hover { background: var(--secondary); color: var(--primary); }
.footer-title { font-size: 18px; color: var(--white); margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 25px 0; }
.footer-bottom p { margin: 0; font-size: 14px; }

.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); color: var(--primary); transform: translateY(-5px); }

.messages-container { position: fixed; top: 100px; right: 20px; z-index: 1050; max-width: 400px; }
.messages-container .alert { box-shadow: var(--shadow-lg); border: none; border-radius: var(--radius); }

.empty-state { padding: 60px 20px; }
.empty-state i { font-size: 80px; color: var(--gray-light); margin-bottom: 20px; }
.empty-state h3 { font-size: 24px; margin-bottom: 10px; }
.empty-state p { color: var(--gray); }

.pagination { gap: 8px; }
.page-link { border: none; padding: 10px 18px; border-radius: var(--radius); color: var(--primary); font-weight: 500; transition: var(--transition); }
.page-item.active .page-link { background: var(--primary); color: var(--white); }
.page-link:hover { background: var(--gray-light); color: var(--primary); }

@media (max-width: 991.98px) {
    .section { padding: 70px 0; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 20px; }
    .page-title { font-size: 38px; }
    .section-title { font-size: 32px; }
    .navbar-collapse { background: var(--white); padding: 20px; border-radius: var(--radius); margin-top: 15px; box-shadow: var(--shadow-lg); }
    .navbar .nav-link { color: var(--dark); padding: 12px 15px !important; }
    .navbar .nav-link::after { display: none; }
    .about-images .secondary-img { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 20px; }
    .experience-badge { position: relative; top: auto; right: auto; margin-top: 20px; display: inline-block; }
    .booking-form-wrapper { padding: 30px; }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 36px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .page-title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .cta-title { font-size: 28px; }
    .stat-number { font-size: 36px; }
    .stat-suffix { font-size: 24px; }
    .package-price .amount { font-size: 36px; }
    .footer-top { padding: 50px 0 30px; }
    .contact-form-wrapper { padding: 25px; }
    .booking-form-wrapper { padding: 25px; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 32px; }
    .page-header { padding: 150px 0 80px; }
    .filter-btn { padding: 8px 15px; font-size: 13px; }
}
.service-icon-wrap.no-image {
    margin: 30px auto 20px;
    position: relative;
    top: 0;
    border: none;
}

/* Developer Credit */
.developer-credit {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.developer-credit:hover {
    color: var(--secondary);
}