/* Mobile App Development City Page - Reusable CSS */
/* This file contains styles that can be reused across different city pages */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #8b5cf6;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Marquee */
.marquee-section {
    background: var(--primary);
    color: white;
    padding: 15px 0;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin-right: 40px;
    font-size: 18px;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.service-item:hover .service-icon-wrapper::after {
    transform: rotate(45deg) translateX(100%);
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-body {
    padding: 20px;
}

.service-body p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.feature-item i {
    color: var(--success);
    font-size: 1rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.service-cta {
    text-align: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.service-btn i {
    font-size: 0.85rem;
}

/* Process Section */
.process-section {
    background: #f1f5f9;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 300px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    z-index: 0;
}

.step-features {
    margin-top: 20px;
}

.step-features ul {
    list-style: none;
}

.step-features ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.step-features ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured .pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    font-weight: 600;
    transform: rotate(45deg);
    font-size: 14px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

.price {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 1.5rem;
    margin-top: 8px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 18px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features h4 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: var(--success);
    margin-right: 10px;
}

.pricing-card .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0 auto 30px;
    text-align: center;
    align-self: center;
}

/* Contact Form */
.contact-form-section {
    background: white;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    opacity: 1;
    pointer-events: none;
}

.contact-form-section .section-header h2,
.contact-form-section .section-header p {
    color: var(--dark);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* Ensure form fields are interactive */
.form-container input,
.form-container textarea,
.form-container select {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
}

/* Override any global form styles */
#enquiryForm input,
#enquiryForm textarea,
#enquiryForm select {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus,
#enquiryForm select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    transform: translateY(-2px) !important;
    background: white !important;
    color: var(--dark) !important;
}

#enquiryForm select {
    cursor: pointer !important;
}

/* Override any disabled states */
#enquiryForm input:not([disabled]),
#enquiryForm textarea:not([disabled]),
#enquiryForm select:not([disabled]) {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
}

#enquiryForm select:not([disabled]) {
    cursor: pointer !important;
}

/* Force enable all form fields */
#enquiryForm input,
#enquiryForm textarea,
#enquiryForm select {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

#enquiryForm select {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 15px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    padding-right: 50px !important;
}

/* Ensure form fields are not visually disabled */
#enquiryForm input:hover,
#enquiryForm textarea:hover,
#enquiryForm select:hover {
    border-color: var(--primary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
}

/* Override any disabled appearance */
#enquiryForm input[disabled],
#enquiryForm textarea[disabled],
#enquiryForm select[disabled] {
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
    cursor: text !important;
    pointer-events: auto !important;
}

#enquiryForm select[disabled] {
    cursor: pointer !important;
}

/* Ensure form fields are always interactive */
#enquiryForm input,
#enquiryForm textarea,
#enquiryForm select {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    opacity: 1 !important;
    background: white !important;
    color: var(--dark) !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

#enquiryForm select {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 15px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    padding-right: 50px !important;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 300px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    background: white !important;
    color: var(--dark) !important;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: text !important;
    pointer-events: auto !important;
    user-select: text !important;
    opacity: 1 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    transform: translateY(-2px);
    background: white !important;
    color: var(--dark) !important;
    cursor: text !important;
    pointer-events: auto !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
    color: var(--gray);
    opacity: 0.7;
}

.form-group select option {
    color: var(--dark);
    background: white;
    padding: 8px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

/* FAQ */
.faq-section {
    background: #f1f5f9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

/* People Search */
.search-keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.keyword-category {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.keyword-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.keyword-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keyword-links a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--gray);
    position: relative;
    padding-left: 25px;
    overflow-wrap: anywhere;
}

.keyword-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary);
}

