/* ========================================
   Megiddon Security Elite Limited
   Premium Security Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --blue-dark: #0a1628;
    --blue-primary: #1E3A5F;
    --blue-light: #2C5282;
    --blue-accent: #4A90D9;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray: #6C757D;
    --gray-dark: #343A40;
    --black: #000000;
    --success: #28A745;
    --whatsapp: #25D366;
    --error: #DC3545;
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--blue-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    padding: 1rem 0;
    transition: all var(--transition-normal);
    border-bottom: 2px solid var(--gold-primary);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.logo-text .company-tagline {
    font-size: 0.7rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-dark) 100%);
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(76, 144, 217, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--blue-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-shield {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-shield svg {
    width: 400px;
    height: 480px;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-52%) translateX(10px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    color: var(--blue-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--blue-dark);
}

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

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    margin: 1rem auto 0;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold-primary);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--gold-primary);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--blue-dark);
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
}

/* Why Choose Us */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: 
        linear-gradient(rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.95)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='%23D4AF37' fill-opacity='0.05'/%3E%3C/svg%3E");
    text-align: center;
    border-top: 3px solid var(--gold-primary);
    border-bottom: 3px solid var(--gold-primary);
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--blue-dark);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .company-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-primary);
    display: block;
}

.footer-brand .company-tagline {
    color: var(--gray-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gold-primary);
    font-style: italic;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

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

.social-links a:hover svg {
    fill: var(--blue-dark);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Page Header (Inner Pages) */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    padding: 8rem 1.5rem 4rem;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Services Full Page */
.services-full {
    padding: 5rem 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    transition: all var(--transition-normal);
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.service-item.reverse {
    direction: rtl;
    border-left: none;
    border-right: 4px solid var(--gold-primary);
}

.service-item.reverse > * {
    direction: ltr;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.service-icon-large svg {
    width: 60px;
    height: 60px;
    stroke: var(--gold-primary);
}

.service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    color: var(--blue-dark);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* About Page */
.about-section {
    padding: 5rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-shield svg {
    width: 100%;
    max-width: 250px;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--off-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold-primary);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue-dark);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Core Values */
.core-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.core-values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold-primary);
}

.value-card h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.team-content > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.contact-icon.whatsapp {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
}

.contact-icon.whatsapp svg {
    fill: var(--white);
    stroke: none;
}

.contact-text h4 {
    color: var(--blue-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    color: var(--gray);
    font-size: 1rem;
}

.contact-text a:hover {
    color: var(--gold-primary);
}

.contact-social h4 {
    color: var(--blue-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.social-link-item svg {
    width: 24px;
    height: 24px;
    fill: var(--blue-primary);
}

.social-link-item:hover {
    color: var(--gold-primary);
}

.social-link-item:hover svg {
    fill: var(--gold-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--blue-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Quick Contact Bar */
.quick-contact {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.quick-item h4 {
    color: var(--blue-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-link {
    color: var(--blue-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-link:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--blue-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-shield {
        display: none;
    }

    .hero {
        padding: 7rem 1rem 3rem;
    }

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

    .tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
        border-right: none;
        border-left: 4px solid var(--gold-primary);
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .service-icon-large svg {
        width: 40px;
        height: 40px;
    }

    .service-content {
        text-align: center;
    }

    .service-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-shield {
        order: -1;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quick-contact-grid {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .logo-icon svg {
        width: 40px;
        height: 40px;
    }

    .logo-text .company-name {
        font-size: 1rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-shield svg {
        width: 250px;
        height: 300px;
    }

    .service-item {
        grid-template-columns: 120px 1fr;
        gap: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-shield,
    .cta-section,
    .quick-contact {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: #fff;
    }

    .hero h1,
    .hero-subtitle,
    .tagline {
        color: #000;
    }
}
