/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #0a3a82;       /* Deep corporate blue from logo */
    --primary-light: #1852a8;
    --primary-dark: #062354;
    --secondary-color: #0082f3;     /* Electric blue accent from logo */
    --secondary-hover: #006ecf;
    --dark-bg: #091b36;             /* Modern dark background */
    --dark-card: rgba(15, 34, 64, 0.8);
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Semantic Colors */
    --text-main: #2b3a4a;
    --text-muted: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Layout Variables */
    --container-width: 1200px;
    --header-height: 80px;
    --header-shrink-height: 70px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 15px -3px rgba(10, 58, 130, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    --glass-blur: blur(12px);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.text-danger { color: var(--danger); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 130, 243, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 130, 243, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    background-color: rgba(0, 130, 243, 0.1);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: var(--header-shrink-height);
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

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

.logo-img {
    height: 48px;
    width: auto;
    transition: height var(--transition-normal);
}

.header.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav-link {
    color: var(--primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--secondary-color);
}

.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.header.scrolled .mobile-nav-toggle .bar {
    background-color: var(--primary-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 10% 20%, rgba(10, 58, 130, 0.4) 0%, rgba(9, 27, 54, 0.9) 90%);
    color: var(--white);
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(9, 27, 54, 0.7) 0%, rgba(10, 58, 130, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeIn 1s ease;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Glassmorphic Security Card in Hero */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-card {
    background: var(--dark-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.security-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 130, 243, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.security-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 130, 243, 0.2);
    border: 1px solid rgba(0, 130, 243, 0.4);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.security-card-header h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.security-card-header p {
    font-size: 0.85rem;
    color: var(--gray-300);
}

.security-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.security-card-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-200);
}

.security-card-benefits i {
    color: var(--success);
}

.security-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.card-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.card-arrow-btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */
.values-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid transparent;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--secondary-color);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    margin-top: 20px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(10, 58, 130, 0.15);
}

.service-image {
    padding: 30px 30px 10px;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.service-card:hover .service-image {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.service-content {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   QUOTE SECTION (INTERACTIVE FORM)
   ========================================================================== */
.quote-section {
    background-color: var(--white);
    position: relative;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.quote-info-side {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.quote-info-side h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.quote-info-side p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.quote-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.quote-info-item .item-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.quote-info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.quote-info-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.quote-form-side {
    padding: 60px;
    background-color: var(--white);
}

/* Form Styles */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

input, select, textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 130, 243, 0.15);
}

select {
    cursor: pointer;
}

/* Dynamic Fields block */
.dynamic-fields {
    border-left: 3px solid var(--secondary-color);
    padding: 10px 0 10px 20px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideDown 0.3s ease;
}

.placeholder-dynamic-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    background-color: rgba(0, 130, 243, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.about-feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.about-images {
    position: relative;
    background-color: var(--primary-dark);
    border-radius: var(--radius-lg);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-image: linear-gradient(rgba(10, 58, 130, 0.3), rgba(6, 35, 84, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
}

.about-badge-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 220px;
    z-index: 5;
    animation: float 5s ease-in-out infinite alternate;
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-desc {
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-block {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: var(--radius-md);
    width: 100%;
}

.trust-block h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
}

.trust-author {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT SECTION (MAP & DETAILS)
   ========================================================================== */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateX(6px);
    border-color: rgba(10, 58, 130, 0.15);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-card-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.info-card-content .sub-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.card-link:hover {
    color: var(--primary-color);
}

.btn-call-card {
    margin-top: 12px;
}

/* Map Container */
.map-container-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    min-height: 450px;
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 400; /* Above Leaflet layer controls */
    border: 1.5px solid var(--secondary-color);
}

.map-overlay-info h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.map-overlay-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.interactive-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    z-index: 10;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.footer-desc {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact p {
    color: var(--gray-300);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #04142a;
    padding: 24px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

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

/* ==========================================================================
   TOAST NOTIFICATION STYLES
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background-color: var(--white);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideIn 0.3s forwards;
    pointer-events: auto;
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast.toast-error {
    border-left-color: var(--danger);
}

.toast.toast-info {
    border-left-color: var(--secondary-color);
}

.toast-icon {
    font-size: 1.4rem;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--danger); }
.toast-info .toast-icon { color: var(--secondary-color); }

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-main);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-info-side {
        padding: 50px;
    }
    
    .quote-form-side {
        padding: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    
    .footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-container {
        width: 100%;
    }
    
    .security-card {
        max-width: 100%;
    }
    
    .values-section {
        margin-top: -30px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Nav Menu Mobile Styling */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 120px 40px 40px;
        transition: right var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: var(--white);
    }
    
    .header.scrolled .nav-link {
        color: var(--white);
    }
    
    /* Cross icon on toggle */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .header.scrolled .mobile-nav-toggle.open .bar {
        background-color: var(--white);
    }
    
    /* About Us adjustment */
    .about-images {
        min-height: 300px;
    }
    
    .about-badge-card {
        right: 0px;
        top: -20px;
        max-width: 180px;
    }
    
    /* Contact Wrapper adjustment */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container-wrapper {
        min-height: 350px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
