@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-light: #243556;
  --navy-dark: #111d33;
  --orange: #F26522;
  --orange-hover: #e0551a;
  --orange-light: #ff8a50;
  --blue: #3DAEE3;
  --blue-light: #5bc0f0;
  --white: #ffffff;
  --off-white: #F8FAFB;
  --light-gray: #EEF2F5;
  --gray: #6B7B8D;
  --dark: #1a1a2e;
  --shadow: 0 8px 30px rgba(27,42,74,0.08);
  --shadow-lg: 0 15px 40px rgba(27,42,74,0.12);
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body { font-family: 'DM Sans', sans-serif; color: var(--dark); line-height: 1.8; overflow-x: hidden; background: var(--white); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
p { color: var(--gray); font-size: 1.05rem; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--navy); color: var(--white); margin: 60px 24px; border-radius: 30px; overflow: hidden; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-gray { background: var(--light-gray); margin: 60px 24px; border-radius: 30px; overflow: hidden; }
.section-header { text-align: center; max-width: 750px; margin: 0 auto 60px; }
.section-header .badge { display: inline-block; background: linear-gradient(135deg, rgba(242,101,34,0.1), rgba(242,101,34,0.05)); color: var(--orange); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(242,101,34,0.15); }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* TOP BAR */
.top-bar { background: var(--navy-dark); color: var(--white); padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 1001; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: var(--transition); padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar.scrolled { box-shadow: var(--shadow); padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 50px; transition: var(--transition); border-radius: 0; }
.navbar.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--navy); padding: 10px 18px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: rgba(242,101,34,0.08); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 12px 28px !important; border-radius: 50px !important; box-shadow: 0 4px 15px rgba(242,101,34,0.3); }
.nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,101,34,0.4); color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); border-radius: 3px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(242,101,34,0.25); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(242,101,34,0.4); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 4px 15px rgba(27,42,74,0.2); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(27,42,74,0.3); color: var(--white); }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; padding-top: 40px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,29,51,0.95) 0%, rgba(27,42,74,0.8) 50%, rgba(61,174,227,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; backdrop-filter: blur(10px); text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--orange); position: relative; display: inline-block; }
.hero h1 span::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background: rgba(242,101,34,0.3); border-radius: 4px; z-index: -1; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 50px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat h3 { color: var(--orange); font-size: 2.5rem; margin-bottom: 5px; }
.hero-stat p { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* PAGE HERO */
.page-hero { position: relative; padding: 120px 0 80px; background: var(--navy); overflow: hidden; margin-bottom: 60px; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(242,101,34,0.08) 0%, transparent 70%); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; font-size: 3rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 12px; margin-bottom: 24px; font-size: 0.95rem; background: rgba(255,255,255,0.1); padding: 8px 24px; border-radius: 50px; backdrop-filter: blur(5px); }
.breadcrumb a { color: var(--white); font-weight: 500; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(242,101,34,0.2); }
.card-img { height: 240px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; border-radius: 0; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 32px; }
.card-body h3 { margin-bottom: 12px; font-size: 1.4rem; }
.card-body p { font-size: 1rem; margin-bottom: 20px; }

/* ICON CARDS */
.icon-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; transition: var(--transition); box-shadow: var(--shadow); text-align: center; border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.icon-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: transparent; transition: var(--transition); }
.icon-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.icon-card:hover::before { background: var(--orange); }
.icon-card .icon { width: 70px; height: 70px; border-radius: 20px; background: linear-gradient(135deg, rgba(242,101,34,0.15), rgba(242,101,34,0.05)); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 24px; transition: var(--transition); }
.icon-card:hover .icon { background: var(--orange); color: var(--white); transform: scale(1.1) rotate(5deg); }
.icon-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.icon-card p { font-size: 1rem; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* SPLIT SECTION */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split-img::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); pointer-events: none; }
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 450px; }
.split-content .badge { display: inline-block; background: rgba(242,101,34,0.1); color: var(--orange); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.split-content h2 { margin-bottom: 20px; }
.split-content > p { margin-bottom: 24px; font-size: 1.1rem; }
.check-list { margin: 24px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; color: var(--navy); font-weight: 600; font-size: 1.05rem; }
.check-list li::before { content: '✓'; flex-shrink: 0; width: 28px; height: 28px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; box-shadow: 0 2px 8px rgba(242,101,34,0.3); }

/* STATS BAR */
.stats-bar { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%); padding: 60px 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg opacity="0.1" xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50 50 100 0 50z" fill="%23fff"/></svg>') repeat; background-size: 40px; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: var(--white); }
.stat-item h3 { font-size: 3rem; margin-bottom: 8px; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.stat-item p { font-size: 1.05rem; opacity: 0.9; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* TESTIMONIALS */
.testimonial-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 6rem; color: rgba(242,101,34,0.1); font-family: serif; line-height: 1; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-card blockquote { font-size: 1.1rem; color: var(--navy); font-style: italic; margin-bottom: 24px; line-height: 1.8; position: relative; z-index: 1; }
.testimonial-card .author { font-weight: 700; color: var(--dark); font-size: 1.1rem; }
.testimonial-card .role { font-size: 0.9rem; color: var(--orange); font-weight: 600; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; border-radius: var(--radius); margin: 0 24px; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(242,101,34,0.2) 0%, transparent 70%); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(61,174,227,0.15) 0%, transparent 70%); border-radius: 50%; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; font-size: 2.8rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 650px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 16px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 30px; cursor: pointer; font-weight: 700; font-size: 1.1rem; transition: var(--transition); color: var(--navy); }
.faq-question:hover { color: var(--orange); }
.faq-question .faq-icon { font-size: 1.5rem; color: var(--orange); transition: transform 0.4s ease; flex-shrink: 0; background: rgba(242,101,34,0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.faq-item.active .faq-question { color: var(--orange); border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 24px 30px; color: var(--gray); line-height: 1.8; font-size: 1.05rem; }

/* CONTACT FORM */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px 20px; border: 2px solid var(--light-gray); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 1rem; transition: var(--transition); background: var(--off-white); color: var(--navy); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 4px rgba(242,101,34,0.1); }
.form-group textarea { min-height: 160px; resize: vertical; }

/* CONTACT INFO */
.contact-info-card { display: flex; align-items: center; gap: 20px; padding: 30px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(242,101,34,0.2); }
.contact-info-card .ci-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(242,101,34,0.15), rgba(242,101,34,0.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.5rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); }
.contact-info-card p { font-size: 1rem; color: var(--gray); font-weight: 500; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; border-radius: 0; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,29,51,0.9) 0%, rgba(17,29,51,0.4) 50%, transparent 100%); opacity: 0; transition: opacity 0.4s ease; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay p { color: var(--white); font-weight: 700; font-size: 1.1rem; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover .overlay p { transform: translateY(0); }

/* AREAS LIST */
.area-card { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); border-top: 4px solid var(--orange); }
.area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.area-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.3rem; }
.area-card p { font-size: 1rem; }

