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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0f172a;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #f1f5f9;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #094B66 0%, #073A4F 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5);
    background: linear-gradient(135deg, #073A4F 0%, #094B66 100%);
}

.btn-secondary {
    background-color: transparent;
    color: #0F91BF;
    border: 3px solid #0D78A2;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0D78A2 0%, #0A5F82 100%);
    color: #ffffff;
    transform: translateY(-4px);
    border-color: transparent;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation - Sidebar Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    transition: width 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    border-right: 1px solid #1e293b;
}

.header.scrolled {
    width: 100px;
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    padding: 0;
}

.nav-brand {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-bottom: 3rem;
}

.nav-brand h3 {
    color: #0F91BF;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Mobile menu - hidden on desktop */
.nav-menu {
    display: none;
}

/* Desktop menu in sidebar */
.nav-menu-desktop {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: #0F91BF;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: rotate(-45deg);
    padding: 20px 10px;
    display: inline-block;
    white-space: nowrap;
    background-color: transparent;
}

.nav-link:hover {
    color: #0F91BF;
}

.nav-link.active {
    color: #0F91BF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background-color: #0F91BF;
}

main {
    margin-left: 100px;
    min-height: 100vh;
}

/* Hero Section - Full Width with Overlay */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 3;
    max-width: 500px;
    width: 35%;
    height: auto;
    opacity: 0.95;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) 
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
}

.hero-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
}

.hero-logo-horizontal {
    display: block;
}

