/* 
    IPack Packers and Movers - Modern Premium Styles
    Font: Outfit (Headings), Inter (Body)
*/

:root {
    --primary-color: #003366; /* Deep Blue */
    --accent-color: #e31e24;  /* Vibrant Red */
    --secondary-color: #002244;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --bg-dark: #001a33;
    --border-color: #dddddd;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden !important;
    width: 100%;
}

html {
    overflow-x: hidden !important;
    width: 100%;
}

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

p {
    text-align: justify;
    text-align-last: left;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

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

h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.text-white { color: white !important; }
.text-white h2, .text-white h3, .text-white h4, .text-white p { color: white !important; }
.text-center { text-align: center; }
/* --- Premium Testimonials --- */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.testimonial-card-premium {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.testimonial-card-premium::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: rgba(220, 38, 38, 0.05);
}

.stars-rating {
    margin-bottom: 20px;
}

.stars-rating i {
    color: #fbbf24; /* Amber 400 */
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.reviewer-details h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

.reviewer-details span {
    font-size: 0.9rem;
    color: #6b7280;
}

.extra-text {
    display: none;
}

.more-link {
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
    font-size: 14px;
}

.more-link:hover {
    text-decoration: underline;
}

/* Contrast enhancement for dark sections */
.bg-dark .more-link, .bg-secondary .more-link {
    color: #fbbf24; /* Amber/Gold for dark backgrounds */
}

.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.p-40 { padding: 40px; }
.rounded-20 { border-radius: 20px; }
.mr-10 { margin-right: 10px; }

.include-list-white {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.include-list-white li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: white;
}

.include-list-white li i {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
    font-size: 15px;
}

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

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

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

/* Expandable Content */
.expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.expand-content.active {
    max-height: 1000px; /* Large enough for any content */
}

.more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;
    text-transform: lowercase;
}

.more-btn::after {
    content: '...';
}

.more-btn.active::after {
    content: ' less';
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .contact-info i {
     margin-right: 5px;
     color: var(--accent-color);
}

.top-bar .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar .social-icons a {
    color: white;
    font-size: 14px;
    transition: var(--transition);
    opacity: 0.9;
}

.top-bar .social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    opacity: 1;
}

/* Footer Social Links - Stylish */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.social-links a.facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3); }
.social-links a.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-links a.youtube:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3); }
.social-links a.twitter:hover { background: #000000; border-color: #000000; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 70%; 
    overflow: hidden;
}

.logo img {
    max-width: 100%;
    height: auto !important;
    max-height: 50px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .logo { max-width: 180px; } /* Hard cap for very small screens */
    .logo img {
        max-height: 32px; 
    }
}

.logo-icon {
    font-size: 32px;
    color: var(--accent-color);
}

.logo-text {
    font-size: 24px;
    letter-spacing: -1px;
}

.logo-text .accent {
    color: var(--accent-color);
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    display: block !important; /* Override flex if needed */
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav a {
    font-weight: 500;
    font-size: 15px;
}

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

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1002;
}

@media (max-width: 992px) {
    .mobile-toggle { display: block; }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px; /* Decreased width to prevent layout stretch */
        height: 100vh;
        background: white;
        z-index: 1001;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        padding: 80px 25px;
        display: block !important;
        overflow-y: auto;
        
        /* The Three-Lock Hidden State */
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none; /* Can't click through the ghost */
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav ul li { width: 100%; }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 10px 0 0 15px;
        transform: none;
        display: none; /* Hidden by default in mobile menu */
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav a {
        font-size: 18px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.6)), url('../../Photos/hero-image.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 58px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Ensure buttons stack on mobile */
}

@media (max-width: 576px) {
    .hero-btns {
        gap: 10px;
    }
    .hero-btns .btn {
        width: 100%; /* Stacking buttons on very small screens */
    }
}

/* Stats */
/* Stats - Modernized */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

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

