:root {
    --navy-blue: #0A1F44;
    --navy-light: #1A3A6B;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --white: #FFFFFF;
    --grey: #6B7280;
    --grey-light: #F3F4F6;
    --grey-dark: #374151;
    --gradient-navy: linear-gradient(135deg, #0A1F44 0%, #1A3A6B 100%);
    --gradient-silver: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
    --shadow-sm: 0 2px 4px rgba(10, 31, 68, 0.1);
    --shadow-md: 0 4px 8px rgba(10, 31, 68, 0.15);
    --shadow-lg: 0 8px 16px rgba(10, 31, 68, 0.2);
    --shadow-xl: 0 16px 32px rgba(10, 31, 68, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--grey-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--grey-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-container::before,
.nav-container::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%);
}

.nav-container::before {
    left: 0;
    right: calc(50% + 280px);
}

.nav-container::after {
    right: 0;
    left: calc(50% + 280px);
}

.header.scrolled .nav-container {
    padding: 0.4rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 4rem;
    position: relative;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}


.header.scrolled .logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 3.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-img {
    width: 450px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    width: 350px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hamburger-wrapper {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    z-index: 1001;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hamburger-wrapper:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 40px;
    height: 4px;
    background: var(--navy-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-blue);
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}

.hamburger-wrapper.active .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-wrapper.active .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.hamburger-wrapper.active .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.side-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(10, 31, 68, 0.15);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

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

.side-menu-header {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: repeating-linear-gradient(
        45deg,
        #0A1F44,
        #0A1F44 20px,
        #4A7BA7 20px,
        #4A7BA7 40px
    );
    background-size: 200% 200%;
    animation: stripeMove 8s linear infinite;
}

@keyframes stripeMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.side-menu-categories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.side-menu-categories h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.close-menu {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.8rem;
    color: var(--navy-blue);
    cursor: pointer;
    padding: 0.6rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.close-menu:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.side-menu-nav {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: rgba(10, 31, 68, 0.05);
    border: 2px solid transparent;
}

.side-menu-nav a:hover {
    background: rgba(10, 31, 68, 0.1);
    border-color: var(--navy-blue);
    color: var(--navy-blue);
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.15);
}

.side-menu-nav a.active {
    background: var(--gradient-navy);
    border-color: var(--navy-blue);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.2);
}

.side-menu-nav a i {
    font-size: 1.6rem;
    width: 32px;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 31, 68, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero {
    padding: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.7) 0%, rgba(26, 58, 107, 0.5) 100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide[data-slide="0"] {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
}

.hero-slide[data-slide="1"] {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
}

.hero-slide[data-slide="2"] {
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&q=80');
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text-container {
    position: relative;
    min-height: 350px;
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-text-slide h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text-slide p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--navy-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
}


.features {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('520x160logo.png');
    background-repeat: repeat;
    background-size: 400px auto;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--grey-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--silver);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--grey);
    line-height: 1.6;
}

.showcase {
    padding: 80px 0;
    background: var(--grey-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.95), transparent);
    padding: 2rem;
    color: var(--white);
}

.showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.showcase-content p {
    font-size: 1rem;
    color: var(--silver-light);
}

.cta {
    padding: 80px 0;
    background: var(--gradient-navy);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 50%, #0a1f44 100%);
    position: relative;
    color: var(--white);
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('520x160logo.png') repeat;
    background-size: 300px auto;
    opacity: 0.03;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--silver);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--silver);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    color: var(--silver);
}

.footer-legal {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
    text-decoration: underline;
}

.policy-content {
    padding: 80px 0;
    background: var(--white);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
}

.policy-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-text ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-dark);
    margin-bottom: 0.75rem;
}

.policy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--grey-light);
    font-size: 0.95rem;
    color: var(--grey);
}

.page-hero {
    padding: 180px 0 80px;
    background: var(--gradient-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* About page hero background */
body:has(a[href="about.html"].active) .page-hero::before,
.about-page .page-hero::before {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80');
}

/* Services page hero background */
body:has(a[href="services.html"].active) .page-hero::before,
.services-page .page-hero::before {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
}

/* Contact page hero background */
body:has(a[href="contact.html"].active) .page-hero::before,
.contact-page .page-hero::before {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80');
}

/* Policy pages hero background */
.policy-page .page-hero::before {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80');
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--silver-light);
}

.about-intro {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-visual {
    display: grid;
    gap: 1.5rem;
}

.visual-card {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--silver-light);
}

.visual-card i {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.visual-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--grey);
}

.values {
    padding: 80px 0;
    background: var(--grey-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.15);
    border-color: rgba(10, 31, 68, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--grey);
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--grey-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-image i {
    font-size: 3rem;
    color: var(--white);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
}

.services-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-detail-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(10, 31, 68, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-overlay i {
    transform: scale(1);
}

.service-detail-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-navy);
    border-radius: 2px;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.service-features i {
    color: var(--navy-blue);
    font-size: 1.1rem;
}

.why-work-with-us {
    padding: 80px 0;
    background: var(--white);
}

.work-with-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.work-with-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.work-with-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.work-with-us-content > p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--navy-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-list h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.25rem;
}

.benefits-list p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
}

.pricing-preview {
    padding: 80px 0;
    background: var(--grey-light);
}

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

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-blue);
}

.pricing-card.featured {
    border-color: var(--navy-blue);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-navy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--grey);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-blue);
}

.period {
    font-size: 1rem;
    color: var(--grey);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

.pricing-features i {
    color: var(--navy-blue);
}

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: var(--gradient-navy);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
}

