/* ==========================================================================
   SK INDUSTRIES - Custom Stylesheet (Indian MSME Welcome Style)
   Theme: Industrial Dark (Metallic Gray, Charcoal, Glowing Amber/Orange)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Space Grotesk', var(--font-primary);

    /* Color Palette */
    --bg-darker: #080a0c;
    --bg-main: #0d1115;
    --bg-card: rgba(18, 24, 32, 0.7);
    --bg-card-hover: rgba(26, 34, 46, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(243, 114, 44, 0.35);

    /* Amber/Orange Glowing Accents */
    --accent: #f3722c;
    --accent-rgb: 243, 114, 44;
    --accent-light: #f8961e;
    --accent-dark: #d94e06;
    
    /* Text Colors */
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Canvas for subtle particle glow */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Utility Styles */
.accent-text {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Section */
.header {
    width: 100%;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gear-rotate 12s linear infinite;
}

.header-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #4cc9f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #4cc9f0;
    animation: pulse-dot 2s infinite;
}

/* Hero Section with Grid Layout */
.hero-section {
    padding-top: 9rem;
    padding-bottom: 5rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    width: 100%;
}

.hero-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-intro {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.welcome-tag {
    background: rgba(243, 114, 44, 0.1);
    border: 1px solid rgba(243, 114, 44, 0.25);
    color: var(--accent-light);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Services tag list in Hero */
.services-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.service-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-tag i {
    color: var(--accent);
    font-size: 0.75rem;
}

.service-tag:hover {
    border-color: var(--border-color-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    background: rgba(243, 114, 44, 0.05);
}

.hero-cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Right side: Proprietor Business Contact Card */
.hero-contact-wrapper {
    flex: 1 1 400px;
    position: relative;
    width: 100%;
    min-width: 0;
}

.business-card {
    background: linear-gradient(145deg, rgba(20, 26, 35, 0.9) 0%, rgba(13, 17, 23, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(243, 114, 44, 0.05);
    transition: var(--transition-smooth);
}

.business-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(243, 114, 44, 0.08);
}

.card-header-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
}

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.biz-company-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.biz-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.msme-logo-stamp {
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%);
    color: #fff;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(243, 114, 44, 0.3);
}

.proprietor-section {
    margin-bottom: 1.5rem;
}

.proprietor-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.proprietor-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-top: 0.15rem;
}

.proprietor-desig {
    font-size: 0.85rem;
    color: var(--accent-light);
    font-weight: 500;
}

.card-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-card-item:not(.no-hover):hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.contact-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

/* Call circle branding */
.call-bg {
    background: rgba(76, 201, 240, 0.15);
    border: 1px solid rgba(76, 201, 240, 0.3);
    color: #4cc9f0;
}
.contact-card-item:hover .call-bg {
    background: #4cc9f0;
    color: #0c1015;
}

/* WhatsApp circle branding */
.whatsapp-bg {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}
.contact-card-item:hover .whatsapp-bg {
    background: #25D366;
    color: #0c1015;
}

/* Mail circle branding */
.mail-bg {
    background: rgba(243, 114, 44, 0.15);
    border: 1px solid rgba(243, 114, 44, 0.3);
    color: var(--accent-light);
}
.contact-card-item:hover .mail-bg {
    background: var(--accent);
    color: #fff;
}

/* Address circle branding */
.address-bg {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-type {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.text-truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.address-text {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Focus Section */
.focus-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.4) 0%, rgba(13, 17, 21, 0) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.text-left {
    text-align: left;
}

.section-description {
    color: var(--text-secondary);
    font-weight: 300;
}

/* Dynamic 5-Card Grid Layout */
.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.focus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Powder Coating spans 2 columns on desktop for geometric balance */
.featured-service {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(22, 28, 36, 0.7) 0%, rgba(30, 38, 48, 0.4) 100%);
    border-color: rgba(243, 114, 44, 0.25);
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(243, 114, 44, 0.15);
    border: 1px solid rgba(243, 114, 44, 0.3);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(243, 114, 44, 0.12) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.focus-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(243, 114, 44, 0.05);
}

.featured-service:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(243, 114, 44, 0.12);
}

.focus-card:hover .card-glow {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(243, 114, 44, 0.2) 0%, transparent 70%);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 114, 44, 0.08);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(243, 114, 44, 0.15);
    transition: var(--transition-smooth);
}

