/* =====================================================
   STYLE CSS - COMMON STYLES & UTILITY CLASSES
===================================================== */

/* Global Reset & Base Typography */
* {
    font-family: var(--font-family-base);
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

a{
    text-decoration: none;
}

body {
    font-family: var(--font-family-base);
    color: var(--text-muted);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

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

/* =====================================================
   HEADINGS & TITLES
===================================================== */

.section-heading {
    text-align: center;
    margin: auto;
    width: max-content;
    position: relative;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    font-style: italic;
}

.section-heading span,
.heading-title span {
    color: var(--primary-color);
}

.section-heading strong,
.heading-title strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Common Decorative Line under Headings */
.heading-decoration {

    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
    margin-bottom: 25px;
}

.heading-decoration span {
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    display: block;
}

.heading-decoration i {
    font-size: 6px;
    color: var(--primary-color);
}

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

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 25px;
    border: 0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--primary-color-hover);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: var(--secondary-color-hover);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-pink:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-link-arrow:hover {
    color: var(--primary-color);
    gap: 13px;
}

.btn-link-arrow i {
    transition: margin var(--transition-fast);
}

/* =====================================================
   COMMON UTILITY CLASSES
===================================================== */

/* Text Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-pink { color: var(--accent-pink) !important; }
.text-green { color: var(--accent-green) !important; }
.text-teal { color: var(--accent-teal) !important; }
.text-blue { color: var(--accent-blue) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }

/* Background Utilities */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-pink { background-color: var(--accent-pink) !important; }
.bg-green { background-color: var(--accent-green) !important; }
.bg-teal { background-color: var(--accent-teal) !important; }
.bg-blue { background-color: var(--accent-blue) !important; }
.bg-cyan { background-color: var(--accent-cyan) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }

/* Corner Shapes */
.corner-radius-custom {
    border-radius: var(--radius-custom);
}

/* Icon Box Utility */
.icon-box-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--radius-custom);
}

/* Shadow Hover Card Effect */
.card-hover-effect {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Global Responsive Headings */
@media (max-width: 767px) {
    .section-heading {
        font-size: 26px;
    }
}


/* =========================================
   GOOGLE MAP COMPONENT
========================================= */

.google-map-component {
    width: 100%;
    max-width: 100%;
    height: 450px;
    overflow: hidden;
}

.google-map-component iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .google-map-component {
        height: 320px;
    }

}
