html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26,35,126,0.8), rgba(48,63,159,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 40px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #e8eaf6;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #c5cae9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245,0,87,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245,0,87,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
    transform: translateY(-3px);
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Branches Section */
.branches-section {
    background: white;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.branch-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.branch-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.city-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.branch-content {
    padding: 25px;
}

.branch-content h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.branch-address, .branch-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.branch-address i, .branch-phone i {
    color: #ff4081;
    margin-top: 3px;
}

.branch-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.call-btn {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.call-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #4caf50;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.whyus-section {
    background: white;
}

.whyus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.whyus-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whyus-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #1a237e;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
}

.whyus-features .btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* Footer Styles */
#footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d1440 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #e8eaf6;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff4081;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c5cae9;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #c5cae9;
}

.contact-item i {
    color: #ff4081;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff4081;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #c5cae9;
    font-size: 0.9rem;
}

.privacy-link {
    color: #ff4081;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Footer-Only Overrides */
#footer .contact-item {
    align-items: center;
}

#footer .contact-item i {
    margin-top: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1002;
}

.close-modal:hover {
    color: #ff4081;
}

.modal-content h2 {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 25px;
    margin: 0;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: #1a237e;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.modal-body p, .modal-body ul {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .whyus-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whyus-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Responsive Hamburger Menu & Mobile Nav --- */

/* menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

/* hamburger lines */
.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: relative;
}
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.menu-toggle .hamburger::before {
    top: -8px;
}
.menu-toggle .hamburger::after {
    top: 8px;
}

/* when nav open, animate hamburger into X */
.menu-toggle.open .hamburger {
    background: transparent;
}
.menu-toggle.open .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav default hidden; becomes a full-width dropdown when open */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1100;
    }

    .nav-menu {
        display: none; /* hidden by default on mobile */
        position: absolute;
        left: -20px;
        right: -20px;
        top: 100%;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        padding: 10px 20px;
        flex-direction: column;
        gap: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 8px;
        justify-content: center;
        font-size: 1.05rem;
    }

    .nav-menu a:hover {
        background: rgba(255,255,255,0.08);
        transform: none;
    }

    /* ensure header-content stacks nicely */
    .header-content {
        position: relative;
        padding: 10px 0;
    }

    /* prevent hero background jump when menu opens (body overflow handled in JS) */
}

/* small phones tweaks */
@media (max-width: 480px) {
    .nav-menu a {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .menu-toggle .hamburger,
    .menu-toggle .hamburger::before,
    .menu-toggle .hamburger::after {
        width: 22px;
    }
}

/* About Page Specific Styles */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, rgba(26,35,126,0.9), rgba(48,63,159,0.8)), url('images/service-support.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #e8eaf6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #ff4081;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: #c5cae9;
}

.breadcrumb span {
    color: #c5cae9;
}

/* Who We Are Section */
.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.who-we-are-text .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.intro-text strong {
    color: #1a237e;
    font-weight: 600;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.mv-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ff4081;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mv-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff4081;
    margin-bottom: 8px;
}

.stat-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.who-we-are-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.who-we-are-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
}

.wwd-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.wwd-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding: 30px;
}

.wwd-statement strong {
    color: #1a237e;
    font-weight: 600;
}

.wwd-statement::before,
.wwd-statement::after {
    content: '"';
    font-size: 3rem;
    color: #ff4081;
    font-family: Georgia, serif;
    position: absolute;
    opacity: 0.3;
}

.wwd-statement::before {
    top: 0;
    left: 0;
}

.wwd-statement::after {
    bottom: -20px;
    right: 0;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.service-category h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-category ul {
    list-style: none;
    text-align: left;
}

.service-category li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category li::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
}

.event-types {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-types h3 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.event-type:hover {
    background: #e8eaf6;
    transform: translateX(5px);
}

.event-type i {
    color: #ff4081;
    font-size: 1.2rem;
    width: 30px;
}

.event-type span {
    color: #333;
    font-weight: 500;
}

/* How We Work Section */
.how-we-work-section {
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #1a237e, #ff4081);
    border-radius: 2px;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 4px 15px rgba(26,35,126,0.3);
}

.step-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    flex-grow: 1;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-content h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(245,0,87,0.3);
}