.focus-card:hover .card-icon {
    color: var(--text-primary);
    background: var(--accent);
    box-shadow: 0 0 20px rgba(243, 114, 44, 0.3);
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.card-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Contact & Address Section */
.contact-section {
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.contact-info {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.location-badge {
    margin-bottom: 1.5rem;
    animation: none;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.address-details-card {
    background: rgba(22, 28, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.address-company-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.address-company-name::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.address-line {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.address-line i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.address-line:last-child {
    margin-bottom: 0;
}

.contact-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    padding: 0.9rem 1.65rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(243, 114, 44, 0.2);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(243, 114, 44, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.9rem 1.65rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Interactive Map Visual Column */
.contact-visual {
    flex: 1 1 400px;
    position: relative;
    width: 100%;
    min-width: 0;
}

.map-card-wrapper {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(243, 114, 44, 0.15) 0%, transparent 100%);
    padding: 1px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-interactive-card {
    border-radius: 23px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
}

.map-bg-placeholder {
    height: 450px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(13, 15, 18, 0.3) 0%, rgba(13, 15, 18, 0.8) 80%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Radar scanning visual overlay */
.radar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(243, 114, 44, 0.05) 50%, transparent 100%);
    animation: radar-sweep 6s linear infinite;
    pointer-events: none;
}

/* Pulsing locator dot representing the Pune facility */
.map-marker-glow {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

.marker-pulse {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse-out 2s infinite ease-out;
    opacity: 0;
}

/* Info Bubble Card on top of the Map */
.map-info-bubble {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(8, 10, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: var(--transition-smooth);
}

.map-interactive-card:hover .map-info-bubble {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
}

.map-info-bubble h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-info-bubble p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.bubble-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.bubble-link:hover {
    color: #fff;
}

/* Footer Section */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-tagline {
    font-weight: 300;
}

/* Callback Request Form in Modal */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    margin-top: 1.5rem;
}

.form-field {
    width: 100%;
}

.form-field input, 
.form-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.9rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-field select option {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(243, 114, 44, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.form-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-actions-row button,
.form-actions-row type="submit" {
    flex: 1;
    justify-content: center;
}

/* Modal Popup Window */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(8, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: linear-gradient(145deg, rgba(26, 34, 46, 0.95) 0%, rgba(18, 24, 32, 0.98) 100%);
    border: 1px solid rgba(243, 114, 44, 0.3);
    border-radius: 24px;
    padding: 3rem 2.25rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(243, 114, 44, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.modal-backdrop.show .modal-card {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    color: #4bb543;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.modal-close-btn {
    background: var(--accent);
    border: none;
    color: #fff;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 0 15px rgba(243, 114, 44, 0.3);
}

/* Custom Keyframes & Animations */
@keyframes gear-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-out {
    0% { transform: scale(0.5); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes radar-sweep {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        gap: 3.5rem;
    }
    
    .hero-intro {
        align-items: center;
        text-align: center;
        flex: 1 1 100%;
    }

    .hero-contact-wrapper {
        flex: 1 1 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .services-list-tags {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .services-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-service {
        grid-column: span 2;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
        flex: 1 1 100%;
    }

    .contact-visual {
        flex: 1 1 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .section-title.text-left {
        text-align: center;
    }
    
    .address-details-card {
        text-align: left;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
    
    .services-grid-5 {
        grid-template-columns: 1fr;
    }
    
    .featured-service {
        grid-column: span 1;
    }
    
    .business-card {
        padding: 1.75rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    /* Wrap and center buttons for medium/small screens under 768px */
    .hero-cta-buttons, 
    .contact-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-buttons a,
    .hero-cta-buttons button,
    .contact-actions a {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px; /* slightly smaller base text for small phones */
    }

    .container {
        padding: 0 1.25rem;
    }

    .header {
        padding: 1.5rem 0;
        position: relative; /* prevents overlapping on tiny screens */
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-section {
        padding-top: 2rem; /* reduced because header is no longer absolute */
        padding-bottom: 3rem;
    }

    .coming-soon-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .services-list-tags {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .service-tag {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero-cta-buttons, 
    .contact-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta-buttons button,
    .hero-cta-buttons a,
    .contact-actions a {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
    }

    .business-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .business-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .proprietor-section {
        text-align: center;
    }

    .contact-card-item {
        padding: 0.65rem 0.85rem;
        gap: 0.75rem;
    }

    .contact-icon-box {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

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

    .focus-section {
        padding: 4rem 0;
    }

    .focus-card {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .address-details-card {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .map-bg-placeholder {
        height: 300px;
    }

    .map-info-bubble {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .map-info-bubble h4 {
        font-size: 1rem;
    }

    .map-info-bubble p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .modal-card {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .callback-form {
        gap: 1rem;
    }

    .form-actions-row {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
}
