:root {
--primary-color: #e10b15;
--secondary-color: #f8b500;
--accent-color: #c0392b;
--dark-color: #2c3e50;
--light-color: #ecf0f1;
--gradient: linear-gradient(135deg, #e10b15 0%, #c0392b 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--dark-color);
overflow-x: hidden;
}
/* Header Styles */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--primary-color) !important;
display: flex;
align-items: center;
gap: 10px;
}
.navbar-nav .nav-link {
font-weight: 500;
margin: 0 10px;
transition: color 0.3s ease;
color: var(--dark-color) !important;
}
.navbar-nav .nav-link:hover {
color: var(--primary-color) !important;
}
.navbar-toggler {
border: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Contact Hero Section */
.contact-hero {
min-height: 50vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 80px 0;
background-image: url('https://images.pexels.com/photos/1632790/pexels-photo-1632790.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.contact-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,');
background-size: cover;
}
.contact-hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(8px);
z-index: 1;
}
.contact-hero-content {
position: relative;
z-index: 2;
text-align: center;
color: white;
}
.contact-hero h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.contact-hero p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.btn-custom {
background: var(--secondary-color);
color: var(--dark-color);
padding: 12px 30px;
border: none;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
}
.btn-custom:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(248, 181, 0, 0.4);
color: var(--dark-color);
}
/* Contact Info Section */
.contact-info-section {
padding: 80px 0;
background: #f9f9f9;
}
.contact-card {
background: white;
border-radius: 15px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.contact-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.contact-icon-wrapper {
width: 80px;
height: 80px;
background: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 2rem;
}
.contact-card h4 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 15px;
color: var(--dark-color);
}
.contact-card p, .contact-card a {
font-size: 1.1rem;
color: #666;
text-decoration: none;
transition: color 0.3s ease;
}
.contact-card a:hover {
color: var(--primary-color);
}
/* Company Info Section */
.company-info-section {
padding: 80px 0;
background: white;
}
.company-info-card {
background: white;
border-radius: 15px;
padding: 40px 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.company-info-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.company-info-card h3 {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 20px;
color: var(--dark-color);
}
.company-info-card p {
font-size: 1.1rem;
color: #666;
margin-bottom: 10px;
}
/* Footer */
.footer {
background: var(--dark-color);
color: white;
padding: 50px 0 20px;
}
.footer h5 {
font-weight: 600;
margin-bottom: 20px;
color: var(--secondary-color);
}
.footer ul {
list-style: none;
padding: 0;
}
.footer ul li {
margin-bottom: 10px;
}
.footer ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}
.footer ul li a:hover {
color: var(--primary-color);
}
.footer p {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
}
.footer .copyright-text {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
margin-top: 20px;
}
/* Animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Emergency Button */
.emergency-btn {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--primary-color);
color: white;
border: none;
border-radius: 50%;
width: 60px;
height: 60px;
font-size: 1.5rem;
box-shadow: 0 4px 20px rgba(225, 11, 21, 0.4);
z-index: 1000;
animation: pulse 2s infinite;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
/* Responsive */
@media (max-width: 991.98px) {
.navbar-collapse {
background: rgba(255, 255, 255, 0.98);
padding: 20px;
border-radius: 10px;
margin-top: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
margin: 5px 0;
padding: 8px 15px;
border-radius: 5px;
}
.navbar-nav .nav-link:hover {
background-color: rgba(var(--primary-color-rgb), 0.1);
}
.contact-hero h1 {
font-size: 2.5rem;
}
.contact-hero p {
font-size: 1rem;
}
}
@media (max-width: 767.98px) {
.contact-hero h1 {
font-size: 2rem;
}
.contact-hero p {
font-size: 0.9rem;
}
.btn-custom {
padding: 10px 25px;
font-size: 0.9rem;
}
.contact-info-section, .company-info-section, .footer {
padding: 50px 0;
}
.emergency-btn {
width: 50px;
height: 50px;
font-size: 1.2rem;
bottom: 20px;
right: 20px;
}
}