/* ============================================
   PAGE CONTACT - COMPLETE CSS
   ============================================ */

/* ---------- SECTION 1: HERO ---------- */
.page-contact-hero {
    position: relative;
    padding: 80px 20px 70px;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    text-align: center;
    overflow: hidden;
}

.page-contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,107,53,0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46,196,182,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,107,53,0.05) 0%, transparent 70%);
}

.page-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.page-contact-hero-badge {
    display: inline-block;
    padding: 8px 28px;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.05));
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 20px;
}

.page-contact-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
}

.page-contact-hero-content h1 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: pageContactGradient 5s ease-in-out infinite;
}

@keyframes pageContactGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-contact-hero-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    line-height: 1.8;
}

.page-contact-hero-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.page-contact-hero-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.page-contact-hero-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.page-contact-hero-icon {
    font-size: 28px;
}

.page-contact-hero-item div {
    text-align: left;
}

.page-contact-hero-item strong {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-contact-hero-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.page-contact-hero-item a:hover {
    color: #FF6B35;
}

.page-contact-hero-social {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.page-contact-hero-social span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.page-contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.page-contact-social-link:hover {
    transform: translateY(-3px);
}

.page-contact-social-link:first-of-type:hover {
    background: linear-gradient(135deg, #E4405F, #f09433);
    border-color: #E4405F;
}

.page-contact-social-link:last-of-type:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* ---------- SECTION 2: CONTACT FORM + INFO ---------- */
.page-contact-main {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* ---------- FORM ---------- */
.page-contact-form-wrapper {
    background: white;
    padding: 35px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.page-contact-form-header {
    margin-bottom: 25px;
}

.page-contact-form-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-contact-form-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.page-contact-form-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-contact-form-header p {
    color: #666;
    font-size: 15px;
}

.page-contact-form .page-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.page-contact-form-group {
    margin-bottom: 14px;
}

.page-contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.page-contact-form-group input,
.page-contact-form-group select,
.page-contact-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    color: #1a1a2e;
    font-family: inherit;
}

.page-contact-form-group input:focus,
.page-contact-form-group select:focus,
.page-contact-form-group textarea:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
    background: white;
}

.page-contact-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    padding-left: 14px;
    cursor: pointer;
    min-height: 46px;
    height: auto;
    line-height: 1.5;
}

.page-contact-form-group select optgroup {
    font-weight: 700;
    color: #004E89;
    background: #f8f9fa;
}

.page-contact-form-group select option {
    padding: 8px 12px;
    font-size: 14px;
    color: #1a1a2e;
    background: white;
}

.page-contact-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.full-width {
    grid-column: 1 / -1;
}

.page-contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.page-contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.3);
}

.page-contact-form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 12px;
}

/* ---------- RIGHT INFO ---------- */
.page-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-contact-info-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.page-contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.page-contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.page-contact-info-item:last-child {
    margin-bottom: 0;
}

.page-contact-info-icon {
    font-size: 22px;
    width: 40px;
    text-align: center;
}

.page-contact-info-item div {
    flex: 1;
}

