/* ================================
   HOME PAGE - LOCATIONS GRID
   ================================ */
   
 .service-areas {
	padding-top: 20px;
	padding-bottom: 50px;
}  
   

.service-areas h2 {
	text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.location-card {
  background: #eef7fc;
  padding: 10px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #2d2c80;
  text-decoration: none;
  border: 2px solid #55abde;
  transition: 0.3s ease;
  text-align: center;
}

.location-card:hover {
  background: #55abde;
  color: white;
  transform: translateY(-3px);
}

/* ========================================
   CRITICAL CSS - Above the fold
   ======================================== */

/* Variables & Reset */
:root {
    --color-primary: #2D2C80;
    --color-primary-dark: #201F5B;
    --color-accent: #55ABDE;
    --color-accent-light: #EEF7FC;
    --color-yellow: #FFD800;
    --color-white: #FFFFFF;
    --color-text: #000000;
    --color-text-light: #666666;
    
    --font-primary: 'Poppins', sans-serif;
    
    --transition-base: 0.3s ease;
    
    --radius-small: 8px;
    --radius-medium: 10px;
    --radius-large: 50px;
    
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background-color: var(--color-primary);
    padding: 15px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin: 0;
    font-size: 36px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(126deg, #FFFFFF 0%, #55ABDE 33.69%);
}

.hero-bg {
    background-image: url('images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-image img {
    max-width: 250px;
}

.hero-cta {
    flex: 1;
    text-align: center;
}

.hero-title {
    color: var(--color-white);
    font-size: 2vw;
    line-height: 1.6;
    margin-bottom: 20px;
}

.phone-button {
    display: inline-block;
    background: linear-gradient(90deg, #2D2C80 0%, #55ABDE 341.81%);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: var(--radius-small);
    font-size: 2vw;
    font-weight: 700;
    margin: 20px 0;
    transition: var(--transition-base);
    will-change: transform;
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.phone-icon {
    display: inline-block;
    animation: phonePulse 1.1s infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        color: var(--color-yellow);
    }
    50% {
        transform: scale(1.16);
        color: var(--color-white);
    }
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 21px;
    margin-top: 15px;
    font-weight: 700;
	line-height: 1.3;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e5ea;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: var(--color-text-light);
    font-weight: 500;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */

.intro-section {
    background-color: var(--color-white);
    padding: 50px 0 0 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.intro-image {
    width: 330px;
    height: 287px;
    flex-shrink: 0;
}

.intro-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-medium);
    object-fit: cover;
}

.intro-text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 24px;
    line-height: 1.5;
}

/* ========================================
   BUTTONS
   ======================================== */

.cta-button {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-text);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-base);
    margin-top: 20px;
    will-change: transform;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-large);
}

/* ========================================
   SERVICES SECTIONS
   ======================================== */

.services-title {
    background-color: var(--color-white);
    padding: 0 10px 20px 10px;
}

.services-title h2 {
    text-align: center;
    font-weight: 400;
}

.services-list {
    background-color: var(--color-white);
    padding: 0;
}

.service-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e5ea;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    margin-bottom: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 3fr;
    transition: var(--transition-base);
    will-change: transform;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.service-card-reverse {
    grid-template-columns: 3fr 1fr;
}

.service-card-reverse .service-image {
    order: 2;
}

.service-card-reverse .service-content {
    order: 1;
}

