/* ========================================
   PRO WEB LANKA - ENHANCED STYLES
   Professional Web Design Solutions
======================================== */

/* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-light: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.12);
    --shadow-lg: 0 10px 40px rgba(37, 99, 235, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ANIMATED BACKGROUND
======================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    animation: float 20s ease-in-out infinite;
}

.floating-shapes::before {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.floating-shapes::after {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* ========================================
   FLOATING CONTACT BUTTONS
======================================== */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn,
.hotline-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.hotline-btn {
    background: var(--gradient-blue);
}

.hotline-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 99, 235, 0.3), 0 0 0 10px rgba(37, 99, 235, 0.1);
    }
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-contact.active {
    background: var(--dark-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: var(--transition);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 80px);
    max-width: 500px;
    background: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.mobile-link {
    color: var(--gray);
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-link:hover,
.mobile-link:last-child {
    background: var(--gradient-blue);
    color: white;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-light);
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation */
.typing-text {
    display: inline-block;
    border-right: 3px solid var(--primary-blue);
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-blue);
    }
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.floating-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.floating-card h3 {
    font-size: 18px;
    color: var(--dark-gray);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   INFINITE SCROLLING TEXT
======================================== */
.infinite-scroll-section {
    background: var(--gradient-blue);
    padding: 20px 0;
    overflow: hidden;
}

.scroll-container {
    display: flex;
    white-space: nowrap;
}

.scroll-text {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    animation: scroll 30s linear infinite;
}

.scroll-text span {
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   SECTION STYLES
======================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 14px;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose {
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light-blue);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--gray);
}

.why-choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--gray);
    font-weight: 600;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    background: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-slider {
    margin-top: 40px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slideTestimonials 30s linear infinite;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #FFC107;
    margin-bottom: 16px;
}

.stars i {
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-content h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.testimonial-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--light-blue);
}

.author-info h5 {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-light);
    position: relative;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--gray);
}

/* Continue in next artifact... */

/* ========================================
   PRO WEB LANKA - ENHANCED STYLES (PART 2)
   Continuation of styles.css
======================================== */

/* ========================================
   ABOUT PAGE
======================================== */
.about-content {
    background: var(--light-gray);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Meet the Designer Section */
.meet-designer {
    background: white;
}

.designer-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.designer-image-container {
    position: sticky;
    top: 120px;
}

.designer-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.designer-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.designer-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-blue);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.designer-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.designer-title {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.designer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    margin-bottom: 24px;
}

.designer-bio {
    margin-bottom: 30px;
}

.designer-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.designer-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
}

.designer-stat {
    display: flex;
    gap: 16px;
    align-items: center;
}

.designer-stat i {
    font-size: 36px;
    color: var(--primary-blue);
}

.designer-stat h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.designer-stat p {
    font-size: 14px;
    color: var(--gray);
}

.designer-social {
    margin-bottom: 30px;
}