.page-contact-info-item strong {
    display: block;
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.page-contact-info-item a,
.page-contact-info-item span {
    font-size: 15px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
}

.page-contact-info-item a:hover {
    color: #FF6B35;
}

/* ---------- SOCIAL CARD ---------- */
.page-contact-social-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-contact-social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.page-contact-social-link-card:hover {
    transform: translateX(5px);
    border-color: #FF6B35;
}

.page-contact-social-link-card:first-of-type:hover {
    background: linear-gradient(135deg, #f09433, #E4405F);
    border-color: #E4405F;
}

.page-contact-social-link-card:first-of-type:hover div strong,
.page-contact-social-link-card:first-of-type:hover div span {
    color: white;
}

.page-contact-social-link-card:last-of-type:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.page-contact-social-link-card:last-of-type:hover div strong,
.page-contact-social-link-card:last-of-type:hover div span {
    color: white;
}

.page-contact-social-link-card span:first-child {
    font-size: 28px;
}

.page-contact-social-link-card div strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
}

.page-contact-social-link-card div span {
    color: #666;
    font-size: 12px;
}

/* ---------- OFFICE ITEMS ---------- */
.page-contact-office-item {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.page-contact-office-item:last-child {
    border-bottom: none;
}

.page-contact-office-item strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.page-contact-office-item span {
    font-size: 13px;
    color: #666;
}

/* ---------- SECTION 3: SERVICES ---------- */
.page-contact-services {
    padding: 60px 0 70px;
    background: white;
}

.page-contact-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-contact-section-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-contact-section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
}

.page-contact-section-header h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-contact-section-header p {
    color: #666;
    font-size: 16px;
    margin-top: 5px;
}

.page-contact-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-contact-service-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.page-contact-service-card:hover {
    background: white;
    border-color: #FF6B35;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.08);
}

.page-contact-service-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.page-contact-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.page-contact-service-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page-contact-service-tag {
    display: inline-block;
    padding: 3px 14px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SECTION 4: LOCATIONS ---------- */
.page-contact-locations {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-contact-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.page-contact-location-group {
    background: white;
    padding: 20px 22px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.page-contact-location-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: #FF6B35;
}

.page-contact-location-group h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.page-contact-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-contact-location-tags span {
    padding: 4px 14px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.page-contact-location-tags span:hover {
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-color: #FF6B35;
    transform: scale(1.05);
}

/* ---------- SECTION 5: FLEET ---------- */
.page-contact-fleet {
    padding: 60px 0 70px;
    background: white;
}

.page-contact-fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.page-contact-fleet-card {
    background: #f8f9fa;
    padding: 25px 20px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.page-contact-fleet-card:hover {
    background: white;
    border-color: #004E89;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,78,137,0.08);
}

.page-contact-fleet-card.featured-fleet {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
}

.page-contact-fleet-card.featured-fleet:hover {
    border-color: #FF6B35;
    background: white;
}

.page-contact-fleet-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 3px 14px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-contact-fleet-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 8px;
}

.page-contact-fleet-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.page-contact-fleet-card p {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.page-contact-fleet-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    text-align: left;
    display: inline-block;
}

.page-contact-fleet-card ul li {
    font-size: 13px;
    color: #555;
    padding: 2px 0;
    text-align: left;
}

.page-contact-fleet-price {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

/* ---------- SECTION 6: OFFICES DETAILED ---------- */
.page-contact-offices {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-contact-offices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.page-contact-office-card {
    background: white;
    padding: 25px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.page-contact-office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #FF6B35;
}

.page-contact-office-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.page-contact-office-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.page-contact-office-role {
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.page-contact-office-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.page-contact-office-phone {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.page-contact-office-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
    color: white;
}

.page-contact-office-map {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #004E89, #2EC4B6);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-contact-office-map:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,78,137,0.3);
    color: white;
}

/* ---------- SECTION 7: CTA ---------- */
.page-contact-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pageContactCtaGlow 8s ease-in-out infinite;
}

.page-contact-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,196,182,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pageContactCtaGlow 10s ease-in-out infinite reverse;
}

@keyframes pageContactCtaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.page-contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-contact-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.page-contact-cta-content h2 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: pageContactGradient 5s ease-in-out infinite;
}

.page-contact-cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

.page-contact-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-contact-cta-btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255,107,53,0.3);
}

.page-contact-cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,107,53,0.4);
    color: white;
}

.page-contact-cta-btn-secondary {
    padding: 15px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(37,211,102,0.3);
}

.page-contact-cta-btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37,211,102,0.4);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .page-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-contact-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-contact-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-contact-offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-contact-locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-contact-hero-content h1 {
        font-size: 36px;
    }
    .page-contact-hero-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .page-contact-hero-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .page-contact-hero-social {
        flex-wrap: wrap;
    }
    
    .page-contact-form .page-contact-form-row {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: 1;
    }
    
    .page-contact-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .page-contact-fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .page-contact-offices-grid {
        grid-template-columns: 1fr;
    }
    .page-contact-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .page-contact-section-header h2 {
        font-size: 28px;
    }
    .page-contact-cta-content h2 {
        font-size: 30px;
    }
    
    .page-contact-info-wrapper {
        gap: 15px;
    }
    .page-contact-info-card {
        padding: 18px 16px;
    }
    
    .page-contact-form-wrapper {
        padding: 20px 16px;
    }
    .page-contact-form-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-contact-hero-content h1 {
        font-size: 28px;
    }
    .page-contact-hero-content p {
        font-size: 15px;
    }
    
    .page-contact-services-grid {
        grid-template-columns: 1fr;
    }
    .page-contact-fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .page-contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-contact-cta-btn-primary,
    .page-contact-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .page-contact-service-card {
        padding: 20px 16px;
    }
    .page-contact-fleet-card {
        padding: 20px 16px;
    }
    .page-contact-office-card {
        padding: 20px 16px;
    }
    .page-contact-location-group {
        padding: 16px;
    }
    
    .page-contact-social-link {
        font-size: 12px;
        padding: 6px 14px;
    }
}