/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF9D00;
    --orange-dark: #E68A00;
    --black: #2B2B2B;
    --dark-gray: #3A3A3A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-light: #CCCCCC;
	--blue: #1E40AF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--orange);
    padding: 12px 0;
    text-align: center;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: var(--black);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-phone {
    background: var(--orange);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.header-phone:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background: var(--black);
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-call-btn {
    background: var(--blue);
    color: var(--white);
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/emergency-plumbing-services.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.85) 0%, rgba(43, 43, 43, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem 0;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    color: #FF9D00;
    font-size: 30px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-call-hero {
    background: var(--orange);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255, 157, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-call-hero:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 157, 0, 0.5);
}

/* Emergency Banner */
.emergency-banner {
    background: var(--orange);
    padding: 20px 0;
    text-align: center;
}

.emergency-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Section */
.features {
    background: var(--black);
    padding: 4rem 0;
}

.features-title {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

	/* Responsive Design */
	@media (max-width: 1024px) {
		.feature-box {
			text-align: center;
			padding: 0;
		}
	}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    font-size: 45px;
    color: #ff9d00;
}

.feature-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

/* About Section */
.about {
    background: var(--dark-gray);
    padding: 5rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
.about {
    padding: 4rem 0;
}
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-checklist {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.services-checklist .fa-regular, .far {
    color: #FF9D00;
}

.services-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
}

.btn-call-section {
    background: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.btn-call-section:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
    

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Brands Section */
.brands {
    background: var(--black);
    padding: 4rem 0;
    text-align: center;
}

.brands h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
.brands h2 {
    font-size: 1.6rem;
	line-height: 1.1;
}
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.brand-item {
    background: var(--dark-gray);
    padding: 2rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-placeholder {
    color: var(--orange);
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
}

/* Trust Section */
.trust {
    background: var(--dark-gray);
    padding: 5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.trust-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Service Area */
.service-area {
    background: var(--black);
    padding: 5rem 0;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-area-intro {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
.service-area-intro {
    font-size: 1.1rem;
}
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.city-item {
    background: var(--dark-gray);
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
    transition: all 0.3s;
}

.cities-grid a {
  text-decoration: none; 
}

.city-item:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* Final CTA */
.final-cta {
    background: var(--dark-gray);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
.final-cta {
    padding: 4rem 0;
}
	
.cta-content p {
    font-size: 1.1rem;
}
}

.btn-call-large {
    background: var(--orange);
    color: var(--white);
    padding: 25px 60px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255, 157, 0, 0.4);
    text-transform: uppercase;
}

.btn-call-large:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 157, 0, 0.5);
}

/* Mobile Call Button */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3182ce;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    padding: 17px 0;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 10px 5px 10px;
}

.mobile-call-button span {
    display: inline-block;
    vertical-align: middle;
}

.mobile-call-button .fa-phone {
    display: inline-block;
    animation: calling 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    body::after {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 77px;
        background: #ffffff;
        z-index: 9998; /* sub buton (9999), peste restul site-ului */
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
    }
}

.mobile-call-button {
    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 -5px 20px rgba(30, 64, 175, 0.45);
    }
}


@keyframes calling {
    0%, 70%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 0 transparent);
    }
    
    /* Ring 1 */
    72% { transform: rotate(-15deg) scale(1.05); }
    74% { transform: rotate(15deg) scale(1.05); }
    76% { transform: rotate(-15deg) scale(1.05); }
    78% { transform: rotate(15deg) scale(1.05); }
    80% { 
        transform: rotate(0deg) scale(1);
    }
    
    /* Ring 2 - cu glow */
    85% { 
        transform: rotate(-15deg) scale(1.08);
        filter: drop-shadow(0 0 5px #FF9D00);
    }
    87% { 
        transform: rotate(15deg) scale(1.08);
        filter: drop-shadow(0 0 8px #FF9D00);
    }
    89% { 
        transform: rotate(-15deg) scale(1.08);
        filter: drop-shadow(0 0 5px #FF9D00);
    }
    91% { 
        transform: rotate(15deg) scale(1.08);
        filter: drop-shadow(0 0 8px #FF9D00);
    }
}

/* Footer - Locksmith Style */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 0;
}

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

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

.footer-call-button {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta-btn {
    background: var(--orange);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.footer-cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
}

.contact-footer {
    text-align: center;
}

.payment-methods {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-methods h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-card {
    background: var(--white);
    color: var(--black);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.copyright-bar {
    background: var(--orange);
    padding: 1.5rem 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-content p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-call-button {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
	
    .hero-subtitle br {
        display: none;
    }	

    .btn-call-hero {
        padding: 18px 35px;
        font-size: 1.3rem;
    }

    .emergency-banner h2 {
        font-size: 1.5rem;
    }
	
	.service-area {
    padding: 4rem 0;
	}

    .features-title h2,
    .service-area h2 {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .about-content h2,
    .trust-content h2 {
        font-size: 1.6rem;
		line-height: 1.1;
    }

    .cta-content h2 {
        font-size: 1.6rem;
		line-height: 1.1;		
    }

    .btn-call-large {
        padding: 20px 40px;
        font-size: 1.4rem;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .payment-logos {
        gap: 1rem;
    }

    .payment-card {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-call-hero {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* FAQ Section */
.faq-section {
    background: var(--black);
    padding: 4rem 0;
}

.faq-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
.faq-title {
    font-size: 1.6rem;
	line-height: 1.1;
}
}

.faq-item {
    background: var(--dark-gray);
    margin-bottom: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #444;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--orange);
}

.faq-answer {
    display: none;
    padding: 1.2rem 2rem;
    background: #2a2a2a;
    border-top: 1px solid #444;
}

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

/* FAQ open state */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}