.keyword-links a:hover {
    background: var(--light-gray);
    color: var(--primary);
    padding-left: 30px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-card span {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--dark);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

/* City Focus Section - Generic */
.city-focus {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    opacity: 0.2;
}

.city-focus h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.city-focus p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.city-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.city-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-feature h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.company-name {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.website-title {
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6B00;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #000000;
    transition: all 0.3s ease;
    display: block;
}

/* Responsive Design */
/* Tablet Styles */
@media (min-width: 768px) {
    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-header {
        padding: 28px 24px 24px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .service-title h3 {
        font-size: 1.5rem;
    }
    
    .service-body {
        padding: 24px;
    }
    
    .service-body p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .service-features {
        gap: 14px;
        margin-bottom: 28px;
    }
    
    .feature-item {
        gap: 14px;
        padding: 10px 0;
    }
    
    .feature-item i {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .service-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .service-header {
        padding: 32px 28px 28px;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .service-title h3 {
        font-size: 1.6rem;
    }
    
    .service-body {
        padding: 28px;
    }
    
    .service-body p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    
    .service-features {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .feature-item {
        gap: 16px;
        padding: 12px 0;
    }
    
    .feature-item i {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .feature-item span {
        font-size: 1rem;
    }
    
    .service-btn {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .service-header {
        padding: 36px 32px 32px;
    }
    
    .service-icon-wrapper {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .service-title h3 {
        font-size: 1.8rem;
    }
    
    .service-body {
        padding: 32px;
    }
    
    .service-body p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .service-features {
        gap: 18px;
        margin-bottom: 36px;
    }
    
    .feature-item {
        gap: 18px;
        padding: 14px 0;
    }
    
    .feature-item i {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .feature-item span {
        font-size: 1.05rem;
    }
    
    .service-btn {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Pricing Section Tablet */
    .pricing-grid {
        justify-items: center;
        gap: 28px;
    }
    
    .pricing-card {
        max-width: 350px;
    }
    
    .pricing-header h3,
    .pricing-features h4 {
        text-align: center;
    }
    
    .pricing-features ul {
        text-align: center;
    }
    
    .pricing-features ul li {
        justify-content: center;
    }
    
    /* Process Section Tablet */
    .process-steps {
        gap: 28px;
    }
    
    .process-step {
        padding: 28px 25px;
    }
    
    .step-number {
        font-size: 2.9rem;
    }
    
    /* City Focus Tablet */
    .city-focus {
        padding: 80px 0;
    }
    
    .city-focus h2 {
        font-size: 2.5rem;
    }
    
    .city-focus p {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .city-features {
        gap: 25px;
    }
    
    .city-feature {
        padding: 25px 22px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 0;
        transition: all 0.3s ease;
        gap: 1.5rem;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding-top: 70px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    /* Stats Section Mobile - 2 cards per row */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Pricing Section Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 20px;
        width: 100%;
        margin: 0;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    /* Ensure pricing CTA button is centered on mobile */
    .pricing-card .cta-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        align-self: center !important;
    }
    
    .pricing-header h3,
    .pricing-features h4 {
        text-align: center;
    }
    
    .pricing-features ul {
        text-align: center;
    }
    
    .pricing-features ul li {
        justify-content: center;
    }
    
    .pricing-header {
        padding: 28px 25px;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .pricing-features {
        padding: 28px 25px;
    }
    
    /* Process Section Mobile */
    .process-steps {
        gap: 25px;
        margin-top: 35px;
    }
    
    .process-step {
        padding: 25px 22px;
    }
    
    .step-number {
        font-size: 2.8rem;
        top: 18px;
        right: 18px;
    }
    
    .step-features ul li {
        padding: 7px 0;
        padding-left: 22px;
        font-size: 0.95rem;
    }
    
    /* City Focus Mobile */
    .city-focus {
        padding: 70px 0;
    }
    
    .city-focus h2 {
        font-size: 2.2rem;
    }
    
    .city-focus p {
        font-size: 1rem;
        max-width: 600px;
        margin-bottom: 30px;
    }
    
    .city-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .city-feature {
        padding: 22px 20px;
    }
    
    .city-feature h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    /* Features Grid Mobile - 2 cards per row */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Contact Cards Mobile - 2 cards per row */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .city-focus h2 {
        font-size: 2rem;
    }
    
    .marquee-content span {
        font-size: 14px;
    }
    
    /* Stats Section Extra Small Mobile - Maintain 2 cards per row */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Pricing Section Extra Small Mobile */
    .pricing-grid {
        gap: 16px;
        width: 100%;
        margin: 0;
    }
    
    .pricing-header {
        padding: 25px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 25px 20px;
    }
    
    /* Process Section Extra Small Mobile */
    .process-steps {
        gap: 20px;
        margin-top: 30px;
    }
    
    .process-step {
        padding: 20px 18px;
    }
    
    .step-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .step-features ul li {
        padding: 6px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    /* Sherghati Focus Section - Ultra Modern & Professional UI/UX */
.sherghati-focus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    color: #ffffff;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 100px 0;
    position: relative;
}

.sherghati-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.sherghati-focus::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.sherghati-focus .container {
    position: relative;
    z-index: 3;
}

.sherghati-focus h2 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
    position: relative;
    background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.8)); }
}

.sherghati-focus > .container > p {
    font-size: 1.6rem;
    max-width: 1000px;
    margin: 0 auto 5rem;
    opacity: 0.95;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.sherghati-focus > .container > p::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 2px;
}

.sherghati-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3.5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.sherghati-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(0) scale(1);
    cursor: pointer;
}

.sherghati-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.sherghati-feature:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.sherghati-feature:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
}

/* Enhanced icon styling */
.sherghati-feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sherghati-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.sherghati-feature:hover .sherghati-feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 35px 70px rgba(102, 126, 234, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.sherghati-feature:hover .sherghati-feature-icon::before {
    left: 100%;
}

.sherghati-feature h3 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.sherghati-feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 3px;
    transition: all 0.4s ease;
    transform-origin: center;
}

.sherghati-feature:hover h3::after {
    width: 140px;
    height: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.sherghati-feature p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sherghati-feature:hover p {
    color: #334155;
}

    /* Sherghati Focus Mobile Responsive */
    .sherghati-focus {
        padding: 100px 0;
        margin: 60px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    }
    
    .sherghati-focus h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: #ffffff;
        text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .sherghati-focus > .container > p {
        font-size: 1.3rem;
        max-width: 700px;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.98);
    }
    
    .sherghati-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 900px;
    }
    
    .sherghati-feature {
        padding: 3rem 2rem;
        background: rgba(255, 255, 255, 0.95);
        border: 3px solid rgba(255, 255, 255, 0.4);
        border-radius: 24px;
        backdrop-filter: blur(30px);
    }
    
    .sherghati-feature:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
    }
    
    .sherghati-feature h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        color: #1e293b;
        padding-bottom: 1.5rem;
    }
    
    .sherghati-feature p {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.7;
    }
    
    .sherghati-feature-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        border-radius: 22px;
    }
    
    /* City Focus Extra Small Mobile */
    .city-focus {
        padding: 60px 0;
    }
    
    .city-focus h2 {
        font-size: 1.8rem;
    }
    
    .city-focus p {
        font-size: 0.95rem;
        max-width: 500px;
        margin-bottom: 25px;
    }
    
    .city-features {
        gap: 18px;
    }
    
    .city-feature {
        padding: 20px 18px;
    }
    
    .city-feature h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    /* Features Grid Extra Small Mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Sherghati Focus Extra Small Mobile */
    .sherghati-focus {
        padding: 60px 0;
        margin: 40px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    }
    
    .sherghati-focus h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    
    .sherghati-focus > .container > p {
        font-size: 1.1rem;
        max-width: 500px;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .sherghati-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .sherghati-feature {
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        backdrop-filter: blur(25px);
    }
    
    .sherghati-feature:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
    
    .sherghati-feature h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #1e293b;
        padding-bottom: 1rem;
    }
    
    .sherghati-feature p {
        font-size: 1rem;
        color: #475569;
        line-height: 1.6;
    }
    
    .sherghati-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
        border-radius: 18px;
    }
    
    /* Contact Cards Extra Small Mobile */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .contact-card span {
        font-size: 0.75rem;
    }
}