.contact-info-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info-box > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-text a {
    font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.business-hours {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 12px;
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--silver-light);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day {
    font-weight: 600;
    color: var(--grey-dark);
}

.time {
    color: var(--grey);
}

.contact-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--gradient-navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 31, 68, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

.user-type-selector {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.user-type-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.user-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.user-type-option span {
    display: block;
    padding: 1rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    color: var(--grey-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.user-type-option input[type="radio"]:checked + span {
    border-color: var(--navy-blue);
    background: var(--navy-blue);
    color: var(--white);
}

.user-type-option:hover span {
    border-color: var(--navy-blue);
}

.contact-form-container {
    background: var(--grey-light);
    padding: 3rem;
    border-radius: 12px;
}

.map-section {
    padding: 60px 0;
    background: var(--grey-light);
}

.map-placeholder {
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--silver);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--silver);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--grey);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.slide-in-left:nth-child(1) { animation-delay: 0.1s; }
.slide-in-left:nth-child(2) { animation-delay: 0.2s; }
.slide-in-left:nth-child(3) { animation-delay: 0.3s; }
.slide-in-left:nth-child(4) { animation-delay: 0.4s; }

.slide-in-right:nth-child(1) { animation-delay: 0.1s; }
.slide-in-right:nth-child(2) { animation-delay: 0.2s; }
.slide-in-right:nth-child(3) { animation-delay: 0.3s; }
.slide-in-right:nth-child(4) { animation-delay: 0.4s; }

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.showcase-grid .slide-in-left,
.showcase-grid .slide-in-right {
    animation-delay: 0.2s;
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info-box {
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-section {
        overflow-x: hidden;
    }

    .contact-details {
        width: 100%;
    }

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

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: initial;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .service-detail-content {
        padding: 2rem;
    }

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

    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Thank You Page */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    margin-top: 120px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1A3A6B 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.thank-you-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.thank-you-submessage {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    min-width: 200px;
}

.thank-you-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.thank-you-info h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.thank-you-info ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-info ul li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thank-you-info ul li i {
    color: var(--navy-blue);
    font-size: 1.2rem;
    min-width: 24px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--grey-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cookie-option {
    flex: 1;
    min-width: 150px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-blue);
}

.cookie-option input[type="checkbox"] {
    display: none;
}

.cookie-option .toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    transition: background 0.3s ease;
}

.cookie-option .toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-option input[type="checkbox"]:checked + .toggle {
    background: var(--navy-blue);
}

.cookie-option input[type="checkbox"]:checked + .toggle::after {
    transform: translateX(24px);
}

.cookie-option input[type="checkbox"]:disabled + .toggle {
    background: var(--navy-blue);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deny-btn {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--grey-light);
}

.deny-btn:hover {
    background: var(--grey-light);
}

.selection-btn {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.selection-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.allow-btn {
    background: var(--navy-blue);
    color: var(--white);
}

.allow-btn:hover {
    background: var(--navy-light);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.5rem;
    }

    .cookie-options {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .work-with-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-with-us-image {
        order: 2;
    }

    .work-with-us-content {
        order: 1;
    }

    .work-with-us-content h2 {
        font-size: 2rem;
    }

    .side-menu {
        width: 340px;
    }

    .side-menu-logo {
        height: 80px;
    }

    .side-menu-nav a {
        font-size: 1.2rem;
        padding: 1.3rem 1.5rem;
    }

    .side-menu-nav a i {
        font-size: 1.4rem;
    }

    .hero-text-slide h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-text-slide p {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 80vh;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .side-menu {
        width: 300px;
    }

    .side-menu-logo {
        height: 70px;
    }

    .side-menu-nav {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .side-menu-nav a {
        font-size: 1.1rem;
        padding: 1.2rem 1.3rem;
    }

    .side-menu-nav a i {
        font-size: 1.3rem;
    }

    .logo {
        padding: 0.4rem 1.5rem;
    }

    .header.scrolled .logo {
        padding: 0.3rem 1rem;
    }

    .logo-img {
        width: 180px;
    }

    .header.scrolled .logo-img {
        width: 160px;
    }

    .hamburger-wrapper {
        right: 0.5rem;
        padding: 0.5rem 0.7rem;
    }

    .nav-container {
        padding: 0.3rem 0.5rem;
    }

    .hamburger-menu span {
        width: 28px;
        height: 3px;
    }

    .menu-text {
        font-size: 0.8rem;
    }

    .side-menu-categories {
        display: none;
    }
}

/* Landscape mobile view - horizontal orientation */
@media (max-width: 768px) and (max-height: 500px) {
    .logo-img {
        width: 140px;
    }

    .header.scrolled .logo-img {
        width: 120px;
    }

    .logo {
        padding: 0.3rem 1rem;
    }

    .header.scrolled .logo {
        padding: 0.2rem 0.8rem;
    }

    .hamburger-wrapper {
        right: 0.3rem;
        padding: 0.4rem 0.6rem;
    }

    .nav-container {
        padding: 0.2rem 0.3rem;
    }

    .hamburger-menu span {
        width: 25px;
        height: 2.5px;
    }

    .menu-text {
        font-size: 0.65rem;
    }

    .hero {
        margin-top: 90px;
        min-height: calc(100vh - 90px);
        padding-top: 2rem;
    }

    .page-hero {
        margin-top: 90px;
        min-height: 200px;
        padding-top: 2rem;
    }
}
