:root {
	--bg-primary: #ffffff;
	--bg-secondary: #f8f9fa;
	--bg-tertiary: #f1f3f5;
	--text-primary: #1a1f2e;
	--text-secondary: #495057;
	--text-muted: #868e96;
	--brand-primary: #1a1f2e;
 
	--brand-gold: #FFBD00;
	--brand-gold-light: #FFDD7B;
	--brand-gold-dark: #F4B500;
	
	--border-color: #dee2e6;
	--success-color: #40c057;
	--error-color: #fa5252;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--radius: 8px;
	--container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-bg { background-color: var(--bg-secondary); }
.text-center { text-align: center; }

.section-title {
	font-size: 2.25rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-primary);
	letter-spacing: -0.025em;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 3rem auto;
}

/* Header */
.header {
	position: fixed; top: 0; left: 0; right: 0;
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--brand-gold);
	z-index: 1000; padding: 0.75rem 0; box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--brand-primary); letter-spacing: -0.5px; }
.logo-text span { color: var(--brand-gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
	text-decoration: none; color: var(--text-secondary); font-weight: 600; font-size: 0.9rem;
	transition: all 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-primary); }
.nav-links a.active::after {
	content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--brand-gold);
}
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brand-primary); }

.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.875rem 1.75rem; font-weight: 600; font-size: 0.95rem;
	border-radius: var(--radius); text-decoration: none; transition: all 0.3s ease;
	cursor: pointer; border: none; gap: 0.5rem;
}
.btn-primary {
	background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
	color: white; box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}
.btn-primary:hover {
	background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
	transform: translateY(-2px); box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}
.btn-secondary { background-color: var(--bg-primary); color: var(--brand-primary); border: 2px solid var(--border-color); }
.btn-secondary:hover { border-color: var(--brand-gold); background-color: var(--bg-secondary); }

 /* ---------- HERO ---------- */
  .hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:75px;
    margin:0 auto;
    flex-wrap:wrap;
  }
  .hero-image{
    *flex:1 1 480px;
  }
  .hero-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
  }
   
  .quote-btn{
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    font-size:15px;
    transition:background .2s ease;
  }
  .quote-btn:hover{background:var(--gold-dark);}
  
 .btn-primary{
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    font-size:16px;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    transition:background .2s ease, transform .15s ease;
  }
  .btn-primary:hover{background:var(--gold-dark);transform:translateY(-1px);}
  .btn-secondary{
    background:#fff;
    color:var(--navy);
    font-weight:700;
    font-size:16px;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    border:2px solid #e2e2e8;
    transition:border-color .2s ease, transform .15s ease;
  }
  .btn-secondary:hover{border-color:var(--navy);transform:translateY(-1px);}  
 
/* Slider Navigation Dots */
.slider-controls {
	position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
	display: flex; gap: 0.75rem; z-index: 3;
}
.slider-dot {
	width: 12px; height: 12px; border-radius: 50%;
	border: 2px solid var(--brand-gold); background: transparent;
	cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.slider-dot.active { background: var(--brand-gold); transform: scale(1.2); }

/* Stats */
.stats { background: linear-gradient(135deg, var(--brand-primary) 0%, #2d3748 100%); color: white; padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--brand-gold); }
.stat-item p { font-size: 0.95rem; opacity: 0.95; font-weight: 500; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card {
	background: var(--bg-primary); border: 2px solid var(--border-color); border-radius: var(--radius);
	padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
	content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
	background: linear-gradient(180deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
	opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-gold); }
.service-card:hover::before { opacity: 1; }
.service-number { font-size: 0.875rem; font-weight: 700; color: var(--brand-gold); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
	background: var(--bg-secondary); color: var(--text-secondary); padding: 0.375rem 0.875rem;
	border-radius: 9999px; font-size: 0.75rem; font-weight: 600; border: 1px solid var(--border-color); transition: all 0.2s;
}
.tag:hover { background: var(--brand-primary); color: var(--brand-gold); border-color: var(--brand-primary); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon {
	flex-shrink: 0; width: 48px; height: 48px;
	background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
	border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; color: white;
}
.feature-content h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.feature-content p { font-size: 0.95rem; color: var(--text-secondary); }

/* Customer Tools */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.tool-card {
	background: var(--bg-primary); border: 2px solid var(--border-color); border-radius: var(--radius);
	padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-gold); }
.tool-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.tool-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.tool-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { color: var(--brand-gold); font-size: 1.25rem; margin-top: 0.25rem; }
.contact-detail h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; font-weight: 700; }
.contact-detail p, .contact-detail a { color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.contact-detail a:hover { color: var(--brand-gold); }

.form-card { background: var(--bg-primary); border: 2px solid var(--border-color); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
label .required { color: var(--error-color); }
input, select, textarea {
	width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--border-color); border-radius: var(--radius);
	font-family: inherit; font-size: 1rem; background-color: var(--bg-primary); color: var(--text-primary); transition: all 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15); }
textarea { resize: vertical; min-height: 120px; }
.file-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.form-status { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-weight: 600; display: none; }
.form-status.success { display: block; background-color: #d3f9d8; color: #2b8a3e; border: 2px solid #69db7c; }
.form-status.error { display: block; background-color: #ffe3e3; color: #c92a2a; border: 2px solid #ff8787; }

/* Footer */
.footer { background-color: var(--brand-primary); color: white; padding: 4rem 0 2rem 0; border-top: 4px solid var(--brand-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: #adb5bd; margin-top: 1rem; font-size: 0.95rem; max-width: 300px; }
.footer h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; color: var(--brand-gold); font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #adb5bd; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
.footer-links a:hover { color: var(--brand-gold); padding-left: 4px; }
.footer-bottom {
	border-top: 1px solid #495057; padding-top: 2rem; display: flex; justify-content: space-between;
	align-items: center; flex-wrap: wrap; gap: 1rem; color: #868e96; font-size: 0.875rem;
}
.footer-bottom a { color: #adb5bd; text-decoration: none; margin-left: 1.5rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-gold); }

/* Responsive */
@media (max-width: 968px) {
	.hero h1 { font-size: 2.75rem; }
	.hero { min-height: 550px; padding: 8rem 0 5rem 0; }
	.contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
	.mobile-menu-btn { display: block; }
	.nav-links {
		position: fixed; top: 70px; left: 0; right: 0; background-color: var(--bg-primary);
		flex-direction: column; padding: 2rem; border-bottom: 2px solid var(--brand-gold);
		box-shadow: var(--shadow-lg); transform: translateY(-150%); transition: transform 0.3s ease; gap: 1.5rem;
	}
	.nav-links.active { transform: translateY(0); }
	.hero { padding: 7rem 0 4rem 0; min-height: 500px; }
	.hero h1 { font-size: 2.25rem; }
	.form-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.footer-bottom a { margin: 0 0.75rem; }
	.slider-controls { bottom: 1.5rem; }
}
