/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette (Swedish Flag Inspired) */
    --primary-blue: #004B87;
    --primary-blue-dark: #003662;
    --primary-blue-light: #0060ad;
    --primary-blue-rgb: 0, 75, 135;
    
    --accent-yellow: #FFDD00;
    --accent-yellow-hover: #e6c700;
    --accent-yellow-rgb: 255, 221, 0;
    
    /* Neutrals */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --border-color-focus: rgba(0, 75, 135, 0.4);
    
    /* Semantic Colors */
    --success-green: #10b981;
    --success-green-light: #ecfdf5;
    --error-red: #ef4444;
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   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-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    background-color: rgba(0, 75, 135, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0.5rem auto 1.5rem;
    border-radius: 2px;
}

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

.required {
    color: var(--error-red);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 99;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.main-header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-blue);
    user-select: none;
}

.logo-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    background-color: var(--accent-yellow);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 0.75rem;
    box-shadow: 0 4px 10px rgba(255, 221, 0, 0.3);
    overflow: hidden;
}

.logo-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.logo-text .accent-text {
    color: var(--primary-blue-dark);
    position: relative;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

.nav-cta {
    background-color: var(--accent-yellow);
    color: var(--primary-blue-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--accent-yellow-hover);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.4);
}

/* Hamburger Menu Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: left center;
}

.mobile-menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: -2px;
    left: 3px;
}

.mobile-menu-toggle.open .bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: 2px;
    left: 3px;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    z-index: 101;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-slow);
    padding: 2rem;
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.mobile-nav-link {
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.mobile-nav-cta {
    background-color: var(--accent-yellow);
    color: var(--primary-blue-dark);
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mobile-nav-cta:hover {
    background-color: var(--accent-yellow-hover);
}

.drawer-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.drawer-footer p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-footer a {
    color: var(--primary-blue);
    font-weight: 500;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 54, 98, 0.4);
    backdrop-filter: blur(4px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.drawer-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO & CONTACT FORM SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--bg-light);
    padding: 6rem 0;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 75, 135, 0.03) 0%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-info {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: rgba(0, 75, 135, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.95rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .text-highlight {
    color: var(--primary-blue);
    background: linear-gradient(120deg, rgba(255, 221, 0, 0.4) 0%, rgba(255, 221, 0, 0.4) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.badge-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Card Form */
.contact-card-wrapper {
    position: relative;
    z-index: 2;
}

.contact-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 75, 135, 0.06);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-yellow) 100%);
    border-radius: 16px 16px 0 0;
}

.card-header {
    margin-bottom: 1.75rem;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.35rem;
}

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

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 1rem;
}

.input-wrapper textarea {
    padding-top: 0.85rem;
    resize: vertical;
    min-height: 100px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(0, 75, 135, 0.12);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
    color: var(--primary-blue);
}

.submit-button {
    width: 100%;
    background-color: var(--accent-yellow);
    color: var(--primary-blue-dark);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 10px rgba(255, 221, 0, 0.25);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    margin-top: 1.5rem;
}

.submit-button:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 221, 0, 0.35);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    background-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: rgba(0, 75, 135, 0.04);
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid rgba(0, 75, 135, 0.08);
}

.form-footer-badge i {
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 7.5rem 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-blue);
    transition: width var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 75, 135, 0.15);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 16px rgba(0, 75, 135, 0.2);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

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

.service-features li i {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* ==========================================================================
   WHY CHOOSE US / CORE VALUES SECTION
   ========================================================================== */
.why-us-section {
    padding: 7.5rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 75, 135, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.value-details h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.75rem;
}

.value-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--primary-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
    border-top: 4px solid var(--accent-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.company-info .logo {
    color: var(--bg-white);
    margin-bottom: 1.25rem;
}

.company-info .logo-icon {
    background-color: var(--accent-yellow);
    color: var(--primary-blue-dark);
}

.company-info .logo-text .accent-text {
    color: var(--accent-yellow);
}

.company-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue-dark);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-btn-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-btn-link:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.contact-list a:hover {
    color: var(--accent-yellow);
}

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.bottom-footer-content .credit a {
    color: var(--bg-white);
    font-weight: 600;
}

.bottom-footer-content .credit a:hover {
    color: var(--accent-yellow);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    color: var(--accent-yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-to-top-btn:hover {
    background-color: var(--primary-blue-light);
    transform: translateY(-3px);
}

/* ==========================================================================
   TOAST SYSTEM STYLING
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    width: calc(100vw - 4rem);
}

.toast {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    border-left: 5px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toast-slide-in var(--transition-normal) forwards;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

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

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

.toast-success .toast-icon {
    color: var(--success-green);
}

.toast-error .toast-icon {
    color: var(--error-red);
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-trigger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-trigger.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-info {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .trust-badges {
        width: 100%;
        max-width: 500px;
        align-items: center;
    }
    
    .badge-item {
        align-self: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col.company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Navbar Changes */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col.company-info {
        grid-column: span 1;
    }
    
    .bottom-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .toast-container {
        bottom: 1rem;
        left: 1rem;
        width: calc(100vw - 2rem);
    }
}
