/* Locksmith Ninja Perth - Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Top Header */
.top-header { background: #0a1f44; color: #fff; padding: 15px 0; }
.top-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.logo img { max-height: 70px; }
.emergency-text { color: #fff; font-weight: 700; font-size: 18px; text-align: center; line-height: 1.3; }
.emergency-text small { display: block; font-size: 13px; font-weight: 400; }
.phone-block { display: flex; align-items: center; gap: 10px; }
.phone-block .phone-icon { color: #ff3b3b; font-size: 30px; }
.phone-block .phone-info { color: #fff; }
.phone-block .phone-info small { display: block; font-size: 13px; color: #ffd700; }
.phone-block .phone-info a { font-size: 22px; font-weight: 700; color: #ffd700; }

/* Navigation */
.main-nav { background: #1c4ba0; padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.nav-menu { list-style: none; display: flex; flex-wrap: wrap; }
.nav-menu li a { color: #fff; padding: 16px 18px; display: block; font-weight: 600; font-size: 14px; text-transform: uppercase; transition: background 0.3s; }
.nav-menu li a:hover, .nav-menu li a.active { background: #0a1f44; color: #ffd700; }
.nav-menu li.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #0a1f44; min-width: 260px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); z-index: 999; }
.nav-menu li.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 12px 18px; border-bottom: 1px solid #1c4ba0; text-transform: none; font-size: 13px; }
.service-request-btn { background: #c81e1e; color: #fff !important; padding: 16px 30px !important; font-weight: 700 !important; }
.service-request-btn:hover { background: #a01010 !important; }

/* Hero */
.hero { position: relative; background: linear-gradient(rgba(10,31,68,0.6), rgba(10,31,68,0.7)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover; min-height: 500px; display: flex; align-items: center; padding: 60px 20px; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { color: #ffd700; font-size: 42px; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero-text h2 { color: #fff; font-size: 22px; margin-bottom: 18px; }
.hero-text p { color: #f0f0f0; font-size: 16px; margin-bottom: 14px; }
.appointment-box { background: rgba(10,31,68,0.92); padding: 30px; border-radius: 8px; }
.appointment-box h3 { color: #ffd700; text-align: center; font-size: 26px; margin-bottom: 5px; font-style: italic; }
.appointment-box h4 { color: #fff; text-align: center; font-size: 18px; margin-bottom: 18px; }
.appointment-box input, .appointment-box textarea, .appointment-box select { width: 100%; padding: 11px 14px; margin-bottom: 10px; border: 1px solid #2c5ab0; background: #0a1f44; color: #fff; border-radius: 4px; font-size: 14px; }
.appointment-box input::placeholder, .appointment-box textarea::placeholder { color: #aab; }
.appointment-box button { width: 100%; padding: 12px; background: #ffd700; color: #0a1f44; border: 0; font-weight: 800; font-size: 16px; border-radius: 4px; cursor: pointer; transition: background 0.3s; }
.appointment-box button:hover { background: #ffc107; }

/* Sections */
section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.two-col h2 { color: #0a1f44; font-size: 28px; margin-bottom: 20px; text-align: center; }
.two-col p { margin-bottom: 14px; text-align: center; color: #444; }

/* Service circles */
.service-circles { background: #f3f5f8; padding: 50px 20px; }
.circles-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.circle-item { text-align: center; }
.circle-item a { display: block; }
.circle-img { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto 0; border: 5px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s; }
.circle-img:hover { transform: scale(1.05); }
.circle-img img { width: 100%; height: 100%; object-fit: cover; }
.circle-label { background: #1c4ba0; color: #fff; padding: 10px 15px; font-weight: 700; font-size: 14px; margin-top: -25px; position: relative; clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%); }

/* Why Choose Us */
.why-choose { background: #fff; text-align: center; }
.why-choose h2 { color: #0a1f44; font-size: 32px; margin-bottom: 15px; }
.why-choose .lead { font-size: 19px; color: #444; max-width: 800px; margin: 0 auto 30px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; text-align: left; }
.why-grid ul { list-style: disc; padding-left: 22px; }
.why-grid li { margin-bottom: 10px; color: #333; }
.why-grid h3 { color: #0a1f44; font-size: 20px; margin-bottom: 10px; }
.why-tagline { margin-top: 30px; font-size: 17px; color: #555; }

/* CTA Banner */
.cta-banner { background: #0a1f44; color: #fff; padding: 60px 20px; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.cta-inner h2 { color: #ffd700; font-size: 32px; margin-bottom: 15px; }
.cta-inner p { margin-bottom: 12px; color: #e0e6f0; }
.cta-inner img { max-height: 200px; }

/* Services List */
.services-list { background: #f3f5f8; }
.services-list h2 { text-align: center; color: #0a1f44; font-size: 32px; margin-bottom: 15px; }
.services-list .lead { text-align: center; color: #555; max-width: 800px; margin: 0 auto 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 22px; }
.service-card h3 { color: #0a1f44; font-size: 20px; margin-bottom: 10px; }
.service-card p { color: #555; font-size: 14px; margin-bottom: 14px; }
.service-card a.btn { display: inline-block; background: #1c4ba0; color: #fff; padding: 10px 20px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: background 0.3s; }
.service-card a.btn:hover { background: #0a1f44; }

/* Areas */
.areas { background: #fff; }
.areas h2 { text-align: center; color: #0a1f44; font-size: 30px; margin-bottom: 15px; }
.areas p.lead { text-align: center; color: #555; max-width: 850px; margin: 0 auto 30px; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.areas-grid span { background: #f3f5f8; padding: 12px 15px; border-left: 4px solid #1c4ba0; font-weight: 600; color: #0a1f44; font-size: 14px; }

/* Footer */
footer { background: #0a1f44; color: #cfd6e4; padding: 50px 20px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 35px; }
.footer-col h4 { color: #ffd700; font-size: 18px; margin-bottom: 18px; border-bottom: 2px solid #1c4ba0; padding-bottom: 8px; }
.footer-col p, .footer-col li { font-size: 14px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col img.footer-logo { max-height: 80px; margin-bottom: 12px; background: rgba(255,255,255,0.05); padding: 6px; border-radius: 6px; }
.social-icons { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons a { width: 38px; height: 38px; background: #1c4ba0; color: #fff; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 700; transition: background 0.3s; }
.social-icons a:hover { background: #ffd700; color: #0a1f44; }
.footer-bottom { border-top: 1px solid #1c4ba0; margin-top: 35px; padding: 18px 0; text-align: center; font-size: 13px; color: #97a3bb; }
.footer-bottom a { color: #ffd700; }

/* Page Banner */
.page-banner { background: linear-gradient(rgba(10,31,68,0.75), rgba(10,31,68,0.85)), url('https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?w=1600&q=80') center/cover; padding: 80px 20px; text-align: center; color: #fff; }
.page-banner h1 { font-size: 42px; color: #ffd700; margin-bottom: 12px; }
.page-banner p { font-size: 17px; max-width: 800px; margin: 0 auto; }
.breadcrumb { margin-top: 12px; font-size: 14px; color: #cfd6e4; }
.breadcrumb a { color: #ffd700; }

/* Content */
.content-section { padding: 60px 20px; }
.content-inner { max-width: 1100px; margin: 0 auto; }
.content-inner h2 { color: #0a1f44; font-size: 30px; margin: 30px 0 16px; }
.content-inner h3 { color: #1c4ba0; font-size: 22px; margin: 25px 0 12px; }
.content-inner p { margin-bottom: 16px; color: #444; font-size: 16px; }
.content-inner ul { margin: 0 0 18px 25px; }
.content-inner ul li { margin-bottom: 8px; color: #444; }
.content-inner img.feature { width: 100%; border-radius: 8px; margin: 20px 0; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.callout-box { background: #f3f5f8; border-left: 5px solid #ffd700; padding: 22px 25px; margin: 25px 0; border-radius: 4px; }
.callout-box p { margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.contact-info-card { background: #f3f5f8; padding: 30px; border-radius: 8px; }
.contact-info-card h3 { color: #0a1f44; margin-bottom: 18px; font-size: 22px; }
.contact-info-card p { margin-bottom: 12px; color: #444; }
.contact-info-card strong { color: #0a1f44; }
.map-wrapper iframe { width: 100%; height: 380px; border: 0; border-radius: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .two-col, .cta-inner, .footer-inner, .contact-grid { grid-template-columns: 1fr; }
  .circles-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { flex-direction: column; width: 100%; display: none; }
  .nav-menu.show { display: flex; }
  .nav-menu li a { border-bottom: 1px solid #2c5ab0; }
  .menu-toggle { display: block; color: #fff; padding: 14px 20px; cursor: pointer; font-size: 22px; background: none; border: 0; }
  .hero-text h1 { font-size: 30px; }
  .page-banner h1 { font-size: 30px; }
}
@media (min-width: 901px) {
  .menu-toggle { display: none; }
}
