/* ====================================
   Verbum Creative - Modern Styles
   ==================================== */

/* CSS Variables for easy customization */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --secondary-color: #f72585;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    transition: var(--transition);
}

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

/* Skip Links */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    position: relative;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

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

.floating-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    top: 60%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: white;
}

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

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styling */
section {
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
}

.bg-gradient-subtle {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

/* Portfolio Section */
.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 5rem 0;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-rating {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author h5 {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-author p {
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a:hover {
    color: var(--primary-light) !important;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: var(--shadow-sm);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}
/* ====================================
   About Us Page Specific Styles
   ==================================== */

/* Page Header */
.page-header {
    padding: 5rem 0 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Transformation Section */
.transformation-section {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decoration {
    width: 350px;
    height: 350px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.15;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.about-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

.content-block {
    padding: 2rem 0;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Mission Section */
.mission-icon-wrapper {
    position: relative;
    padding: 2rem;
}

.mission-icon {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.mission-statement {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: rgba(67, 97, 238, 0.05);
    border-radius: 0 12px 12px 0;
}

/* Purpose Section */
.purpose-section {
    padding: 5rem 0;
}

.purpose-card {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.purpose-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.purpose-card p {
    font-size: 1.125rem;
}

/* Core Values Section */
.values-section {
    padding: 5rem 0;
}

.value-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon-wrapper {
    display: inline-block;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient-1);
    color: white;
    transform: rotateY(360deg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section on About Page */
.cta-section .btn-outline-light {
    border: 2px solid white;
}

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

/* Responsive Adjustments for About Page */
@media (max-width: 991px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .transformation-section,
    .purpose-section,
    .values-section {
        padding: 3rem 0;
    }
    
    .about-decoration {
        width: 280px;
        height: 280px;
    }
    
    .stat-item {
        padding: 2rem 2.5rem;
        min-width: 180px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .mission-statement {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
    
    .purpose-card {
        padding: 2rem;
    }
    
    .purpose-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-image-wrapper {
        min-height: 300px;
    }
    
    .about-decoration {
        width: 220px;
        height: 220px;
    }
    
    .stat-item {
        padding: 1.5rem 2rem;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .mission-icon {
        max-width: 200px;
    }
    
    .mission-statement {
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    .purpose-card {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .cta-section .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn-lg.me-3 {
        margin-right: 0 !important;
    }
}

/* Animation delays for value cards */
.value-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.value-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.value-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.value-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ====================================
   Services Page Specific Styles
   ==================================== */

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-block {
    padding: 3rem 0;
    position: relative;
}

.service-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
    opacity: 0.2;
}

.service-block:last-child::after {
    display: none;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: morphing 8s ease-in-out infinite;
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    z-index: -1;
    animation: morphing 8s ease-in-out infinite reverse;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.service-block:nth-child(2) .service-icon-large {
    background: var(--gradient-2);
}

.service-block:nth-child(2) .service-icon-large::before {
    background: var(--gradient-2);
}

.service-block:nth-child(3) .service-icon-large {
    background: var(--gradient-3);
}

.service-block:nth-child(3) .service-icon-large::before {
    background: var(--gradient-3);
}

.service-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-color);
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.service-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-list li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: 1rem 0;
}

.quote-block {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    margin: 2rem 0;
}

.quote-icon {
    color: var(--primary-light);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.quote-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 1rem 0;
    padding-left: 2.5rem;
}

.quote-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
    padding-left: 2.5rem;
}

.contact-details {
    padding-top: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-color);
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-form {
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-color);
    margin-left: 2px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-success-message i {
    font-size: 1.25rem;
}

/* Form Button */
.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Services Page */
@media (max-width: 991px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .service-block {
        padding: 2rem 0;
    }
    
    .service-icon-large {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .service-title {
        font-size: 1.75rem;
        margin-top: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .service-icon-large {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .service-list li {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .quote-block {
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .quote-author {
        padding-left: 1.5rem;
    }
    
    .contact-detail-item {
        font-size: 0.95rem;
    }
    
    .contact-detail-item i {
        width: 35px;
        height: 35px;
    }
}

/* Animation for service blocks */
@media (min-width: 992px) {
    .service-block {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.8s ease-out forwards;
    }
    
    .service-block:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .service-block:nth-child(2) {
        animation-delay: 0.4s;
    }
    
    .service-block:nth-child(3) {
        animation-delay: 0.6s;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ====================================
   Contact Page Specific Styles
   ==================================== */

/* Contact Page Header */
.page-header-contact {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-contact h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-header-contact .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 0;
}

/* Contact Method Cards */
.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-method-card:nth-child(2) .contact-method-icon {
    background: var(--gradient-2);
}

.contact-method-card:nth-child(3) .contact-method-icon {
    background: var(--gradient-3);
}

.contact-method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-method-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-method-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

address.contact-method-link {
    font-style: normal;
    line-height: 1.6;
}

.contact-method-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-form-main {
    margin-top: 2rem;
}

/* Social Media Section */
.social-section {
    padding: 4rem 0;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-item {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link-item:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link-item:nth-child(2):hover {
    background: var(--gradient-2);
}

.social-link-item:nth-child(3):hover {
    background: var(--gradient-3);
}

.social-link-item:nth-child(4):hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 4rem 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .page-header-contact {
        padding: 3rem 0 2rem;
    }
    
    .page-header-contact h1 {
        font-size: 2.5rem;
    }
    
    .page-header-contact .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .contact-main-section {
        padding: 3rem 0;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .page-header-contact {
        padding: 2.5rem 0 1.5rem;
    }
    
    .page-header-contact h1 {
        font-size: 2rem;
    }
    
    .page-header-contact .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-method-card {
        margin-bottom: 1rem;
    }
    
    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-method-title {
        font-size: 1.25rem;
    }
    
    .contact-method-link {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .social-link-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-links-large {
        gap: 1rem;
    }
}

/* Animation for contact method cards */
.contact-method-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-method-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-method-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-method-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Contact form specific styles */
.contact-form-main .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.contact-form-main .btn-primary {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.contact-form-main .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Additional footer contact info */
.footer .contact-detail-item {
    font-size: 0.95rem;
}

/* Floating animation for page header decorations */
@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.page-header-contact::before {
    animation: floatSlow 10s ease-in-out infinite;
}

.page-header-contact::after {
    animation: floatSlow 12s ease-in-out infinite reverse;
}
/* ====================================
   Portfolio Page Specific Styles
   ==================================== */

/* Portfolio Header */
.portfolio-header {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.portfolio-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 18s ease-in-out infinite reverse;
}

.portfolio-header h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.portfolio-header .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    border-bottom: 1px solid #e2e8f0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

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

.filter-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 4rem 0;
}

.portfolio-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.portfolio-item.hide {
    display: none;
}

.portfolio-item-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: white;
    height: 100%;
}

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

.portfolio-item-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.portfolio-item-card:hover .portfolio-item-image img {
    transform: scale(1.1);
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item-card:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-content {
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item-card:hover .portfolio-item-content {
    transform: translateY(0);
}

.portfolio-item-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-item-category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.portfolio-view-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Portfolio Pagination */
.portfolio-pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    border: 2px solid #e2e8f0;
    color: var(--text-color);
    padding: 0.75rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: white;
}

/* Portfolio Stats Section */
.portfolio-stats-section {
    padding: 5rem 0;
}

.stat-box {
    padding: 2rem 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-box:nth-child(2) .stat-icon {
    background: var(--gradient-2);
}

.stat-box:nth-child(3) .stat-icon {
    background: var(--gradient-3);
}

.stat-box:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

/* Responsive Design for Portfolio Page */
@media (max-width: 991px) {
    .portfolio-header {
        padding: 3rem 0 2rem;
    }
    
    .portfolio-header h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-header .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .portfolio-grid-section {
        padding: 3rem 0;
    }
    
    .portfolio-item-title {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .portfolio-header {
        padding: 2.5rem 0 1.5rem;
    }
    
    .portfolio-header h1 {
        font-size: 2rem;
    }
    
    .portfolio-header .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .portfolio-item-content {
        padding: 1.5rem;
    }
    
    .portfolio-item-title {
        font-size: 1.125rem;
    }
    
    .portfolio-item-category {
        font-size: 0.875rem;
    }
    
    .portfolio-view-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Filter animations */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.portfolio-item.filtering-out {
    animation: fadeOut 0.3s ease-out forwards;
}
