/* ========================================
   BIATHERM - Plumbing and Gas
   Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1c4b82;
    --primary-dark: #153a66;
    --primary-light: #2563a8;
    --secondary: #f39c12;
    --dark: #101741;
    --text: #555;
    --text-light: #777;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    padding: 6px 16px;
    font-size: 12px;
    background-color: var(--secondary);
    color: var(--dark);
    border-radius: 4px;
}

.btn-small:hover {
    background-color: #e8920e;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    font-family: 'Raleway', sans-serif;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-text {
    opacity: 0.9;
}

/* ========================================
   Header
   ======================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-cta-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.header-phone {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.header-phone:hover {
    color: var(--primary-dark);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Services Intro
   ======================================== */
.services-intro {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.services-intro-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.services-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.services-intro-card.highlight {
    background-color: var(--primary);
    color: var(--white);
}

.services-intro-card.highlight h3 {
    color: var(--white);
}

.services-intro-icon {
    margin-bottom: 20px;
    color: var(--primary);
}

.services-intro-card.highlight .services-intro-icon {
    color: var(--white);
}

.services-intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.services-intro-card p {
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 100px 0 80px;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(28, 75, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.8;
}

.services-cta {
    text-align: center;
}

/* ========================================
   Location Section
   ======================================== */
.location {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-map iframe {
    display: block;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background-color: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-detail a {
    color: var(--white);
}

.location-detail a:hover {
    opacity: 0.8;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-logo-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0 auto;
}

.about-content .section-subtitle {
    display: block;
    text-align: left;
}

.about-content .section-subtitle::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
    margin-left: 0;
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.about-badge svg {
    color: var(--primary);
    min-width: 20px;
}

.about-person {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-person-info {
    display: flex;
    flex-direction: column;
}

.about-person-info strong {
    font-size: 18px;
    color: var(--dark);
}

.about-person-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Call Banner
   ======================================== */
.call-banner {
    background-color: var(--primary);
    padding: 25px 0;
}

.call-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    flex-wrap: wrap;
}

.call-banner-phone {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.call-banner-phone:hover {
    color: var(--white);
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-us {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-us-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(28, 75, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    background-color: var(--primary);
    color: var(--white);
}

.why-us-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.cta-phone {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary);
    display: inline-block;
}

.cta-phone:hover {
    color: var(--white);
    transform: scale(1.05);
}

/* ========================================
   Working Process
   ======================================== */
.process {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(28, 75, 130, 0.1);
    line-height: 1;
    margin-bottom: 15px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    position: relative;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   Schedule CTA
   ======================================== */
.schedule-cta {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.schedule-cta h2 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 10px;
}

.schedule-cta p {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   Stats
   ======================================== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 20px;
}

.stat-number {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 70px;
    width: auto;
    border-radius: 50%;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 32px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-link {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-link:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--primary);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 18px;
    font-weight: 600;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-copyright a {
    font-size: 13px;
    opacity: 0.7;
    color: var(--white);
}

.footer-copyright a:hover {
    opacity: 1;
}

/* ========================================
   Facebook Feed Section
   ======================================== */
.facebook-feed {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.facebook-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    justify-items: center;
}

.facebook-embed-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.facebook-embed-item iframe {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-desc {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Facebook Feed Layout */
.fb-feed-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.fb-feed-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fb-feed-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background-color: rgba(28, 75, 130, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.fb-feed-main .facebook-embed-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.fb-feed-main .facebook-embed-item iframe {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Facebook Quick Links Sidebar */
.fb-feed-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--text);
}

.fb-quick-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.fb-quick-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background-color: rgba(28, 75, 130, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.fb-quick-link:hover .fb-quick-icon {
    background-color: var(--primary);
    color: var(--white);
}

.fb-quick-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fb-quick-text strong {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}

.fb-quick-text span {
    font-size: 13px;
    color: var(--text-light);
}

.fb-quick-arrow {
    color: var(--text-light);
    transition: var(--transition);
    min-width: 18px;
}

.fb-quick-link:hover .fb-quick-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.facebook-cta {
    text-align: center;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: #1877F2;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    transition: var(--transition);
}

.btn-facebook:hover {
    background-color: #0d65d9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--white);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* Floating Call Button (mobile only) */
.call-float {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(28, 75, 130, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.call-float:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

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

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

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

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

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

    .about-logo-img {
        max-width: 350px;
    }

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

    .section-title {
        font-size: 30px;
    }

    .fb-feed-layout {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        height: 70px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-text {
        font-size: 15px;
    }

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

    .services-intro {
        margin-top: -30px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stat-number {
        font-size: 42px;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-phone {
        font-size: 30px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .call-banner-inner {
        flex-direction: column;
        gap: 5px;
    }

    .call-banner-phone {
        font-size: 24px;
    }

    .about-content .section-subtitle {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-subtitle::before {
        display: inline-block;
    }

    .footer-copyright .container {
        flex-direction: column;
        text-align: center;
    }

    .call-float {
        display: flex;
    }

    .whatsapp-float {
        bottom: 100px;
    }

    .fb-feed-layout {
        grid-template-columns: 1fr;
    }

    .fb-feed-main .facebook-embed-item iframe {
        width: 100%;
        height: 500px;
    }
}

/* ========================================
   Privacy Page
   ======================================== */
.privacy-page {
    padding: 120px 0 80px;
}

.privacy-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.privacy-page .last-updated {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.privacy-page h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.privacy-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-page ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.privacy-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.privacy-page a {
    color: var(--primary);
}

.privacy-page a:hover {
    text-decoration: underline;
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-inner {
        padding: 60px 15px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }

    .service-card {
        padding: 30px 20px;
    }
}