.cta-box {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(26,35,126,0.2);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    color: #e8eaf6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    border: none;
}

.cta-box .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-box .btn-secondary:hover {
    background: white;
    color: #1a237e;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .who-we-are-image {
        order: -1;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: -25px;
        z-index: 2;
    }
    
    .step-content {
        padding-top: 50px;
    }
    
    .step-icon {
        top: 10px;
        right: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-box .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, rgba(26,35,126,0.9), rgba(48,63,159,0.8));
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.contact-tagline {
    font-size: 1.3rem;
    color: #e8eaf6;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Contact Intro Section */
.contact-intro-section {
    padding: 60px 0 40px;
    background: white;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.intro-box h2 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text strong {
    color: #1a237e;
    font-weight: 600;
}

.contact-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight i {
    color: #ff4081;
    font-size: 1.2rem;
}

.highlight span {
    color: #333;
    font-weight: 500;
}

/* Contact Details Section */
.contact-details-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1a237e;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.highlighted-card {
    border: 2px solid #ff4081;
    position: relative;
    transform: scale(1.02);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(245,0,87,0.3);
}

.city-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.city-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.city-header h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #ff4081;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
}

.contact-item strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a {
    color: #1a237e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff4081;
    text-decoration: underline;
}

.contact-actions {
    display: flex;
    gap: 10px;
}

.contact-actions .action-btn {
    flex: 1;
    padding: 12px 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-emphasis {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    font-weight: 600;
}

.whatsapp-emphasis:hover {
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
    background: white;
}

.hours-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hours-content h2 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 2rem;
}

.hours-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hours-grid {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.day-row:last-child {
    border-bottom: none;
}

.day-row.highlight {
    background: linear-gradient(135deg, rgba(26,35,126,0.05), rgba(48,63,159,0.05));
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e8eaf6;
}

.day {
    color: #333;
    font-weight: 500;
}

.time {
    color: #1a237e;
    font-weight: 600;
}

.day-row.highlight .time {
    color: #ff4081;
}

.response-info {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,64,129,0.05), rgba(245,0,87,0.05));
    border-radius: 12px;
    border-left: 4px solid #ff4081;
}

.response-info i {
    color: #ff4081;
    font-size: 2rem;
}

.response-info h4 {
    color: #1a237e;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.response-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.hours-cta {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26,35,126,0.2);
}

.hours-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hours-cta p {
    color: #e8eaf6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.central-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.central-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.central-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.central-btn i {
    font-size: 1.5rem;
    color: #ff4081;
    width: 40px;
}

.central-btn span {
    display: flex;
    flex-direction: column;
}

.central-btn small {
    font-size: 0.85rem;
    color: #c5cae9;
    margin-top: 5px;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .hours-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hours-cta {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0 50px;
    }
    
    .contact-tagline {
        font-size: 1.1rem;
    }
    
    .intro-box {
        padding: 30px 20px;
    }
    
    .intro-box h2 {
        font-size: 1.7rem;
    }
    
    .contact-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .city-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
    
    .central-btn {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .central-btn i {
        margin-bottom: 10px;
    }
}

/* Equipment Hero Section */
.equipment-hero-section {
    background: linear-gradient(135deg, rgba(26,35,126,0.9), rgba(48,63,159,0.8)), url('images/service-delivery.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Equipment Catalog Section */
.equipment-catalog {
    padding: 80px 0;
    background: white;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100svh; /* mobile-safe viewport */
    }
}

@media (max-width: 768px) {
    #footer {
        text-align: center;
    }

    #footer .contact-item {
        justify-content: center;
        text-align: center;
    }

    #footer .footer-links a {
        justify-content: center;
    }

    #footer .social-links {
        justify-content: center;
    }
}

/* ================================
   CONTACT CARDS — ICON ABOVE TEXT
   SIMPLE & STABLE FIX
================================ */

/* Contact cards only */
.contact-details-section .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

/* Icon styling */
.contact-details-section .contact-item i {
    font-size: 1.3rem;
    margin: 0;
}

/* Text container */
.contact-details-section .contact-item div {
    text-align: center;
}

/* Remove weird spacing from labels */
.contact-details-section .contact-item strong {
    margin-bottom: 2px;
}