.service-image {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    color: var(--color-primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CLOSING STATEMENT
   ======================================== */

.closing-statement {
    background-color: var(--color-white);
    padding: 30px 10px 0 10px;
}

.closing-statement h2 {
    text-align: center;
    font-weight: 400;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    background: linear-gradient(0deg, var(--color-accent) 0%, rgba(85, 171, 222, 0) 100%);
    padding: 20px 0 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background-color: var(--color-white);
    border: 1px solid #e0e5ea;
    border-radius: var(--radius-medium);
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
    will-change: transform;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
    grid-column: span 1;
}

.benefit-card:nth-child(4) {
    margin-left: 16.666%;
}

.benefit-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.benefit-text {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

/* ========================================
   EMERGENCY CTA SECTION
   ======================================== */

.emergency-cta {
    background-color: var(--color-primary);
    padding: 50px 0;
    text-align: center;
}

.emergency-cta h2 {
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 30px;
	line-height: 1.2em;
}

.emergency-button {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 15px 40px;
    border-radius: var(--radius-large);
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-large);
    transition: var(--transition-base);
    will-change: transform;
}

.emergency-button:hover {
    transform: scale(1.05);
}

.emergency-button .fa-solid {
    color: red;
}

.emergency-subtitle {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-top: 30px;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee-section {
    background-color: var(--color-accent-light);
    padding: 50px 0 35px 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    align-items: center;
}

.guarantee-checkmark {
    width: 184px;
    height: 184px;
    background: linear-gradient(135deg, #2D2C80 0%, #55ABDE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-white);
    margin: 0 auto;
}

.guarantee-text h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 24px;
    line-height: 1.5;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background-color: var(--color-white);
    padding: 60px 0 20px 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid #e0e5ea;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-small);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-base);
    will-change: transform;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-question {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CONTACT FOOTER
   ======================================== */

.contact-footer {
    background-color: var(--color-white);
    padding: 30px 0 50px 0;
    text-align: center;
}

.contact-title,
.contact-phone,
.contact-areas {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-footer strong {
    font-weight: 700;
}

/* ========================================
   SITE FOOTER
   ======================================== */

.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
}

.footer-copyright {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-disclaimer {
    margin: 15px 0;
}

.footer-disclaimer img {
	width: 100%;
    max-width: 470px;
    margin: 0 auto;
}

.footer-nav {
    margin: 15px 0;
}

.footer-nav a {
    color: var(--color-white);
    transition: var(--transition-base);
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin-top: 15px;
}

.footer-logo img {
    max-width: 356px;
    margin: 0 auto;
}

/* ========================================
   MOBILE CALL BUTTON
   ======================================== */

.mobile-call-fixed {
    display: none;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce repaints and reflows */
.service-card,
.benefit-card,
.faq-item,
.phone-button,
.cta-button,
.emergency-button {
    contain: layout;
}

/* GPU acceleration for animations */
@media (prefers-reduced-motion: no-preference) {
    .phone-button,
    .cta-button,
    .emergency-button,
    .service-card,
    .benefit-card,
    .faq-item {
        backface-visibility: hidden;
        perspective: 1000px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   RESPONSIVE DESIGN - TABLETS
   ======================================== */

@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 6vw;
    }
    
    .phone-button {
        font-size: 4vw;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-image {
        width: 100%;
        height: auto;
        max-width: 720px;
        margin: 0 auto;
    }
    
    .intro-img {
        height: auto;
    }
	
	.intro-text p {
    font-size: 17px;
    line-height: 1.5;
    }
    
    .service-card,
    .service-card-reverse {
        grid-template-columns: 1fr;
    }
    
    .service-card-reverse .service-image {
        order: 1;
    }
    
    .service-card-reverse .service-content {
        order: 2;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card:nth-child(4) {
        margin-left: 0;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN - TABLETS (768px)
   ======================================== */

@media screen and (max-width: 767px) {
    body {
        font-size: 18px;
    }
    
    h1, h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .intro-text h2 {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 22px;
    }
    
    .service-content p {
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE (720px)
   ======================================== */

@media screen and (max-width: 720px) {
	.hero-bg {
        padding: 20px 0;
	}
	
	.page-header h1 {
		font-size: 23px;
	}	
	
    .hero-content {
        flex-direction: column;
		gap: 0;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-title {
        font-size: 24px;
		margin-bottom: 1px;
		color: yellow;
    }
    
    .phone-button {
        font-size: 20px;
        padding: 12px 20px;
		width: 90%;
    }
	
	.services-title h2 {
		text-align: left;
		font-weight: 600;
		margin-bottom: 0 !important;
		line-height: 1.2em;
		font-size: 24px ! Important;
		
	}	
    
    .service-content {
        padding: 25px;
    }
	
	.closing-statement h2 {
		font-weight: 400;
		text-align: left;
		margin-bottom: 0;
		line-height: 1.2em;
		font-size: 24px;		
	}
    
    .benefit-card {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .benefit-text {
        font-size: 18px;
        text-align: left;
    }
	
	.emergency-cta h2 br {
        display: none;
	}
	
	.guarantee-checkmark {
		width: 108px;
		height: 108px;
	}
	
	.guarantee-text p {
        font-size: 16px !important;
        line-height: 1.5em !important;
	}
	
	.faq-title {
		margin-bottom: 10px;
	}	
	
	.faq-answer {
        font-size: 16px;;
        line-height: 1.3;
	}
    
    /* Mobile Fixed Call Button */
    .mobile-call-fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        background-color: var(--color-white);
        padding: 5px;
        border-radius: var(--radius-medium) var(--radius-medium) 0 0;
        animation: slideUp 0.5s ease-out;
    }
    
    .mobile-call-button {
        display: block;
        width: 100%;
        background-color: #ca1a21;
        color: var(--color-white);
        padding: 18px;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        border-radius: var(--radius-medium);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        animation: pulse 2s infinite;
    }
    
    .mobile-call-button .fa-phone {
        display: inline-block;
        animation: phoneShake 1.5s infinite;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.02);
            box-shadow: 0 -5px 20px rgba(202, 26, 33, 0.5);
        }
    }
    
    @keyframes phoneShake {
        0%, 100% {
            transform: rotate(0deg);
        }
        10%, 30%, 50% {
            transform: rotate(-15deg);
        }
        20%, 40% {
            transform: rotate(15deg);
        }
        60% {
            transform: rotate(0deg);
        }
    }
}

/* ========================================
   LARGE SCREENS
   ======================================== */

@media screen and (min-width: 1501px) {
    .hero-title {
        font-size: 1.8vw;
    }
}

@media screen and (min-width: 1261px) and (max-width: 1500px) {
    .hero-title {
        font-size: 2.5vw;
    }
}

@media screen and (min-width: 993px) and (max-width: 1260px) {
    .hero-title {
        font-size: 2.5vw;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .hero-bg,
    .mobile-call-fixed,
    .emergency-cta,
    .phone-button,
    .cta-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 18pt;
    }
    
    h2 {
        font-size: 16pt;
    }
    
    h3 {
        font-size: 14pt;
    }
}