/* 
   INTENTAGENCY.LK REDESIGN STYLESHEET
   Aesthetics: Premium, Modern, Professional
   Theme: Deep Blue (#18608d), Gold/Amber (#ffb300), Accent Red (#d9230f), Dark Slate Navy (#0a2535)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #18608d;
    --primary-hover: #114b70;
    --primary-dark: #0a2535;
    --primary-light: #e6f0fa;
    --secondary: #ffb300;
    --secondary-hover: #e09d00;
    --accent-red: #d9230f;
    --accent-red-hover: #b51c0b;
    --accent-purple: #7b1fa2;
    --accent-purple-hover: #6a1b9a;
    
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --bg-muted: #eef2f6;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10, 37, 53, 0.05);
    --shadow-md: 0 10px 30px rgba(10, 37, 53, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 37, 53, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
}

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

a:hover {
    color: var(--primary-hover);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

.bg-navy-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-light);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--secondary);
}

/* Header & Brand Identity Area */
.brand-identity-area {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

.agency-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agency-logo-img {
    height: 70px;
    width: auto;
}

.agency-title-text h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.agency-title-text h1 span {
    color: var(--accent-red);
}

.agency-title-text p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Sticky Navbar Area */
.navbar-main-wrapper {
    background-color: var(--primary);
    box-shadow: var(--shadow-sm);
    z-index: 1020;
}

.navbar-main-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease-out;
}

.navbar-main {
    padding: 0;
}

.navbar-main .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-main .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-main .nav-link.active {
    color: var(--secondary) !important;
}

/* Call Banner under Slider */
.red-call-banner {
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    color: var(--text-light);
    padding: 18px 0;
    font-family: 'Outfit', sans-serif;
    box-shadow: var(--shadow-sm);
}

.red-call-banner h3 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.red-call-banner h3 span {
    font-weight: 800;
    color: var(--secondary);
}

.red-call-banner .licence-no {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

.red-call-banner .phone-link {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
}

.red-call-banner .phone-link:hover {
    background: var(--bg-white);
    color: var(--accent-red);
}

/* Premium Buttons */
.btn-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-premium-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-premium-secondary {
    background-color: var(--secondary);
    color: var(--primary-dark);
    border: 2px solid var(--secondary);
}

.btn-premium-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-premium-purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-hover) 100%);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3);
}

.btn-premium-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.5);
    color: var(--text-light);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-premium-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero Carousel */
.hero-slider-item {
    height: 520px;
    position: relative;
}

.hero-slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 53, 0.4) 0%, rgba(10, 37, 53, 0.75) 100%);
    z-index: 1;
}

.hero-slider-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-slider-caption {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    color: var(--text-light);
    text-align: left;
}

.hero-slider-caption h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 750px;
}

.hero-slider-caption h2 span {
    color: var(--secondary);
}

.hero-slider-caption p {
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Cards & Glassmorphism */
.premium-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Feature Circles */
.feature-circle-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-circle-wrapper:hover .feature-circle-img {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--secondary);
}

/* Stats Counter bar */
.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.counter-label {
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-light);
    margin-bottom: 0;
}

.page-banner h2 {
    font-size: 32px;
    color: var(--text-light);
    margin: 0;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.breadcrumbs a {
    color: var(--secondary);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* Helper Grid & Search Filter System */
.filter-panel {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.filter-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    outline: none;
    transition: var(--transition);
}

.filter-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(24, 96, 141, 0.15);
}

/* Helper Profile Cards */
.helper-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.helper-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.helper-card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #cbd5e1;
}

.helper-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.helper-card-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.helper-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.helper-card-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-dark);
}

.helper-card-country {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.helper-card-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    margin-bottom: 15px;
    text-align: center;
}

.helper-card-stat-box {
    display: flex;
    flex-direction: column;
}

.helper-card-stat-box span.val {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-dark);
}

.helper-card-stat-box span.lbl {
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.helper-card-meta-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.helper-card-meta-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.helper-card-meta-list li i {
    color: var(--primary);
    width: 14px;
}

.helper-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Service Detail highlight */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.premium-card:hover .service-icon-box {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

/* Footer elements */
.footer-title {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal details */
.helper-modal-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Animations keyframes */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(123, 31, 162, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3); }
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

/* Custom form outlines */
.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
