/* Global Variables */
:root {
    --primary-color: #1c2547;
    /* Dark Navy */
    --accent-color: #CF2246;
    /* Yellow/Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #777777;
    --bg-light: #f9f9f9;
    --border-color: #eeeeee;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --container-width: 1200px;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

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

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid var(--accent-color);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 37, 71, 0.95);
    /* Semi-transparent Primary */
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-phone {
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.phone-icon-wrap {
    width: 34px;
    height: 34px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    animation: ring 2.5s ease-in-out infinite;
}

.phone-icon-wrap i {
    transform: scaleX(-1);
}

.phone-text {
    letter-spacing: 0.5px;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(15deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    15% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-6deg);
    }

    25% {
        transform: rotate(0deg);
    }
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.logo img {
    height: auto;
    /* Adjust as needed */
    width: 220px;
}

.mobile-toggle {
    display: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('assets/img/hero-1.jpeg');
    /* Placeholder */
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    /* offset fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 37, 71, 0.7);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Highlights Section */
.highlights-section {
    position: relative;
    margin-top: -80px;
    /* Overlap hero */
    z-index: 10;
    padding-bottom: 80px;
}

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

.highlight-card {
    background: var(--text-light);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--accent-color);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card .icon-box {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 34, 70, 0.08);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-badge i {
    font-size: 14px;
}

.about-text .lead {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-trust-points {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.trust-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-point i {
    color: var(--accent-color);
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    background: #fff;
    padding: 24px 16px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(207, 34, 70, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: var(--accent-color);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.section-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

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

/* Subtle decorative pattern to fill empty space */
.service-decoration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 0.5;
}

.decoration-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite 1s;
}

.decoration-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(207, 34, 70, 0.05);
    border-color: rgba(207, 34, 70, 0.15);
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy effect */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: var(--section-padding);
    background-color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.why-choose-image {
    overflow: hidden;
    border-radius: 8px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.why-choose-content>p {
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.why-list {
    margin-top: 30px;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.why-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.why-list i {
    font-size: 20px;
    color: #fff;
    background: var(--accent-color);
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why-list h4 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.why-list li p {
    font-size: 0.92rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.team-section .section-header h2 {
    color: var(--primary-color);
}

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

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--primary-color);
    margin: 0 5px;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Projects Section */
.projects-section {
    padding: var(--section-padding);
    background-color: #fff;
}

.projects-section .section-header h2 {
    color: var(--primary-color);
}

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

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.faq-heading {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
}

.faq-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-top: 8px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(207, 34, 70, 0.15);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 6px 24px rgba(207, 34, 70, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
}

.faq-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent-color);
    min-width: 36px;
    height: 36px;
    background: rgba(207, 34, 70, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-num {
    background: var(--accent-color);
    color: #fff;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 14px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px 0 80px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px 22px 80px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.contact-info p {
    color: #cccccc;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-color);
}

.info-item h5 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: #0d1226;
    /* Darker than primary */
    color: #cccccc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col .social-links a {
    color: #cccccc;
    font-size: 18px;
    margin-right: 15px;
}

.footer-col .social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

/* Responsive Media Queries */
@media (max-width: 991px) {
    .site-header {
        padding: 10px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 900;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        transform: translateY(0);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .header-cta {
        display: none !important;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .highlights-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .highlights-section {
        margin-top: 50px;
        /* Remove overlap on mobile for better spacing */
        padding-bottom: 50px;
    }

    .about-content,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-image,
    .why-choose-image {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}
/* ===== Navigation Dropdown ===== */
.nav-list li.dropdown { position: relative; }
.nav-list li.dropdown .dropbtn { display: flex; align-items: center; gap: 5px; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: #fff; min-width: 320px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-radius: 8px; z-index: 99; border-top: 3px solid var(--accent-color); padding: 10px 0; }
.dropdown-content a { color: var(--text-gray); padding: 12px 20px; text-decoration: none; display: block; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; border-bottom: 1px solid rgba(0,0,0,0.05); text-transform: none; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: rgba(207, 34, 70, 0.05); color: var(--accent-color); padding-left: 25px; }
.nav-list li.dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s ease; }

@media (max-width: 991px) {
    .dropdown-content { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.05); width: 100%; padding: 0; margin-top: 10px; display: none; }
    .nav-list li.dropdown.active .dropdown-content { display: block; }
    .dropdown-content a { color: #fff; text-align: left; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .dropdown-content a:hover { padding-left: 20px; background: rgba(207, 34, 70, 0.2); color: #fff; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Homepage Services Summary Grid (3-Top, 2-Bottom) ===== */
.services-summary-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.summary-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 40px 30px; width: calc(33.333% - 20px); transition: transform 0.3s ease, background 0.3s ease; text-align: center; display: flex; flex-direction: column; }
.summary-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.summary-icon { font-size: 40px; color: var(--accent-color); margin-bottom: 20px; }
.summary-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.summary-card .tagline { font-weight: 600; color: var(--accent-color); font-size: 0.9rem; margin-bottom: 15px; }
.summary-card p { font-size: 0.95rem; color: #ccc; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.summary-card .btn-learn-more { color: #fff; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: gap 0.3s ease, color 0.3s ease; border-bottom: none; }
.summary-card:hover .btn-learn-more { gap: 12px; color: var(--accent-color); }
@media (max-width: 991px) { .summary-card { width: calc(50% - 15px); } }
@media (max-width: 768px) { .summary-card { width: 100%; } }

/* ===== Service Detail Pages Layout ===== */
.service-detail-hero { background: var(--primary-color); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.service-detail-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(207, 34, 70, 0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.service-detail-hero h1 { font-size: 2.8rem; color: #fff; margin-bottom: 15px; position: relative; z-index: 1;}
.service-detail-hero .hero-headline { color: var(--accent-color); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; position: relative; z-index: 1;}
.service-content-wrapper { padding: 80px 0; background: #fff; }
.service-intro-box { background: var(--bg-light); border-left: 4px solid var(--accent-color); padding: 30px 40px; border-radius: 0 12px 12px 0; margin-bottom: 60px; font-size: 1.05rem; line-height: 1.8; color: var(--text-gray); }
.sub-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.sub-service-item { padding: 30px; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; transition: all 0.3s ease; background: #fff; }
.sub-service-item:hover { border-color: var(--accent-color); box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-3px); }
.sub-service-item h4 { color: var(--primary-color); font-size: 1.15rem; margin-bottom: 12px; }
.sub-service-item p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.why-it-matters-box { background: rgba(207, 34, 70, 0.05); padding: 40px; border-radius: 12px; text-align: center; border: 1px solid rgba(207, 34, 70, 0.1); }
.why-it-matters-box h3 { color: var(--primary-color); margin-bottom: 15px; }
.why-it-matters-box p { font-size: 1.1rem; font-weight: 500; color: var(--accent-color); margin: 0; }
@media (max-width: 768px) { .service-detail-hero { padding: 130px 0 60px; } .service-detail-hero h1 { font-size: 2rem; } }