.designer-social h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.designer-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Mission & Vision */
.mission-vision {
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon i {
    font-size: 48px;
    color: white;
}

.mv-card h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* What We Do */
.what-we-do {
    background: var(--light-gray);
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wwd-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.wwd-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.wwd-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.wwd-card h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.wwd-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Our Values */
.our-values {
    background: white;
}

.our-values h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--light-gray);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Why Choose About Section */
.why-choose-about {
    background: var(--light-gray);
}

.why-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card-about {
    background: white;
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    text-align: center;
}

.why-card-about:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon-about {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon-about i {
    font-size: 36px;
    color: var(--primary-blue);
}

.why-card-about h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.why-card-about p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   SERVICES PAGE
======================================== */
.services-intro {
    background: white;
    padding: 60px 0;
}

.intro-content-service {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content-service h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.intro-content-service p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-detail.alternate {
    background: white;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.service-lead {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-text > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
}

.service-features i {
    color: var(--primary-blue);
    font-size: 16px;
}

.service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-detail-image {
    height: 100%;
    min-height: 400px;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder i {
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Additional Services Section */
.additional-services-section {
    background: white;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.additional-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.additional-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.additional-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.additional-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Process Timeline */
.our-process {
    background: var(--light-gray);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--light-blue);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    z-index: 1;
}

.process-content h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.process-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   PORTFOLIO PAGE
======================================== */
.portfolio-stats {
    background: var(--light-gray);
    padding: 60px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item-portfolio {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item-portfolio:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-item-portfolio h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item-portfolio p {
    color: var(--gray);
    font-weight: 600;
}

/* Portfolio Filter */
.portfolio-section {
    background: white;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--light-blue);
    background: white;
    color: var(--gray);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    transition: var(--transition);
}

.portfolio-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.portfolio-placeholder i {
    font-size: 64px;
    color: var(--primary-blue);
    opacity: 0.5;
}

.portfolio-placeholder p {
    color: var(--gray);
    font-size: 14px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-overlay-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-overlay-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.portfolio-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.portfolio-btn {
    padding: 10px 24px;
    background: white;
    color: var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.portfolio-info h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.portfolio-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Client Success */
.client-success {
    background: var(--light-gray);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.success-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 36px;
    color: var(--primary-blue);
}

.success-card h3 {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Technologies */
.technologies {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.tech-item p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

/* ========================================
   BLOG PAGE
======================================== */
.featured-blog {
    background: white;
    padding: 60px 0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 24px;
}

.featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.featured-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.featured-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Blog List */
.blog-list-section {
    background: var(--light-gray);
}

.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card-full {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card-full .blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-full .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-full:hover .blog-image img {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 64px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.blog-card-full .blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.blog-card-full h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-full p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

/* Newsletter */
.newsletter {
    background: var(--gradient-blue);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Blog Categories */
.blog-categories {
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.category-card:hover {
    background: var(--gradient-blue);
    color: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    transition: var(--transition);
}

.category-card:hover i {
    color: white;
}

.category-card h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    transition: var(--transition);
}

.category-card:hover h3,
.category-card:hover p {
    color: white;
}

.category-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Continue with remaining styles... */

/* ========================================
   PRO WEB LANKA - ENHANCED STYLES (PART 3 - FINAL)
   Contact, Pricing, and Responsive Styles
======================================== */

/* ========================================
   PRICING PAGE
======================================== */
.pricing-intro {
    background: var(--light-gray);
    text-align: center;
    padding: 60px 0;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.intro-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.price {
    margin-bottom: 8px;
}

.currency {
    font-size: 20px;
    color: var(--gray);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-duration {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: var(--primary-blue);
}

.pricing-features .fa-times {
    color: var(--gray);
    opacity: 0.3;
}

/* Website Types */
.website-types {
    background: var(--light-gray);
}

.website-types h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.type-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.type-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

/* Additional Services */
.additional-services {
    background: white;
}

.additional-services h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 36px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-section {
    background: var(--light-gray);
}

.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
}

.comparison-table thead {
    background: var(--gradient-blue);
    color: white;
}

.comparison-table th {
    font-size: 16px;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-blue);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table .fa-check {
    color: var(--primary-blue);
    font-size: 18px;
}

.comparison-table .fa-times {
    color: var(--gray);
    opacity: 0.3;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Guarantee Section */
.guarantee-section {
    background: white;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.guarantee-badge i {
    font-size: 48px;
    color: white;
}

.guarantee-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.guarantee-content > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
}

.guarantee-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.guarantee-item span {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-section {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-text h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-text p,
.contact-text a {
    color: var(--gray);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-blue);
}

.social-section h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.social-links-large {
    display: flex;
    gap: 16px;
}

.social-links-large a {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links-large a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-quick {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-quick:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.call-quick {
    background: var(--gradient-blue);
    color: white;
}

.call-quick:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.quick-btn i {
    font-size: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 24px;
    text-align: center;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Why Contact */
.why-contact {
    background: white;
}

.why-contact h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.why-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Working Hours */
.working-hours {
    background: var(--light-gray);
}

.working-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.hours-info > p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hours-list {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-blue);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-gray);
}

.time {
    color: var(--gray);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.availability-badge i {
    font-size: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

.hours-image {
    height: 100%;
    min-height: 400px;
}

.hours-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-placeholder i {
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Map Section */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.map-placeholder {
    background: white;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-col ul li i {
    font-size: 14px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 997;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Continue with responsive styles... */

/* ========================================
   PRO WEB LANKA - RESPONSIVE STYLES (PART 4 - FINAL)
   Mobile and Tablet Responsive Design
======================================== */

/* ========================================
   RESPONSIVE DESIGN - TABLET
======================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image {
        height: 400px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .about-main {
        grid-template-columns: 1fr;
    }

    .designer-profile {
        grid-template-columns: 1fr;
    }

    .designer-image-container {
        position: relative;
        top: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
    }

    .working-hours-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .cta h2 {
        font-size: 36px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
======================================== */
@media (max-width: 768px) {
    /* Floating Buttons */
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn,
    .hotline-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Header */
    .header {
        width: calc(100% - 40px);
        top: 10px;
    }

    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        width: calc(100% - 40px);
        top: 80px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
    }

    .floating-card {
        padding: 20px;
    }

    .floating-card i {
        font-size: 32px;
    }

    .floating-card h3 {
        font-size: 14px;
    }

    .hero-stats-mini {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* Infinite Scroll */
    .scroll-text {
        font-size: 18px;
        gap: 30px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .why-choose-text h2 {
        font-size: 32px;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 320px;
    }

    /* CTA */
    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }

    /* Page Header */
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 18px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* About */
    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .designer-info h3 {
        font-size: 28px;
    }

    .designer-stats {
        flex-direction: column;
        gap: 20px;
    }

    .designer-cta {
        flex-direction: column;
    }

    .designer-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mission & Vision */
    .mv-grid {
        grid-template-columns: 1fr;
    }

    /* What We Do */
    .wwd-grid {
        grid-template-columns: 1fr;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .our-values h2,
    .website-types h2,
    .additional-services h2,
    .faq-section h2,
    .why-contact h2 {
        font-size: 32px;
    }

    /* Services */
    .service-detail-text h2 {
        font-size: 28px;
    }

    .service-lead {
        font-size: 18px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        gap: 12px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Blog */
    .featured-content h2 {
        font-size: 24px;
    }

    .blog-grid-full {
        grid-template-columns: 1fr;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .guarantee-features {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .quick-contact-buttons {
        flex-direction: row;
    }

    .quick-btn {
        flex: 1;
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Other Sections */
    .intro-content h2,
    .intro-content-service h2 {
        font-size: 28px;
    }

    .intro-content p,
    .intro-content-service p {
        font-size: 16px;
    }

    .process-step {
        gap: 20px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .process-step::before {
        left: 25px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
======================================== */
@media (max-width: 480px) {
    /* Header */
    .header {
        width: calc(100% - 20px);
        border-radius: 30px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-image {
        height: 30px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-menu {
        width: calc(100% - 20px);
        border-radius: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Sections */
    .section-header h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* Cards */
    .service-card,
    .wwd-card,
    .type-card {
        padding: 30px 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .value-number {
        font-size: 56px;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .floating-card {
        padding: 15px;
    }

    .floating-card i {
        font-size: 24px;
    }

    .floating-card h3 {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    /* Designer Stats */
    .designer-stat {
        flex-direction: column;
        text-align: center;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
    }

    /* Contact */
    .quick-contact-buttons {
        flex-direction: column;
    }

    .whatsapp-btn,
    .hotline-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    /* Service Items */
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    /* Blog */
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   LOADING STATE
======================================== */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    position: absolute;
    right: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   SMOOTH SCROLL
======================================== */
html {
    scroll-behavior: smooth;
}

/* ========================================
   SELECTION STYLING
======================================== */
::selection {
    background: var(--primary-blue);
    color: white;
}

::-moz-selection {
    background: var(--primary-blue);
    color: white;
}

/* ========================================
   SCROLLBAR STYLING
======================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .header,
    .mobile-menu,
    .footer,
    .cta,
    .floating-contact-buttons,
    .back-to-top {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   CUSTOM ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply animations to elements */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

/* ========================================
   END OF STYLES
======================================== */


/* ========================================
   BLOG POST STYLES
   Add this to your styles.css file
======================================== */

/* Blog Post Header */
.blog-post-header {
    padding: 140px 0 60px;
    background: var(--light-gray);
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.back-to-blog:hover {
    gap: 12px;
}

.post-meta-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray);
}

.post-category {
    background: var(--gradient-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.blog-post-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
    background: white;
}

.post-main {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-content {
    max-width: 100%;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.post-body h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-top: 30px;
    margin-bottom: 16px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 12px;
}

.post-body blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
}

.post-body blockquote p {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-gray);
    margin: 0;
}

/* CTA Box in Post */
.cta-box {
    background: var(--gradient-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.post-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Section */
.share-section {
    padding: 30px 0;
    border-top: 2px solid var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
    margin: 40px 0;
    text-align: center;
}

.share-section h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-5px);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.whatsapp {
    background: #25D366;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
    margin-top: 40px;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info h5 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.author-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.author-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Sidebar Contact */
.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    color: white;
}

.sidebar-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sidebar-btn.call {
    background: var(--gradient-blue);
}

.sidebar-btn.email {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post {
    display: flex;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
    padding: 12px;
    border-radius: 12px;
}

.related-post:hover {
    background: white;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post-info h5 {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 6px;
    line-height: 1.4;
}

.related-post-info span {
    font-size: 12px;
    color: var(--gray);
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.category-list span {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive Blog Post */
@media (max-width: 992px) {
    .post-main {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: relative;
        top: 0;
    }

    .blog-post-header h1 {
        font-size: 36px;
    }

    .post-subtitle {
        font-size: 18px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 28px;
    }

    .post-subtitle {
        font-size: 16px;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-meta-info {
        gap: 12px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-image img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .post-cta-buttons {
        flex-direction: column;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body blockquote {
        padding: 16px 20px;
    }

    .post-body blockquote p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-post-header h1 {
        font-size: 24px;
    }

    .post-body {
        font-size: 15px;
    }

    .post-body h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 24px;
    }
}

/* END OF BLOG POST STYLES */