.hero-logo-text {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

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

.hero-title {
    color: #f1f5f9;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: #cbd5e1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Services Overview - Horizontal Scroll Cards */
.services-overview {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    padding-left: 60px;
}

.section-header h2 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.section-header p {
    font-size: 1.25rem;
    max-width: 600px;
    color: #94a3b8;
}

.services-container {
    overflow-x: auto;
    padding: 40px 0;
    margin: 0 -40px;
}

.services-container::-webkit-scrollbar {
    height: 8px;
}

.services-container::-webkit-scrollbar-track {
    background: #1e293b;
}

.services-container::-webkit-scrollbar-thumb {
    background: #0D78A2;
    border-radius: 4px;
}

.services-container::-webkit-scrollbar-thumb:hover {
    background: #0A5F82;
}

.services-grid {
    display: flex;
    gap: 2rem;
    padding: 0 60px;
    min-width: max-content;
}

.service-card {
    min-width: 400px;
    max-width: 400px;
    background-color: #1e293b;
    padding: 3rem;
    border-left: 6px solid #0D78A2;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.service-card:nth-child(1) { border-left-color: #0D78A2; }
.service-card:nth-child(2) { border-left-color: #0A5F82; }
.service-card:nth-child(3) { border-left-color: #094B66; }
.service-card:nth-child(4) { border-left-color: #073A4F; }
.service-card:nth-child(5) { border-left-color: #0F91BF; }
.service-card:nth-child(6) { border-left-color: #0D78A2; }
.service-card:nth-child(7) { border-left-color: #0A5F82; }

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    background-color: #334155;
    border-color: #0D78A2;
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #094B66 0%, #0D78A2 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.service-image {
    width: calc(100% + 6rem);
    height: 250px;
    display: block;
    margin: -3rem -3rem 2rem -3rem;
    object-fit: cover;
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #0D78A2 0%, #0A5F82 100%); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #0A5F82 0%, #094B66 100%); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #094B66 0%, #073A4F 100%); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #073A4F 0%, #094B66 100%); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #0F91BF 0%, #0D78A2 100%); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #0D78A2 0%, #0A5F82 100%); }
.service-card:nth-child(7) .service-icon { background: linear-gradient(135deg, #0A5F82 0%, #094B66 100%); }

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0F91BF 0%, #0D78A2 100%);
    transform: scale(1.1);
}

.service-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Service Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: #1e293b;
    border-radius: 0;
    padding: 4rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 6px solid #0D78A2;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #094B66 0%, #0D78A2 100%);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: linear-gradient(135deg, #0D78A2 0%, #0F91BF 100%);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    border-bottom: 3px solid #0D78A2;
    padding-bottom: 1.5rem;
}

.modal-header h2 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.modal-header .service-icon {
    margin-bottom: 1rem;
}

.modal-body {
    color: #cbd5e1;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #cbd5e1;
}

.modal-features {
    margin: 2rem 0;
}

.modal-features h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-features ul {
    list-style: none;
    padding-left: 0;
}

.modal-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.modal-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0F91BF;
    font-weight: 800;
}

.modal-cta {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 3px solid #0D78A2;
}

/* Trust Section - Asymmetric Layout */
.trust-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #ffffff;
    position: relative;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

.trust-content {
    padding: 0 60px;
}

.trust-content h2 {
    text-align: left;
    color: #f1f5f9;
    margin-bottom: 4rem;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

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

.trust-item {
    text-align: left;
    padding: 3rem 2rem;
    background-color: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #094B66 0%, #0D78A2 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.trust-item:nth-child(2)::before {
    background: linear-gradient(135deg, #0A5F82 0%, #0D78A2 100%);
}

.trust-item:nth-child(3)::before {
    background: linear-gradient(135deg, #073A4F 0%, #094B66 100%);
}

.trust-item:hover::before {
    left: 0;
}

.trust-item:hover {
    border-color: #0F91BF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.trust-item > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.trust-item:hover h3,
.trust-item:hover p {
    color: #ffffff;
}

.trust-item i {
    font-size: 3.5rem;
    color: #0F91BF;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.trust-item:hover i {
    color: #ffffff;
}

.trust-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.trust-item p {
    color: #cccccc;
    transition: color 0.4s ease;
}

/* Testimonial Section - Large Quote Style */
.testimonial-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.testimonial-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.testimonial-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #e5e7eb;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    font-style: italic;
    position: relative;
    padding-left: 4rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 8rem;
    color: #0D78A2;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 4rem;
}

.testimonial-author h4 {
    color: #f1f5f9;
    margin: 0;
    font-size: 1.5rem;
}

.testimonial-author span {
    color: #0F91BF;
    font-weight: 600;
    font-size: 1rem;
}

/* About Section - Split with Large Image */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: start;
    padding: 0 60px;
}

.about-text h2 {
    color: #f1f5f9;
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: #cbd5e1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    color: #0F91BF;
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #073A4F 0%, #094B66 50%, #0A5F82 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #ffffff;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.4);
}

/* Contact Section - Asymmetric Form Layout */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 3rem;
    padding: 0 60px;
}

.contact-info h2 {
    color: #f1f5f9;
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #1e293b;
    border-left: 6px solid #0D78A2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.contact-item:nth-child(1) { border-left-color: #0D78A2; }
.contact-item:nth-child(2) { border-left-color: #0A5F82; }
.contact-item:nth-child(3) { border-left-color: #094B66; }
.contact-item:nth-child(4) { border-left-color: #0F91BF; }

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    border-color: #0D78A2;
    background-color: #334155;
}

.contact-item i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #094B66 0%, #0D78A2 100%);
    color: #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.contact-item:nth-child(1) i { background: linear-gradient(135deg, #0D78A2 0%, #0A5F82 100%); }
.contact-item:nth-child(2) i { background: linear-gradient(135deg, #0A5F82 0%, #094B66 100%); }
.contact-item:nth-child(3) i { background: linear-gradient(135deg, #094B66 0%, #073A4F 100%); }
.contact-item:nth-child(4) i { background: linear-gradient(135deg, #0F91BF 0%, #0D78A2 100%); }

.contact-item h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1.125rem;
}

.contact-item a {
    color: #0F91BF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3EADD4;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem;
    border: 6px solid #0D78A2;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, #094B66 0%, #0A5F82 50%, #0D78A2 100%);
    z-index: -1;
}

.contact-form h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background-color: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(15, 23, 42, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* CTA Strip - Diagonal Split */
.cta-strip {
    padding: 120px 0;
    background: linear-gradient(135deg, #073A4F 0%, #094B66 50%, #0A5F82 100%);
    text-align: center;
    position: relative;
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);
    padding: 0 60px;
}

.cta-content {
    padding: 120px 0;
}

.cta-content h3 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-strip .btn-primary {
    background: linear-gradient(135deg, #094B66 0%, #073A4F 100%);
    color: #ffffff;
    border-color: #094B66;
}

.cta-strip .btn-primary:hover {
    background: linear-gradient(135deg, #073A4F 0%, #094B66 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5);
}

.cta-strip .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-strip .btn-secondary:hover {
    background-color: #ffffff;
    color: #073A4F;
}

/* Footer - Minimal */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 60px 0 30px;
    color: #ffffff;
    border-top: 6px solid #0D78A2;
    margin-left: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 0 60px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-section ul li a:hover {
    color: #0F91BF;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(59, 130, 246, 0.2);
    color: #0F91BF;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #094B66 0%, #0D78A2 100%);
    color: #ffffff;
    transform: translateY(-4px);
    border-color: #0D78A2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #334155;
    padding: 0 60px;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Hamburger Menu Button - Hidden by default on desktop */
.nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2001;
    background: rgba(30, 41, 59, 0.95);
    border: 2px solid #0D78A2;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #0F91BF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle:hover {
    background: rgba(30, 41, 59, 1);
    border-color: #0F91BF;
    transform: scale(1.05);
}

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

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

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

/* Mobile Menu Overlay Background */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        position: relative;
        top: auto;
        margin-top: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu button on mobile */
    .nav-toggle {
        display: flex;
    }
    
    /* Hide the sidebar completely on mobile */
    .header {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    /* Hide desktop menu */
    .nav-menu-desktop {
        display: none;
    }
    
    /* Remove left margin from main content */
    main {
        margin-left: 0;
    }
    
    /* Remove left margin from footer */
    .footer {
        margin-left: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        padding: 80px 2rem 2rem;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        border-right: 2px solid #0D78A2;
        z-index: 1999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav-menu .nav-link {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        padding: 15px 20px;
        font-size: 1.5rem;
        width: 100%;
        display: block;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        border-left-color: #0F91BF;
        background-color: rgba(59, 130, 246, 0.1);
    }
    
    .nav-menu .nav-link.active::after {
        display: none;
    }
    
    .nav-brand {
        display: none;
    }
    
    /* Adjust hero logo for mobile */
    .hero-logo {
        top: 80px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 300px;
        width: 60%;
    }
    
    .hero-logo-horizontal {
        display: none;
    }
    
    .hero-logo-text {
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-header,
    .hero-container,
    .services-grid,
    .trust-content,
    .testimonial-card,
    .about-content,
    .contact-content,
    .cta-strip,
    .footer-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .services-grid {
        flex-direction: column;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        padding: 2rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    /* Keep header hidden and main content full width */
    .header {
        transform: translateX(-100%);
    }
    
    main {
        margin-left: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card,
    .trust-item,
    .testimonial-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding-left: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 1rem;
    }
    
    /* Make mobile menu slightly wider on small screens */
    .nav-menu {
        width: 85%;
        max-width: 280px;
    }
}