.stat-item.modern {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-item.modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.stat-item.modern i {
    font-size: 42px;
    color: var(--accent-color);
    background: rgba(227, 30, 36, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-item.modern .number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item.modern .label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vertical Center Utility */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left; 
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

.about-text {
    width: 100%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
}

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

.card-img {
    height: 240px;
    overflow: hidden;
}

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

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-body {
    padding: 40px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

.step-card {
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

.step-num {
    font-family: 'Outfit';
    font-size: 60px;
    font-weight: 800;
    color: rgba(10, 37, 64, 0.05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step-card h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Why Choose Us */
/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.feature-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    font-size: 15px;
    opacity: 0.8;
}

.btn-text {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 15px;
    font-size: 14px;
}

/* Areas Served */
/* Areas Served - Modernized */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.area-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-item:hover {
    background: var(--bg-light);
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.area-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.area-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* Packing Types - Modernized */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.type-card.featured {
    border-top: 6px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.type-card h4 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.type-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 20px 0;
}

.type-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Testimonials */
/* Testimonials - Modernized */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-bottom: 5px solid var(--primary-color);
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(0, 51, 102, 0.05);
}

.testimonial-card .quote {
    font-size: 30px;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.client-info strong {
    font-size: 18px;
    color: var(--primary-color);
}

.client-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* Modern FAQ Accordion */
.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion-item.active {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.accordion-header h4 {
    font-size: 17px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-header i {
    color: var(--accent-color);
    transition: transform 0.4s ease;
    font-size: 14px;
}

.accordion-item.active .accordion-header {
    background: rgba(0, 51, 102, 0.02);
}

.accordion-item.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.accordion-content .p-30 {
    padding: 0 30px 30px 30px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.footer ul li i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer .logo-text { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Sticky CTA - Circular Floating Buttons */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
}

.sticky-cta a {
    pointer-events: auto;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0; /* Hide text */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sticky-cta a i {
    font-size: 28px;
}

.sticky-cta a:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: var(--accent-color); }


/* Mobile Menu Overlay */
@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 { font-size: 38px; line-height: 1.1; }
    
    @media (max-width: 480px) {
        .hero h1 { font-size: 30px; } /* Ensure long keywords don't overflow */
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .types-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .sticky-cta { bottom: 20px; left: 10px; right: 10px; }
    .sticky-cta a { width: 50px; height: 50px; }
    .sticky-cta a i { font-size: 22px; }
}

/* Contact & Form Styles */
.form-container {
    border-top: 5px solid var(--accent-color);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.btn-block {
    width: 100%;
}

.c-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.c-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: rgba(227, 30, 36, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

.address-item i {
    color: var(--accent-color);
    margin-top: 4px;
}

.success-icon {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile Adjustments for Contact */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .contact-section .row {
        flex-direction: column;
    }
    .contact-section .col-6 {
        width: 100%;
        padding: 0;
    }
    .form-container {
        margin-bottom: 40px;
    }
}

/* Islamabad & Specialized Page Styles */
.keyword-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    background: rgba(227, 30, 36, 0.05);
    padding: 2px 10px;
    border-radius: 4px;
}

.materials-details .material-card {
    height: 100%;
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
}

.materials-details .material-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.steps-grid .step-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-bottom: 5px solid var(--accent-color);
    text-align: left; /* Ensure it doesn't inherit center */
}

.steps-grid .step-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    left: auto;
    transform: none;
}

.steps-grid .step-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    margin-top: 0;
}

.service-detail-item .row.flex-reverse {
    flex-direction: row-reverse;
}

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

/* Specific FAQ Layout */
.faq-container .faq-item {
    transition: var(--transition);
}

.faq-container .faq-item:hover {
    border-color: var(--accent-color);
}

.faq-container .faq-item h4 {
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
}

/* Sub Page Hero */
.sub-hero {
    height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    position: relative;
    z-index: 1;
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.4));
    z-index: -1;
}

.sub-hero h1 { font-size: 52px; color: white; margin-bottom: 15px; z-index: 2; line-height: 1.1; }
.sub-hero p { font-size: 20px; opacity: 0.95; z-index: 2; max-width: 800px; }

/* Grid Utilities */
.row { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.col-6 { flex: 1; min-width: 350px; }
.items-center { align-items: center; }
.img-rounded { border-radius: 20px; width: 100%; box-shadow: var(--shadow-lg); object-fit: cover; }
.header-img { max-height: 450px; object-fit: cover; }

@media (max-width: 992px) {
    .sub-hero { height: 350px; padding: 60px 0; }
    .sub-hero h1 { font-size: 42px; }
    .row { gap: 30px; }
}

@media (max-width: 768px) {
    .service-detail-item .row.flex-reverse {
        flex-direction: column;
    }
    .col-6 { min-width: 0 !important; flex: 0 0 100% !important; }
    .row { gap: 20px; }
}

/* Services Include Grid */
.include-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.include-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-color);
}

.include-item i { color: var(--accent-color); font-size: 20px; }

/* Why Us Card White */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card-white {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.feature-card-white:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card-white i { font-size: 40px; color: var(--accent-color); margin-bottom: 25px; display: block; }
.feature-card-white h4 { margin-bottom: 15px; font-size: 22px; }

/* About Sub Card */
.about-card-large {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.about-card-large h2 { margin-bottom: 20px; }
.about-card-large p { margin-bottom: 20px; font-size: 17px; }

@media (max-width: 768px) {
    .sub-hero { height: 300px; text-align: center; }
    .sub-hero h1 { font-size: 36px; }
    .sub-hero p { margin: 0 auto; }
    .about-card-large { padding: 30px; }
    .col-6 { min-width: 100%; }
}

