/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5B9EF8;
    --primary-dark: #4A8DE5;
    --secondary-color: #10b981;
    --navy-bg: #1a3a52;
    --dark-navy: #0f2537;
    --darker-navy: #0a1929;
    --light-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #cbd5e1;
    --text-lighter: #94a3b8;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 37, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, #1a3a52 0%, #0f2537 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(91, 158, 248, 0.15);
    border: 1px solid rgba(91, 158, 248, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-badge svg {
    color: var(--primary-blue);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--text-lighter);
    font-weight: 400;
}

/* Sections */
.offerings,
.why-choose {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.offering-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.offering-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.offering-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Offerings Grid - Clean Design */
.offerings-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offering-card-enhanced {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eef5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offering-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(91, 158, 248, 0.15);
    border-color: rgba(91, 158, 248, 0.3);
}

.offering-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(91, 158, 248, 0.1) 0%, rgba(91, 158, 248, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.offering-card-enhanced:hover .offering-icon-enhanced {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(91, 158, 248, 0.25);
}

.offering-icon-enhanced svg {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.offering-card-enhanced:hover .offering-icon-enhanced svg {
    color: white;
}

.offering-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offering-description-enhanced {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .offerings-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .offerings-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offering-card-enhanced {
        padding: 2.5rem 2rem;
    }

    .offering-icon-enhanced {
        width: 70px;
        height: 70px;
    }

    .offering-icon-enhanced svg {
        width: 35px;
        height: 35px;
    }

    .offering-title-enhanced {
        font-size: 1.375rem;
    }

    .offering-description-enhanced {
        font-size: 1rem;
    }
}

/* Why Choose Section */
.why-choose {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-content {
    max-width: 600px;
}

.section-tag-alt {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.why-choose-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-choose-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.feature-icon-check svg {
    width: 18px;
    height: 18px;
    color: white;
    stroke-width: 3;
}

.feature-content {
    flex: 1;
}

.feature-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-description-new {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Choose Visual */
.why-choose-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.stats-visual {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(91, 158, 248, 0.1) 0%, transparent 70%);
}

.stat-badge {
    position: absolute;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 2;
}

.stat-badge-top {
    top: 50px;
    right: 50px;
}

.stat-badge-bottom {
    bottom: 80px;
    left: 50px;
}

.stat-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-badge-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-circle {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.circle-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(91, 158, 248, 0.2);
}

.ring-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: pulse-ring 3s infinite;
}

.ring-2 {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    animation: pulse-ring 3s infinite 1s;
}

.ring-3 {
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    animation: pulse-ring 3s infinite 2s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.stat-circle-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.stat-circle-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-circle-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.5;
}

/* Old Why Choose Styles (keeping for backward compatibility) */
.why-choose .section-title {
    color: white;
}

.why-choose .section-description {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive Why Choose */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .stats-visual {
        height: 500px;
    }

    .stat-circle {
        width: 320px;
        height: 320px;
    }

    .stat-circle-number {
        font-size: 3.5rem;
    }

    .stat-badge-top {
        top: 30px;
        right: 30px;
    }

    .stat-badge-bottom {
        bottom: 50px;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 0;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-intro {
        font-size: 1rem;
    }

    .stats-visual {
        height: 450px;
    }

    .stat-circle {
        width: 280px;
        height: 280px;
    }

    .stat-circle-number {
        font-size: 3rem;
    }

    .stat-circle-label {
        font-size: 1rem;
    }

    .stat-badge {
        padding: 1.25rem 1.5rem;
    }

    .stat-badge-number {
        font-size: 2rem;
    }

    .stat-badge-label {
        font-size: 0.875rem;
    }

    .stat-badge-top {
        top: 20px;
        right: 20px;
    }

    .stat-badge-bottom {
        bottom: 30px;
        left: 20px;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* New CTA Section */
.cta-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d5482 0%, #1e3a5f 100%);
    color: white;
    text-align: center;
}

.cta-content-new {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title-new {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-description-new {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-buttons-new {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-new {
        padding: 4rem 0;
    }

    .cta-title-new {
        font-size: 2rem;
    }

    .cta-description-new {
        font-size: 1rem;
    }

    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons-new .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .offerings,
    .why-choose {
        padding: 4rem 0;
    }

    .offerings-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Offerings Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--navy-bg) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 8rem 0 5rem;
    margin-top: 72px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

.offerings-page {
    padding: 5rem 0;
    background: var(--light-bg);
}

.offerings-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offering-card-large {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offering-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(91, 158, 248, 0.15);
    border-color: var(--primary-blue);
}

.offering-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(91, 158, 248, 0.1) 0%, rgba(91, 158, 248, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.offering-card-large:hover .offering-icon-large {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.offering-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.offering-card-large:hover .offering-icon-large svg {
    color: white;
}

.offering-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offering-description-large {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-bg) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-blue);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Responsive Adjustments for Offerings Page */
@media (max-width: 1200px) {
    .offerings-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .offerings-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offering-card-large {
        padding: 2.5rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* New Footer */
.footer-new {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5482 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-new {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-tagline-new {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
}

.social-links-new {
    display: flex;
    gap: 0.875rem;
}

.social-links-new a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links-new a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.social-links-new svg {
    width: 18px;
    height: 18px;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-heading-new {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: 0.3px;
}

.footer-links-new {
    list-style: none;
}

.footer-links-new li {
    margin-bottom: 0.875rem;
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links-new a:hover {
    color: white;
}

.footer-contact-new {
    list-style: none;
}

.footer-contact-new li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-new svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-blue);
    margin-top: 3px;
}

.footer-bottom-new {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom-new p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-new {
        padding: 3rem 0 1.5rem;
    }

    .footer-content-new {
        gap: 2.5rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .social-links-new {
        justify-content: center;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5482 100%);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: 72px;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mission-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 4px solid var(--primary-blue);
    padding-left: 2rem;
    margin: 0;
    text-align: left;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(91, 158, 248, 0.15);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(91, 158, 248, 0.1) 0%, rgba(91, 158, 248, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.value-card:hover .value-icon svg {
    color: white;
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(91, 158, 248, 0.15);
    border-color: var(--primary-blue);
}

.team-member-header {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.team-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar svg {
    width: 32px;
    height: 32px;
    color: white;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-experience {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.team-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(91, 158, 248, 0.1);
    color: var(--primary-blue);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-description {
        font-size: 1.125rem;
    }

    .mission-section {
        padding: 4rem 0;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-quote {
        font-size: 1.25rem;
        padding-left: 1.5rem;
    }

    .values-section,
    .team-section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-info {
        width: 100%;
    }

    .team-description {
        text-align: center;
    }

    .team-skills {
        justify-content: center;
    }
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5482 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-tag-alt {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(91, 158, 248, 0.15);
    color: var(--primary-blue);
    border: 1px solid rgba(91, 158, 248, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Services Content */
.services-content {
    padding: 100px 0;
    background: #ffffff;
}

/* Service Block */
.service-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    padding: 60px 0;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block-reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(91, 158, 248, 0.05);
    border: 1px solid rgba(91, 158, 248, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-feature:hover {
    background: rgba(91, 158, 248, 0.1);
    border-color: rgba(91, 158, 248, 0.3);
    transform: translateY(-2px);
}

.service-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Service Icon Large */
.service-icon-large {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 158, 248, 0.1) 0%, rgba(91, 158, 248, 0.05) 100%);
    border: 2px solid rgba(91, 158, 248, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 158, 248, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.service-icon-large svg {
    width: 120px;
    height: 120px;
    color: var(--primary-blue);
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Custom Solution CTA */
.custom-solution-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.custom-solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.custom-solution-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.custom-solution-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Enhancements */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-hero-title {
        font-size: 2.5rem;
    }

    .service-block {
        gap: 60px;
        margin-bottom: 80px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-icon-large {
        width: 250px;
        height: 250px;
    }

    .service-icon-large svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-description {
        font-size: 1.125rem;
    }

    .service-block,
    .service-block-reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .service-title {
        font-size: 1.75rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-icon-large {
        width: 200px;
        height: 200px;
    }

    .service-icon-large svg {
        width: 80px;
        height: 80px;
    }

    .custom-solution-title {
        font-size: 2rem;
    }

    .custom-solution-description {
        font-size: 1.125rem;
    }

    .custom-solution-buttons {
        flex-direction: column;
        align-items: center;
    }

    .custom-solution-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .services-hero-title {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .custom-solution-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5482 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
}

.products-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Products Content */
.products-content {
    padding: 100px 0;
    background: #ffffff;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.product-image {
    background: linear-gradient(135deg, rgba(91, 158, 248, 0.1) 0%, rgba(91, 158, 248, 0.05) 100%);
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.product-icon-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(91, 158, 248, 0.3);
}

.product-icon-placeholder svg {
    width: 60px;
    height: 60px;
    color: #ffffff;
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-header {
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(91, 158, 248, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(91, 158, 248, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-feature-item:hover {
    background: rgba(91, 158, 248, 0.08);
}

.product-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.btn-product {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Custom Product CTA */
.custom-product-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.custom-product-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.custom-product-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Responsive Design for Products */
@media (max-width: 1024px) {
    .products-hero-title {
        font-size: 2.5rem;
    }

    .products-grid {
        gap: 30px;
    }

    .product-name {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 120px 0 60px;
    }

    .products-hero-title {
        font-size: 2rem;
    }

    .products-hero-description {
        font-size: 1.125rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image {
        padding: 40px;
    }

    .product-icon-placeholder {
        width: 100px;
        height: 100px;
    }

    .product-icon-placeholder svg {
        width: 50px;
        height: 50px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .custom-product-title {
        font-size: 2rem;
    }

    .custom-product-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .products-hero-title {
        font-size: 1.75rem;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .custom-product-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5482 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Contact Content */
.contact-content {
    padding: 100px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1.125rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(91, 158, 248, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-lighter);
}

.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Contact Info Section */
.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(91, 158, 248, 0.05);
    border: 1px solid rgba(91, 158, 248, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(91, 158, 248, 0.1);
    border-color: rgba(91, 158, 248, 0.3);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Office Locations */
.office-locations {
    margin-bottom: 2.5rem;
}

.office-locations-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.office-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.office-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 158, 248, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.office-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.office-content {
    flex: 1;
}

.office-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.office-address {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Social Section */
.social-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link-contact {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 158, 248, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
}

.social-link-contact svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.social-link-contact:hover svg {
    color: #ffffff;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        gap: 60px;
    }

    .contact-info-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 1.125rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-section-title {
        font-size: 1.5rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .office-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-links-contact {
        justify-content: center;
    }
}