/* PROCESS STEPS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: rgba(0,0,0,0.05); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 80px; height: 80px; border-radius: 50%; background: var(--white); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 24px; box-shadow: var(--shadow-lg); border: 4px solid var(--off-white); transition: var(--transition); }
.step:hover .step-num { background: var(--orange); color: var(--white); transform: scale(1.1); border-color: rgba(242,101,34,0.2); }
.step h3 { margin-bottom: 12px; font-size: 1.2rem; }
.step p { font-size: 0.95rem; }

/* BRANDS */
.brands-strip { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; padding: 30px 0; }
.brand-item { height: 40px; font-size: 1.5rem; font-weight: 800; color: var(--gray); opacity: 0.4; transition: var(--transition); display: flex; align-items: center; text-transform: uppercase; letter-spacing: 1px; }
.brand-item:hover { opacity: 1; color: var(--navy); transform: scale(1.05); }

/* FOOTER */
.footer { background: var(--navy-dark); color: var(--white); padding: 80px 0 0; position: relative; border-top: 5px solid var(--orange); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-about img { height: 60px; margin-bottom: 24px; border-radius: 0; background: var(--white); padding: 8px; border-radius: 8px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 24px; max-width: 350px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 45px; height: 45px; border-radius: 12px; background: rgba(255,255,255,0.05); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-weight: 700; }
.footer-social a:hover { background: var(--orange); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(242,101,34,0.4); }
.footer h4 { font-size: 1.1rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; color: var(--white); }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--orange); border-radius: 3px; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: var(--transition); display: inline-block; }
.footer ul li a:hover { color: var(--orange); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; border: none; box-shadow: var(--shadow-lg); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange); transform: translateY(-5px); }

/* PHONE FLOAT */
.phone-float { position: fixed; bottom: 40px; left: 40px; z-index: 999; }
.phone-float a { display: flex; align-items: center; gap: 12px; background: var(--white); color: var(--navy); padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; box-shadow: var(--shadow-lg); transition: var(--transition); border: 1px solid rgba(0,0,0,0.05); }
.phone-float a:hover { background: var(--orange); color: var(--white); transform: translateY(-5px); border-color: transparent; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
  .hero h1 { font-size: 3rem; }
  .cta-section { margin: 0; border-radius: 0; }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); flex-direction: column; padding: 100px 30px 40px; gap: 10px; transition: var(--transition); box-shadow: -10px 0 40px rgba(0,0,0,0.1); align-items: flex-start; }
  .nav-links.active { right: 0; }
  .nav-links a { padding: 15px 20px; width: 100%; background: var(--off-white); border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero { min-height: 80vh; padding-top: 0; }
  .hero-stats { flex-direction: column; gap: 30px; text-align: center; border-top: none; padding-top: 0; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: -1; }
  .split-img img { min-height: 300px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 30px; }
  .process-steps::before { display: none; }
  .step { display: flex; align-items: center; text-align: left; gap: 20px; }
  .step-num { margin: 0; flex-shrink: 0; width: 60px; height: 60px; font-size: 1.4rem; }
  .stats-bar .container { flex-direction: column; align-items: center; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .phone-float { bottom: 20px; left: 20px; }
  .phone-float a span { display: none; }
  .phone-float a { padding: 15px; border-radius: 50%; }
  .scroll-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
  .cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 2.5rem; }
  .card-body { padding: 24px; }
  .icon-card { padding: 30px 24px; }
}
