/* Global Variables */
:root {
    --primary-color: #8A1538; /* Qatar Maroon */
    --primary-dark: #690f2a;
    --text-dark: #111111;
    --text-gray: #666666;
    --bg-light: #f9f9fb;
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-gray);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

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

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-circle:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.btn-circle-outline {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(138, 21, 56, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Header Top Highlight Bar */
.header-top {
    background-color: var(--primary-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-phone-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-info a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-contact-info a i {
    color: #ffffff;
    font-size: 12px;
}

.header-contact-info a:hover {
    opacity: 0.85;
}

.header-social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-social-links a {
    color: #ffffff;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-social-links a:hover {
    color: var(--primary-color) !important;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.03);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-link i {
    font-size: 10px;
    color: var(--text-gray);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.view-all:hover {
    gap: 12px;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 60px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(138, 21, 56, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

.hero-dots.top-right {
    top: -20px;
    right: -20px;
}

.hero-dots.bottom-left {
    bottom: -20px;
    left: -20px;
}

.hero-image-blob {
    position: relative;
    border-radius: 40px 240px 40px 240px;
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    background-color: #f1ede8;
}

.hero-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.projects-card {
    top: 40px;
    left: -20px;
    width: 200px;
}

.clients-card {
    bottom: 40px;
    right: -20px;
    width: 220px;
}

.card-title {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.card-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.sparkline {
    margin-top: 10px;
    height: 30px;
}

.avatars {
    display: flex;
    margin-top: 10px;
}

.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    margin-left: -10px;
    z-index: 5;
}

/* Who We Are */
.wwa-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.wwa-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.wwa-image img {
    border-radius: 20px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.dots-pattern {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
    opacity: 0.3;
}

.wwa-content {
    width: 100%;
}

.wwa-content .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.wwa-content .section-desc {
    font-size: 15px;
    margin-bottom: 30px;
}

.wwa-stats {
    grid-column: 1 / span 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #eaeaea;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.stat-number {
    font-size: 28px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

.service-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    margin-bottom: 24px;
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--bg-light);
    border: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.portfolio-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
}

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

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-info {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.p-title {
    font-size: 18px;
    margin-bottom: 4px;
}

.p-meta {
    font-size: 13px;
    color: var(--text-gray);
}

/* Testimonial */
.testimonial {
    padding: 0 0 100px 0;
}

.testimonial-box {
    background-color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

.t-google-badge {
    width: 320px;
    margin: 60px;
    flex-shrink: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.t-google-badge .g-score {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: white;
    font-family: var(--font-main);
}

.t-google-badge .g-stars {
    color: #ffb400; /* Rich Gold */
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.t-google-badge .g-count {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.t-google-badge .g-count i {
    color: #4cbb17; /* Green check circle */
}

.t-content {
    width: 60%;
    padding: 80px 80px 80px 20px;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.t-slider {
    position: relative;
    width: 100%;
    min-height: 280px;
}

.t-slide {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(40px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-slide.active {
    position: relative;
    top: 0;
    transform: translateY(0) translateX(0);
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
    color: white;
}

.t-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar-badge {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.2);
}

.author-name {
    color: white;
    font-size: 18px;
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.t-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-gray);
}

.b-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.b-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.blog-img {
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* CTA Section */
.cta {
    padding: 0 0 100px 0;
}

.cta-box {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-title {
    font-size: 36px;
    color: white;
    margin-bottom: 8px;
    text-align: left;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid #eaeaea;
}

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

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 24px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.f-title {
    font-size: 16px;
    margin-bottom: 24px;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: var(--text-gray);
    font-size: 14px;
}

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

.f-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.f-contact i {
    color: var(--primary-color);
}

.f-map {
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
}

.f-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    color: var(--text-gray);
}

.fb-links {
    display: flex;
    gap: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 60px; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-title { font-size: 48px; }
    .hero-desc { margin: 0 auto 30px; }
    .projects-card { left: 20px; }
    
    .wwa-container { grid-template-columns: 1fr; gap: 40px; }
    .wwa-image { max-width: 600px; margin: 0 auto; }
    .wwa-content { text-align: center; }
    .wwa-stats { grid-column: 1; margin-top: 20px; padding-top: 30px; }
    
    .testimonial-box { flex-direction: column; }
    .t-google-badge, .t-content { width: 100%; }
    .t-google-badge { 
        margin: 40px auto 20px; 
        width: calc(100% - 80px);
        max-width: 320px;
        padding: 40px 20px;
    }
    .t-content { padding: 40px 30px; }
    
    .cta-box { flex-direction: column; gap: 30px; text-align: center; }
    .cta-title, .cta-desc { text-align: center; }
    .wcu-split-container { grid-template-columns: 1fr; gap: 60px; }
    .wcu-image-column { max-width: 600px; margin: 0 auto; width: 100%; }
    .wcu-content-column { text-align: center; }
    .wcu-list { text-align: left; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header .btn-primary { display: none; }
    
    .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
    .wcu-list { grid-template-columns: 1fr; gap: 24px; }
    .wwa-stats { flex-wrap: wrap; gap: 30px; }
    .stat-item { min-width: 40%; }
    .stat-item::after { display: none; }
    
    .portfolio-filters { flex-wrap: wrap; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Page Header */
.page-header {
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: var(--bg-white);
}

.breadcrumb {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-dark);
}

.ph-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.ph-title {
    font-size: 54px;
}

.ph-desc {
    max-width: 400px;
    font-size: 16px;
    color: var(--text-gray);
}

/* About Who We Are */
.about-wwa-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.awwa-text {
    width: 40%;
    position: relative;
}

.awwa-text .btn {
    margin-top: 20px;
}

.dots-pattern-left {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: -1;
    opacity: 0.3;
}

.awwa-image-area {
    width: 60%;
    position: relative;
    padding-bottom: 40px; /* space for the stats overlay */
}

.awwa-image {
    border-radius: 20px;
    overflow: hidden;
}

.awwa-image img {
    width: 100%;
    display: block;
}

.awwa-stats {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

/* Our Story */
.our-story-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.os-text {
    width: 45%;
}

.os-values {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 24px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-text p {
    font-size: 14px;
}

/* Why Choose Us */
.wcu-header {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.wcu-split-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.wcu-image-column {
    position: relative;
}

.wcu-image-wrapper {
    position: relative;
    border-radius: 24px;
    z-index: 2;
}

.wcu-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: block;
    transition: transform 0.5s ease;
}

.wcu-image-wrapper:hover img {
    transform: scale(1.02);
}

.wcu-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 21, 56, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.badge-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.badge-lbl {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.wcu-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary-color) 2.5px, transparent 2.5px);
    background-size: 18px 18px;
    z-index: -1;
    opacity: 0.15;
}

.wcu-dots.top-right {
    top: -30px;
    right: -30px;
}

.wcu-dots.bottom-left {
    bottom: -30px;
    left: -30px;
}

.wcu-content-column {
    display: flex;
    flex-direction: column;
}

.wcu-content-column .section-title {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.25;
}

.wcu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}

.wcu-list-item {
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.wcu-list-item:hover {
    transform: translateY(-2px);
}

.wcu-item-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.wcu-list-item:hover .wcu-item-icon {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(138, 21, 56, 0.25);
}

.wcu-item-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.wcu-item-text p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.55;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-5px);
}

.f-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Our Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
}

.team-img {
    height: 320px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.team-social a {
    color: var(--text-gray);
    font-size: 16px;
}

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

/* Contact Us Page */
/* Contact Hero */
.contact-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: var(--bg-white);
}

.contact-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ch-text {
    width: 45%;
}

.ch-title {
    font-size: 54px;
    margin-bottom: 24px;
}

.ch-title span {
    color: var(--primary-color);
}

.ch-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ch-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ch-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ch-feature p {
    font-size: 14px;
    margin: 0;
}

.ch-image-area {
    width: 55%;
    position: relative;
}

.ch-image-blob {
    border-radius: 40px 240px 40px 240px;
    overflow: hidden;
    height: 500px;
}

.ch-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots.top-right {
    top: -20px;
    right: -20px;
    left: auto;
    bottom: auto;
    z-index: -1;
}

/* Connect With Us */
.connect-section {
    padding: 100px 0;
}

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

.connect-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: var(--transition);
}

.connect-card:hover {
    box-shadow: var(--shadow-sm);
}

.connect-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.c-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.c-meta {
    font-size: 13px;
    color: var(--text-gray);
}

/* Message & Map */
.message-map-section {
    padding: 100px 0;
}

.message-map-container {
    display: flex;
    gap: 60px;
}

.contact-form-area {
    width: 50%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

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

.form-privacy {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-privacy i {
    color: var(--primary-color);
}

.map-area {
    width: 50%;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.map-image,
.map-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 300px;
}

.map-overlay-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.map-overlay-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* Responsive Contact Us */
@media (max-width: 1200px) {
    .connect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .contact-hero-container { flex-direction: column; }
    .ch-text, .ch-image-area { width: 100%; }
    .ch-image-blob { height: 400px; border-radius: 40px 180px 40px 180px; }
    .message-map-container { flex-direction: column; }
    .contact-form-area, .map-area { width: 100%; }
}

@media (max-width: 768px) {
    .connect-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .ch-title { font-size: 40px; }
    .map-overlay-card { position: static; width: 100%; margin-top: 20px; box-shadow: none; border: 1px solid #eaeaea; }
}

/* Services Detailed Page */
.service-row {
    padding: 100px 0;
}

.sr-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sr-container.reverse {
    flex-direction: row-reverse;
}

.sr-text {
    width: 45%;
}

.sr-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.sr-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sr-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.sr-features {
    list-style: none;
    margin-bottom: 30px;
}

.sr-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 15px;
}

.sr-features i {
    color: var(--primary-color);
}

.sr-image {
    width: 55%;
    position: relative;
    border-radius: 20px;
}

.sr-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.sr-image-blob {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: 40px 120px 40px 120px;
    top: -20px;
    right: -20px;
    z-index: 1;
    opacity: 0.1;
}

.sr-image-blob.reverse-blob {
    top: -20px;
    left: -20px;
    right: auto;
    border-radius: 120px 40px 120px 40px;
}

@media (max-width: 992px) {
    .sr-container, .sr-container.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .sr-text, .sr-image {
        width: 100%;
    }
}

/* Responsive About Us */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-wwa-container { flex-direction: column; text-align: center; }
    .awwa-text, .awwa-image-area { width: 100%; }
    .our-story-container { flex-direction: column; text-align: center; }
    .os-text, .os-values { width: 100%; }
    .value-item { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .awwa-stats { 
        position: static; 
        flex-wrap: wrap; 
        gap: 20px; 
        margin-top: 20px; 
        box-shadow: none; 
        padding: 0; 
    }
    .awwa-image-area { padding-bottom: 0; }
    .ph-content { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ph-title { font-size: 40px; }
}

/* Services Cards */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.scard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scard:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.scard-img {
    width: 100%;
    height: 250px;
}

.scard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scard-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scard-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 21, 56, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.scard h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.scard p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.scard-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.scard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
}

.scard-features i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .services-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Specifics */
.featured-post {
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.fp-image {
    width: 50%;
    height: 450px;
}

.fp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-content {
    width: 50%;
    padding: 60px;
}

.fp-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138, 21, 56, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fp-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.fp-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-link.prev-next {
    background: #f8f9fa;
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.page-dots {
    color: var(--text-gray);
    font-weight: 600;
}

@media (max-width: 992px) {
    .featured-post {
        flex-direction: column;
    }
    .fp-image, .fp-content {
        width: 100%;
    }
    .fp-image {
        height: 300px;
    }
    .fp-content {
        padding: 40px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatAnim1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes floatAnim2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0px); }
}

.fade-up-1 { animation: fadeUp 0.8s ease forwards 0.2s; opacity: 0; }
.fade-up-2 { animation: fadeUp 0.8s ease forwards 0.4s; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.8s ease forwards 0.6s; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.8s ease forwards 0.8s; opacity: 0; }

.fade-in-scale { animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; opacity: 0; }

.floating-anim-1 { animation: floatAnim1 4s ease-in-out infinite; }
.floating-anim-2 { animation: floatAnim2 5s ease-in-out infinite 1s; }

/* Service Tabs Styling */
.services-tabs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.service-tab-btn {
    padding: 12px 28px;
    border-radius: 30px;
    background-color: rgba(138, 21, 56, 0.05);
    border: 2px solid transparent;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    outline: none;
}

.service-tab-btn:hover, .service-tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: grid;
    opacity: 1;
}

/* Service Card modifications for Home Page grid */
.services-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid.four-cols .service-card {
    padding: 30px 24px;
}

@media (max-width: 1200px) {
    .services-grid.four-cols {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .services-grid.three-cols,
    .services-grid.four-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-grid.three-cols,
    .services-grid.four-cols {
        grid-template-columns: 1fr !important;
    }
}

/* Hide header top highlight bar on mobile screens to save screen space */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    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: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

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

/* Pulsing effect to naturally capture attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Custom premium CSS tooltip for WhatsApp widget */
.whatsapp-float[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background-color: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.whatsapp-float[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

