.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-enquire-btn {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-enquire-btn:hover {
    background: #008a94;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 181, 0.25);
}

/* Who We Serve Section */
.who-we-serve {
    padding: 120px 0;
    background: var(--white);
}

.who-we-serve-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.who-we-serve-text {
    text-align: left;
}

.who-we-serve-text .section-label {
    display: inline-block;
    background: rgba(0, 168, 181, 0.1);
    color: var(--primary-teal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.who-we-serve-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.who-we-serve-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.who-we-serve-visual {
    position: relative;
}

.who-we-serve-visual .image-container {
    width: 400px;
    height: 300px;
}

.who-we-serve-visual .section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}



.serve-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center all cards properly */
/* First row: 4 cards centered */
.serve-grid .serve-item:nth-child(1) {
    grid-column: 1 / 3;
}

.serve-grid .serve-item:nth-child(2) {
    grid-column: 3 / 5;
}

.serve-grid .serve-item:nth-child(3) {
    grid-column: 5 / 7;
}

.serve-grid .serve-item:nth-child(4) {
    grid-column: 7 / 9;
}

/* Second row: 2 cards centered */
.serve-grid .serve-item:nth-child(5) {
    grid-column: 2 / 4;
}

.serve-grid .serve-item:nth-child(6) {
    grid-column: 6 / 8;
}

.serve-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.serve-item:hover {
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 168, 181, 0.1);
    border-color: var(--primary-teal);
}

.serve-item:hover .serve-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.3);
}

.serve-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.serve-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Team Section */
.team {
    padding: 120px 0;
    background: var(--light-gray);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    max-width: 350px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-navy) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 168, 181, 0.12);
    border-color: rgba(0, 168, 181, 0.3);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-info {
    text-align: center;
}

.member-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.member-title {
    color: var(--primary-teal);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: block;
}

.member-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Why NorthxGov Section */
.why-northxgov {
    padding: 120px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center all cards properly */
/* First row: 3 cards centered */
.why-grid .why-item:nth-child(1) {
    grid-column: 1 / 3;
}

.why-grid .why-item:nth-child(2) {
    grid-column: 3 / 5;
}

.why-grid .why-item:nth-child(3) {
    grid-column: 5 / 7;
}

/* Second row: 2 cards centered */
.why-grid .why-item:nth-child(4) {
    grid-column: 2 / 4;
}

.why-grid .why-item:nth-child(5) {
    grid-column: 4 / 6;
}

.why-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 168, 181, 0.12);
    border-color: var(--primary-teal);
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    background: var(--primary-teal);
    color: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin: 0 auto 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--light-gray);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 168, 181, 0.12);
    border-color: var(--primary-teal);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border-color: var(--primary-teal);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 168, 181, 0.15);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 168, 181, 0.15);
    border-color: var(--primary-teal);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 168, 181, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.pricing-header p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item svg {
    color: var(--success-green);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-size: 15px;
}

.pricing-ideal {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: var(--light-gray);
    border-radius: 12px;
}

.pricing-note p {
    color: var(--text-gray);
    font-style: italic;
}

.client-value {
    text-align: center;
    max-width: 800px;
    margin: 48px auto 0;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.client-value h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.value-item {
    color: var(--text-gray);
    line-height: 1.6;
}

.value-item strong {
    color: var(--primary-navy);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 168, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-header .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 168, 181, 0.3);
}

.info-header {
    margin-bottom: 32px;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.info-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 168, 181, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: var(--primary-teal);
    transform: scale(1.1);
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.method-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.method-content a:hover {
    color: var(--white);
}

.response-time {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1rem;
}

.method-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 168, 181, 0.3);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

/* Custom Select Dropdown Styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select:hover {
    border-color: rgba(0, 168, 181, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #1a1a2e !important;
    color: #ffffff !important;
    padding: 12px 16px;
    border: none;
    font-size: 15px;
}

.form-group select option:hover,
.form-group select option:checked {
    background: #00a8b5 !important;
    color: #ffffff !important;
}

.form-group select option:selected {
    background: #00a8b5 !important;
    color: #ffffff !important;
}

/* Enhanced styling for specific dropdowns */
#contactMethod,
#projectType {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border: 2px solid rgba(0, 168, 181, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
}

#contactMethod:focus,
#projectType:focus {
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.2), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: var(--primary-teal);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    background: #008a94;
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.form-note svg {
    color: var(--primary-teal);
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 168, 181, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(27, 54, 93, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 32px;
}

.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 181, 0.3);
}

.footer-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #008a94;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-teal);
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.link-group a:hover {
    color: var(--primary-teal);
    transform: translateX(4px);
}

.link-group a svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.link-group a:hover svg {
    opacity: 1;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 6px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

