/* ============================================
   Locksmith Ninja Perth - Main Stylesheet
   Modern, Professional Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary-color: #1976d2;
    --dark-color: #212121;
    --light-gray: #f5f5f5;
    --medium-gray: #757575;
    --border-color: #e0e0e0;
    --success-color: #388e3c;
    --warning-color: #f57c00;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar i {
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
}

.dropdown a:hover,
.dropdown a.active {
    background: var(--light-gray);
    color: var(--primary-color);
}

.btn-call {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600;
}

.btn-call:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-emergency {
    background: var(--warning-color);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 700;
}

.btn-emergency:hover {
    background: #e65100;
}

.btn-emergency-large {
    background: var(--warning-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-emergency-large:hover {
    background: #e65100;
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #1565c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-large i {
    font-size: 2.2rem;
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #424242 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.areas-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.area-column li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #424242 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.hero-emergency-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 40px auto 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-emergency-box i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-emergency-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-emergency-box p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.overview-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.overview-content a:hover {
    text-decoration: underline;
}

.quick-response-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.detail-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-mission {
    margin-top: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.mission-item {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Us Detailed */
.why-us-detailed {
    padding: 80px 0;
    background: var(--white);
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #1565c0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-text p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: var(--white);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.commit-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.commit-feature i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.commit-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #e8f5e9;
    color: var(--success-color);
    border: 1px solid var(--success-color);
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.availability {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.emergency-box {
    background: linear-gradient(135deg, var(--warning-color), #e65100);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.emergency-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency-box h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.emergency-box p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.social-section {
    margin-top: 30px;
}

.social-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.social-links-large i {
    font-size: 1.3rem;
    color: var(--white);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Service Areas Contact */
.service-areas-contact {
    padding: 80px 0;
    background: var(--white);
}

.areas-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.areas-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-list {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.area-list h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.area-list ul {
    list-style: none;
}

.area-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.areas-note {
    margin-top: 40px;
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Emergency Section */
.why-emergency {
    padding: 80px 0;
    background: var(--white);
}

.why-emergency h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.why-emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.why-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Related Services */
.related-services {
    padding: 60px 0;
    background: var(--white);
}

.related-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.related-card:hover i {
    color: var(--white);
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.related-card:hover h3 {
    color: var(--white);
}

.related-card p {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.related-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.tips-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.tip-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.tip-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box h3 i {
    color: var(--warning-color);
}

.tip-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.industries-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-item {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.industry-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.brands-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.brands-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.brands-list {
    max-width: 900px;
    margin: 0 auto;
}

.brands-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.brands-list li {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.brands-list i {
    color: var(--success-color);
    font-size: 1.3rem;
}

.brands-grid-garage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.brand-item i {
    color: var(--success-color);
    font-size: 1.3rem;
}

/* Issues Section */
.issues-section {
    padding: 80px 0;
    background: var(--white);
}

.issues-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.issue-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.issue-card i {
    font-size: 3rem;
    color: var(--warning-color);
    margin-bottom: 20px;
}

.issue-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.issue-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Decision Section (Repair vs Replace) */
.decision-section {
    padding: 80px 0;
    background: var(--white);
}

.decision-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.decision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
}

.decision-card.repair {
    border-top-color: var(--success-color);
}

.decision-card.replace {
    border-top-color: var(--primary-color);
}

.decision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.decision-card.repair h3 i {
    color: var(--success-color);
}

.decision-card.replace h3 i {
    color: var(--primary-color);
}

.decision-card ul {
    list-style: none;
}

.decision-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.decision-card li:last-child {
    border-bottom: none;
}

.decision-card.repair li i {
    color: var(--success-color);
}

.decision-card.replace li i {
    color: var(--primary-color);
}

.decision-note {
    margin-top: 40px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Lock Types Section */
.lock-types-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.lock-types-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.lock-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.lock-type {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.lock-type i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.lock-type h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lock-type p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 135px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        max-height: calc(100vh - 135px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 1px solid var(--border-color);
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        gap: 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .services-grid,
    .services-detailed-grid,
    .why-emergency-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid,
    .tips-content,
    .decision-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .services,
    .why-choose-us,
    .service-areas,
    .service-overview,
    .service-details,
    .about-content,
    .contact-section,
    .map-section,
    .service-areas-contact,
    .faq-section,
    .why-emergency,
    .process-section,
    .benefits-section,
    .tips-section,
    .industries-section,
    .brands-section,
    .issues-section,
    .decision-section,
    .lock-types-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}