/* ==========================================================================
   home.css — homepage-specific sections (from inc/index2026.php).
   ========================================================================== */

.intro-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-image {
    flex: 0 0 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.company-image:hover img {
    transform: scale(1.03);
}

.company-info {
    flex: 1;
    min-width: 300px;
}

.company-name {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
  position: relative;

  background: none;
  -webkit-text-fill-color: initial;
}

.company-name .green { color: #191970; }   /* Green */
.company-name .top   { color: #191970; }   /* Top */
.company-name .hc    { color: #191970; }   /* Heating & Cooling Company */

.company-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2C318C, #00BFA5);
  border-radius: 2px;
}

.company-tagline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-style: italic;
    color: #2C318C;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(232, 234, 246, 0.9) 100%);
    border-radius: 12px;
    border-left: 5px solid #E55A2E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-btn {
    display: inline-block;
    padding: 20px 15px;
    background: linear-gradient(135deg, #E55A2E 0%, #FF7B35 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 6px 15px rgba(229, 90, 46, 0.25);
    border: 2px solid transparent;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-btn.active {
    background: linear-gradient(135deg, #2C318C 0%, #00BFA5 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 49, 140, 0.35);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 90, 46, 0.35);
    background: linear-gradient(135deg, #CC4F26 0%, #E55A2E 100%);
    border-color: #fff;
}

.service-btn.active:hover {
    background: linear-gradient(135deg, #242975 0%, #00A58F 100%);
}

.service-details {
    display: none;
    max-width: 1200px;
    margin: 20px auto 30px;
    padding: 0 20px;
    animation: fadeIn 0.5s ease;
}

.service-details.active {
    display: block;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, #e8eaf6 0%, #d8daf0 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 0 0 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h3 {
    color: #2C318C;
    font-size: 32px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #E55A2E;
}

.service-text p {
    color: #444;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.estimate-form {
    background: linear-gradient(135deg, #e8eaf6 0%, #d8daf0 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    color: #2C318C;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2C318C;
    box-shadow: 0 0 0 3px rgba(44, 49, 140, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    background: linear-gradient(135deg, #E55A2E 0%, #FF7B35 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #CC4F26 0%, #E55A2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 90, 46, 0.3);
}

.video-wrapper {
    max-width: 960px;
    margin: 40px auto 30px;
    aspect-ratio: 16 / 9;
    position: relative;
    padding: 0 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.standards-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8eaf6 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.standards-title {
    color: #2C318C;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.standards-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2C318C, #00BFA5);
    border-radius: 2px;
}

.awards-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.awards-wrap img {
    height: 90px;
    margin: 10px;
    max-width: 180px;
    object-fit: contain;
}

/* ================= Styles for expandable exclusive section */
.exclusive-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8eaf6 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.exclusive-title {
    color: #2C318C;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.exclusive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2C318C, #00BFA5);
    border-radius: 2px;
}

.exclusive-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.exclusive-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 0 #e8eaf6, 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    cursor: pointer;
}

.exclusive-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C318C, #00BFA5);
}

.exclusive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 0 #e8eaf6, 0 10px 25px rgba(0, 0, 0, 0.12);
}

.exclusive-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.exclusive-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8eaf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.exclusive-item:hover .exclusive-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e8eaf6 0%, #d8daf0 100%);
}

.exclusive-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exclusive-content {
    flex: 1;
    min-width: 0;
}

.exclusive-content h4 {
    color: #2C318C;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.exclusive-content h4::after {
    content: '▼';
    font-size: 16px;
    color: #E55A2E;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.exclusive-item.active .exclusive-content h4::after {
    transform: rotate(180deg);
}

.exclusive-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.exclusive-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    width: 100%;
    padding: 0;
    margin-top: 0;
    grid-column: 1 / -1;
    position: relative;
    z-index: 1;
}

.exclusive-item.active .exclusive-dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 25px;
    padding: 0;
}

.dropdown-content {
    background: linear-gradient(135deg, #f8f9ff 0%, #edf0ff 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #E55A2E;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dropdown-content a {
    color: #2C318C;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.dropdown-content a:hover {
    border-color: #E55A2E;
}

@media (max-width: 768px) {
    .exclusive-features {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .exclusive-item {
        padding: 20px 15px;
        gap: 15px;
        display: block;
    }
    
    .exclusive-header {
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .exclusive-icon {
        width: 70px;
        height: 70px;
        padding: 8px;
        flex-shrink: 0;
    }
    
    .exclusive-content h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .exclusive-content p {
        font-size: 15px;
    }
    
    .dropdown-content {
        font-size: 16px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .exclusive-dropdown {
        position: static;
        margin-top: 15px;
    }
    
    .exclusive-item.active .exclusive-dropdown {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .exclusive-section {
        padding: 25px 15px;
        margin: 30px 15px;
    }
    
    .exclusive-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .exclusive-features {
        gap: 18px;
    }
    
    .exclusive-item {
        padding: 18px 15px;
    }
    
    .exclusive-header {
        flex-direction: row;
        gap: 15px;
    }
    
    .exclusive-icon {
        width: 65px;
        height: 65px;
        padding: 7px;
    }
    
    .exclusive-content h4 {
        font-size: 20px;
    }
    
    .exclusive-content p {
        font-size: 15px;
    }
    
    .dropdown-content {
        font-size: 15px;
        padding: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .exclusive-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .exclusive-item {
        display: flex;
        flex-direction: column;
    }
    
    .exclusive-header {
        margin-bottom: 0;
    }
    
    .exclusive-dropdown {
        margin-top: 15px;
    }
}

@media (min-width: 1025px) {
    .exclusive-item {
        flex-direction: column;
    }
    
    .exclusive-header {
        margin-bottom: 0;
    }
    
    .exclusive-dropdown {
        margin-top: 20px;
    }
}
/* ================= END Styles for expandable exclusive section */


@media (max-width: 480px) {
    .exclusive-section {
        padding: 25px 15px;
        margin: 30px 15px;
    }
    
    .exclusive-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .exclusive-features {
        gap: 18px;
    }
    
    .exclusive-item {
        padding: 18px 15px;
        gap: 15px;
    }
    
    .exclusive-header {
        flex-direction: row;
    }
    
    .exclusive-icon {
        width: 65px;
        height: 65px;
        padding: 7px;
    }
    
    .exclusive-content h4 {
        font-size: 20px;
    }
    
    .exclusive-content p {
        font-size: 15px;
    }
    
    .dropdown-content {
        font-size: 15px;
    }
}


.owner-section {
    background: #a9e5ff;
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
    color: #13286b;
    font-size: 20px;
    line-height: 1.6;
}

.owner-section img {
    float: left;
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    margin: 0 30px 20px 0;
}

.owner-section::after {
    content: "";
    display: block;
    clear: both;
}

.stripe-bar {
    height: 14px;
    background-color: #13286b;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#=============================
.centerreviews {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    line-height: 1.7;
    font-size: clamp(18px, 2.5vw, 26px);
    display: block;
    position: relative;
    left: 0;
    right: 0;
}

.centerreviews h2 {
    margin: 0 auto 20px auto;
    color: #13286b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: block;
    position: relative;
}

.reviews-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .centerreviews {
        padding: 20px 15px;
    }
    
    .centerreviews h2 {
        font-size: 28px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .centerreviews h2 {
        font-size: 24px;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .centerreviews h2 {
        font-size: 22px;
        padding: 0;
    }
}
#================================

@media (max-width: 1024px) {
    .company-image { flex: 0 0 350px; }
    .company-name { font-size: 38px; }
    .company-tagline { font-size: 28px; }
    .service-buttons { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-btn { padding: 18px 12px; font-size: 20px; min-height: 65px; }
    .service-content { gap: 25px; }
    .service-image { flex: 0 0 300px; }
    .form-row { gap: 15px; }
    .exclusive-features { grid-template-columns: repeat(2, 1fr); }
    .owner-section { font-size: 18px; padding: 30px; }
    .owner-section img { max-width: 280px; margin-right: 20px; }
}

@media (max-width: 768px) {
    .intro-section { flex-direction: column; padding: 30px 15px; gap: 30px; }
    .company-image { flex: 0 0 auto; width: 100%; max-width: 400px; margin: 0 auto; }
    .company-info { min-width: 100%; text-align: center; }
    .company-name { font-size: 32px; text-align: center; }
    .company-tagline { font-size: 24px; text-align: center; padding: 12px 15px; border-left: 4px solid #E55A2E; margin: 0 auto 20px; max-width: 100%; }
    .service-buttons { grid-template-columns: 1fr; gap: 12px; width: 100%; max-width: 100%; }
    .service-btn { padding: 20px 15px; font-size: 22px; min-height: 70px; width: 100%; display: block; }
    .service-content { flex-direction: column; padding: 25px; gap: 25px; }
    .service-image { flex: 0 0 auto; width: 100%; max-width: 500px; margin: 0 auto; }
    .service-text h3 { font-size: 28px; text-align: center; }
    .service-text p { font-size: 19px; text-align: center; }
    .form-row { grid-template-columns: 1fr; gap: 15px; }
    .estimate-form { padding: 25px; }
    .video-wrapper { margin: 30px auto; padding: 0 15px; }
    .standards-section, .exclusive-section, .owner-section { margin: 30px auto; padding: 30px 15px; }
    .standards-title, .exclusive-title { font-size: 26px; margin-bottom: 20px; }
    .exclusive-features { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }
    .exclusive-item { padding: 20px 15px; gap: 15px; flex-direction: row; align-items: center; }
    .exclusive-icon { width: 70px; height: 70px; padding: 8px; flex-shrink: 0; }
    .exclusive-content h4 { font-size: 20px; margin-bottom: 8px; }
    .exclusive-content p { font-size: 15px; line-height: 1.4; }
    .owner-section { flex-direction: column; text-align: center; }
    .owner-section img { float: none; max-width: 280px; margin: 0 auto 20px; display: block; }
    .awards-wrap img { height: 70px; margin: 8px; }
}

@media (max-width: 480px) {
    .intro-section { padding: 25px 15px; gap: 25px; }
    .company-image { max-width: 100%; }
    .company-name { font-size: 28px; }
    .company-tagline { font-size: 22px; padding: 12px 15px; border-left: 4px solid #E55A2E; }
    .service-buttons { grid-template-columns: 1fr; gap: 12px; width: 100%; }
    .service-btn { padding: 22px 15px; font-size: 24px; min-height: 75px; width: 100%; display: block; }
    .service-content { padding: 20px; }
    .service-text h3 { font-size: 26px; }
    .service-text p { font-size: 18px; }
    .estimate-form { padding: 20px; }
    .form-group input, .form-group select { padding: 14px; font-size: 16px; }
    .submit-btn { padding: 16px 30px; font-size: 18px; }
    .standards-title, .exclusive-title { font-size: 24px; margin-bottom: 18px; }
    .standards-section, .exclusive-section, .owner-section { padding: 25px 15px; margin: 30px 15px; }
    .exclusive-features { gap: 18px; }
    .exclusive-item { padding: 18px 15px; gap: 15px; flex-direction: row; }
    .exclusive-icon { width: 65px; height: 65px; padding: 7px; }
    .exclusive-content h4 { font-size: 20px; }
    .exclusive-content p { font-size: 15px; }
    .owner-section { font-size: 17px; }
    .owner-section img { max-width: 220px; }
    .awards-wrap img { height: 60px; margin: 6px; }
}

@media (max-width: 360px) {
    .company-name { font-size: 26px; }
    .company-tagline { font-size: 20px; }
    .service-btn { padding: 20px 12px; font-size: 22px; min-height: 70px; width: 100%; }
    .service-content { padding: 18px 15px; }
    .service-text h3 { font-size: 24px; }
    .service-text p { font-size: 17px; }
    .estimate-form { padding: 18px 15px; }
    .exclusive-item { flex-direction: row; text-align: left; gap: 12px; }
    .exclusive-icon { width: 60px; height: 60px; padding: 6px; flex-shrink: 0; }
    .exclusive-content { text-align: left; }
    .exclusive-content h4 { font-size: 19px; }
    .exclusive-content p { font-size: 14px; }
    .owner-section img { max-width: 180px; }
}

.service-detailsform {
    display: none;
    max-width: 1200px;
    margin: 20px auto 30px;
    padding: 0 20px;
    animation: fadeIn 0.5s ease;
}

.service-detailsform.active {
    display: block;
}

.form-container {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading .tagline {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 46px;
    color: #66d0f0;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-heading .mainline {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 0;
    line-height: 1.1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #66d0f0;
    box-shadow: 0 0 0 3px rgba(102, 208, 240, 0.2);
}

.form-group input.error,
.form-group select.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
}

#form-message {
    display: none;
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.submit-btn-center {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #f26522;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 60px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    min-width: 250px;
}

.submit-btn:hover {
    background: #d8551a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 101, 34, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-container {
        padding: 40px 25px;
    }
    
    .form-heading .tagline {
        font-size: 36px;
    }
    
    .form-heading .mainline {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .submit-btn {
        padding: 16px 40px;
        min-width: 200px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-detailsform {
        padding: 0 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-heading .tagline {
        font-size: 30px;
    }
    
    .form-heading .mainline {
        font-size: 22px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 16px 30px;
        min-width: 180px;
        font-size: 18px;
    }
}

