/* DiveCore Media - Modern Design System */

/* Root Variables for Design System - Updated for New Logo */
:root {
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #3730a3 50%, #7c3aed 75%, #ec4899 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    --accent-color: #ec4899;
    --accent-light: #f472b6;
    --accent-dark: #be185d;
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --surface-light: #f8fafc;
    --surface-dark: #0f172a;
    --border-color: #e2e8f0;
    --gradient-overlay: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-colored: 0 10px 25px -5px rgba(236, 72, 153, 0.25), 0 8px 10px -6px rgba(139, 92, 246, 0.1);
}

/* Global Enhancements */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

/* Header Improvements */
.header-area {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.header-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.3;
    z-index: -1;
}

.header-area.header-sticky {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-area.header-sticky::before {
    opacity: 0.2;
}

.header-area .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Navigation Text Styling for Black Header */
.header-area .main-nav .nav li a {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-area .main-nav .nav li a:hover,
.header-area .main-nav .nav li a.active {
    color: var(--accent-light) !important;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    background: var(--text-light);
}

.header-area .main-nav .logo {
    line-height: unset;
}

.header-area .main-nav .logo img {
    width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-area .main-nav .logo img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Main Banner with Gradient Background */
.main-banner {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 120px 0 120px 0;
}

/* Main Banner Background Graphics */
.main-banner::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -5%;
    width: 90%;
    height: 100%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

/* Second graphic for main banner */
.main-banner .left-content::before {
    content: '';
    position: absolute;
    left: -15%;
    bottom: -25%;
    width: 80%;
    height: 90%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg);
}

/* Removed SVG background pattern */

.main-banner::after {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    background: url('../images/Picture-1 (1).png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.main-banner .left-content {
    position: relative;
    z-index: 3;
    padding-right: 20px;
}

.main-banner .left-content > *:not(:last-child) {
    margin-bottom: 24px;
}

.main-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-banner .row {
    width: 100%;
    margin: 0;
    align-items: center;
}

.main-banner .left-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.main-banner .left-content h6 {
    font-size: 1.125rem;
    color: var(--accent-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-banner .left-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.main-banner .left-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 500px;
    font-weight: 500;
}

/* Banner Highlights */
.banner-highlights {
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text-light);
}

.highlight-item i {
    color: var(--accent-light);
    font-size: 1.125rem;
    margin-right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.phone-info {
    margin-top: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.phone-info h4 span a {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 8px;
}

.phone-info h4 span a:hover {
    color: var(--accent-color);
}

.phone-info h4 span i {
    color: var(--text-light);
    background: var(--accent-color);
    padding: 6px;
    border-radius: 50%;
    margin-right: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Differentiators Section */
.differentiators-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.differentiators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,256L48,240C96,224,192,192,288,192C384,192,480,224,576,234.7C672,245,768,235,864,213.3C960,192,1056,160,1152,160C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.7;
}

/* Differentiators Section Background Graphics */
.differentiators-section::after {
    content: '';
    position: absolute;
    left: 2%;
    top: 10%;
    width: 50%;
    height: 60%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    transform: rotate(20deg);
}

.differentiators-content {
    position: relative;
    z-index: 2;
}

.differentiators-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.differentiators-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.differentiators-list li {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.differentiators-list li i {
    color: var(--accent-light);
    margin-right: 16px;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.team-graphic {
    margin-top: 40px;
}

.team-silhouettes {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}

.person {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px 30px 10px 10px;
    position: relative;
    transition: all 0.3s ease;
}

.person::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.person.highlighted {
    background: var(--accent-color);
    height: 90px;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.person.highlighted::before {
    background: var(--accent-color);
}

.services-grid {
    position: relative;
    z-index: 2;
}

.services-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.services-grid .col-lg-6 {
    padding: 15px;
    display: flex;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-item .icon {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-item .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.service-item h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    flex-shrink: 0;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* About Section Enhancements */
#about {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    background: var(--surface-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#about .section-heading {
    margin-top: 40px;
    margin-bottom: 30px;
}

#about .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
}

#about .section-heading h2 em {
    color: var(--accent-light);
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#about .section-heading h2 span {
    color: var(--accent-light);
    font-weight: 600;
}

#about .left-image {
    margin-top: 20px;
}

.about-us .services {
    display: flex;
    flex-wrap: wrap;
}

.about-us .services .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    width: 100%;
}

.about-us .services .col-lg-4 {
    padding: 15px;
    display: flex;
}

.about-us .services .item {
    background: var(--text-light);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-us .services .item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
    border-color: var(--accent-color);
}

.about-us .services .item .icon {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.about-us .services .item .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.about-us .services .item .right-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-us .services .item h4,
.about-us .services .item .right-text h4 {
    color: var(--primary-purple);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    flex-shrink: 0;
}

.about-us .services .item p,
.about-us .services .item .right-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Services Section */
#services {
    margin-top: 0 !important;
    padding-top: 80px !important;
    background: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.our-services .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.our-services .section-heading h2 em {
    color: var(--accent-color);
    font-style: normal;
}

.our-services .section-heading h2 span {
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-heading {
    margin-bottom: 60px;
}

.testimonials-section .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.testimonials-section .section-heading h2 em {
    color: var(--accent-color);
    font-style: normal;
}

.testimonials-section .section-heading p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--surface-light);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
    border-color: var(--accent-color);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
#contact {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
    opacity: 0.7;
}

.contact-us .wrapper {
    background: transparent;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.contact-us .section-heading h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-us .section-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Form Styling */
form.contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 3;
}

form.contact input,
form.contact textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

form.contact input:focus,
form.contact textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--text-light);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

form.contact input::placeholder,
form.contact textarea::placeholder {
    color: var(--text-secondary);
}

form.contact button {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

form.contact button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    min-width: 240px;
    max-width: 420px;
    z-index: 9999;
    background: var(--text-light);
    color: var(--text-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 18px 28px 18px 18px;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.toast-notification.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.success {
    border-left: 6px solid #10b981;
}

.toast-notification.error {
    border-left: 6px solid #ef4444;
}

.toast-notification .toast-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2em;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.toast-notification .toast-close:hover {
    background-color: var(--surface-light);
}

/* Form Loader */
.form-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.form-loader-overlay.show {
    display: flex;
}

.form-loader-spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Button Styles */
.main-red-button a {
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.main-red-button a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
    border-color: var(--accent-light);
}

/* Progress Bars */
.progress-skill-bar {
    margin-bottom: 30px;
}

.progress-skill-bar .filled-bar {
    background: var(--primary-gradient);
    border-radius: 6px;
}

.progress-skill-bar .full-bar {
    background: var(--border-color);
    border-radius: 6px;
}

/* Override templatemo red progress bars with pink theme */
.our-services .progress-skill-bar .filled-bar {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%) !important;
    height: 6px;
    border-radius: 3px;
    margin-bottom: -6px;
    position: relative;
    z-index: 2;
}

/* About Section Background Override */
.about-us .wrapper {
    background-image: var(--primary-gradient) !important;
    position: relative;
    margin: 0 !important;
    padding: 90px 0px 120px 0px !important;
}

.about-us .wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    pointer-events: none;
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 5%;
    width: 55%;
    height: 60%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.footer-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 10%;
    width: 50%;
    height: 55%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg);
}

.footer-about {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 144, 198, 0.4);
}

.footer-links,
.footer-services,
.footer-contact {
    margin-bottom: 40px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-pink);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item i {
    color: white;
    font-size: 18px;
    width: 20px;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.footer-cta {
    margin-top: 25px;
}

.footer-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b9d 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 144, 198, 0.3);
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 144, 198, 0.5);
    background: linear-gradient(135deg, #ff6b9d 0%, var(--accent-color) 100%);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .differentiators-section .row {
        flex-direction: column-reverse;
    }

    .differentiators-content {
        text-align: center;
        margin-top: 40px;
    }

    .services-grid .row {
        margin: -10px;
    }

    .services-grid .col-lg-6 {
        padding: 10px;
    }

    .about-us .services .row {
        margin: -10px;
    }

    .about-us .services .col-lg-4 {
        padding: 10px;
        /* On tablets, show 2 items per row */
        flex: 0 0 50%;
        max-width: 50%;
    }

    .testimonial-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header-area {
        height: 70px;
    }

    .header-area .main-nav .logo img {
        width: 160px;
        max-height: 50px;
    }

    .header-area .main-nav .nav li a {
        color: #ffffff !important;
    }

    .header-area .main-nav .nav li a:hover,
    .header-area .main-nav .nav li a.active {
        color: var(--accent-color) !important;
    }

    .main-banner {
        min-height: calc(100vh - 70px);
        padding-top: 90px;
    }

    .main-banner::after {
        left: -20%;
        width: 70%;
        height: 60%;
        opacity: 0.1;
    }

    .main-banner .left-content h1 {
        font-size: 2.5rem;
    }

    .main-banner .left-content h2 {
        font-size: 2rem;
    }

    .differentiators-content h2 {
        font-size: 2rem;
    }

    .our-services .section-heading h2,
    .testimonials-section .section-heading h2 {
        font-size: 2rem;
    }

    .person {
        width: 40px;
        height: 60px;
    }

    .person::before {
        width: 18px;
        height: 18px;
        top: -15px;
    }

    .person.highlighted {
        height: 70px;
    }

    .toast-notification {
        left: 50%;
        right: unset;
        max-width: 90vw;
        min-width: 0;
        padding: 14px 10px 14px 10px;
        bottom: 30px;
        transform: translateX(-50%) translateY(40px);
    }

    .toast-notification.show {
        transform: translateX(-50%) translateY(0);
    }

    .package-item,
    .testimonial-item {
        margin-bottom: 40px;
    }

    .package-item {
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
        clear: both;
    }

    .package-item.featured {
        transform: none;
    }

    .package-item.featured:hover {
        transform: translateY(-4px);
    }

    .package-header {
        padding: 20px;
    }

    .package-header img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .package-header h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .price .amount {
        font-size: 2rem;
    }

    .package-content {
        padding: 20px;
    }

    .services-grid .row {
        margin: -8px;
    }

    .services-grid .col-lg-6 {
        padding: 8px;
    }

    .about-us .services .row {
        margin: -8px;
    }

    .about-us .services .col-lg-4 {
        padding: 8px;
    }

    form.contact {
        padding: 30px 20px;
    }

    .differentiators-section,
    .testimonials-section,
    #contact {
        padding: 60px 0;
    }

    #packages .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #packages .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    #packages .col-lg-4,
    #packages .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    #testimonials .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #testimonials .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    #testimonials .col-lg-4,
    #testimonials .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .testimonial-item {
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
        clear: both;
    }

    #about {
        padding: 45% 0;
    }

    /* Footer Mobile Styles */
    .footer-section {
        padding: 40px 0 20px 0;
    }

    .footer-about,
    .footer-links,
    .footer-services,
    .footer-contact {
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        text-align: center;
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header-area {
        height: 65px;
    }

    .header-area .main-nav .logo img {
        width: 140px;
        max-height: 45px;
    }

    .header-area .main-nav .nav li a {
        color: #ffffff !important;
    }

    .header-area .main-nav .nav li a:hover,
    .header-area .main-nav .nav li a.active {
        color: var(--accent-color) !important;
    }

    .main-banner {
        min-height: calc(100vh - 65px);
        padding-top: 85px;
    }

    .main-banner::after {
        left: -30%;
        width: 80%;
        height: 50%;
        opacity: 0.08;
    }

    .main-banner .left-content h1 {
        font-size: 2rem;
    }

    .main-banner .left-content h2 {
        font-size: 1.75rem;
    }

    .main-banner .left-content p {
        font-size: 1.125rem;
    }

    .banner-highlights {
        margin: 24px 0;
    }

    .highlight-item {
        margin-bottom: 12px;
        justify-content: center;
    }

    .highlight-item span {
        font-size: 0.95rem;
    }

    .phone-info {
        margin-top: 20px;
        padding: 16px 0;
    }

    .phone-info h4 {
        font-size: 0.95rem;
    }

    .phone-info h4 span a {
        font-size: 1rem;
    }

    .differentiators-content h2 {
        font-size: 1.75rem;
    }

    .our-services .section-heading h2,
    .testimonials-section .section-heading h2 {
        font-size: 1.75rem;
    }

    .service-item {
        padding: 25px 20px;
    }

    .services-grid .row {
        margin: -5px;
    }

    .services-grid .col-lg-6 {
        padding: 5px;
    }

    .about-us .services .row {
        margin: -5px;
    }

    .about-us .services .col-lg-4 {
        padding: 5px;
        /* On mobile, show 1 item per row */
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-us .services .item {
        padding: 30px 20px;
    }

    .testimonial-item {
        padding: 25px 20px;
    }

    .testimonial-content p::before {
        display: none;
    }

    .package-header {
        padding: 15px;
    }

    .package-header img {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .package-header h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    .price .amount {
        font-size: 1.75rem;
    }

    .price .currency {
        font-size: 1rem;
    }

    .price .period {
        font-size: 0.875rem;
    }

    .package-content {
        padding: 15px;
    }

    .package-features li {
        font-size: 0.875rem;
        padding: 6px 0;
    }

    .package-button .main-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .package-item,
    .testimonial-item {
        margin-bottom: 35px;
    }

    .package-item {
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
        clear: both;
    }

    .differentiators-list li {
        font-size: 1rem;
    }

    #packages .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #packages .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    #packages .col-lg-4,
    #packages .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 35px;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #testimonials .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #testimonials .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    #testimonials .col-lg-4,
    #testimonials .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 35px;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonial-item {
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
        clear: both;
    }

    /* Footer Mobile Small Styles */
    .footer-section {
        padding: 30px 0 15px 0;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Sticky Contact Sidebar */
.sticky-contact-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-widget-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.contact-widget-item:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-widget {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-widget:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.phone-widget {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.phone-widget:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.contact-widget-item i {
    font-size: 25px;
    color: white;
}

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

/* Mobile responsive for sticky sidebar */
@media (max-width: 768px) {
    .main-banner .left-content::after {
        display: none;
    }
    .sticky-contact-widget {
        right: 0;
        bottom: 25%;
        top: unset;
        transform: unset;
        padding: 15px 10px;
        gap: 15px;
    }

    .sticky-contact-widget::before {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .contact-widget-item {
        width: 40px;
        height: 40px;
    }

    .contact-widget-item i {
        font-size: 25px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

/* Utility Classes */
.text-gradient {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--primary-gradient);
}

/* Individual Package Pages */
.package-details {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: var(--text-light);
}

/* Ensure all text in package details section is white */
.package-details .section-heading h2,
.package-details .section-heading p,
.package-details .package-content-details h3,
.package-details .feature-item h4,
.package-details .feature-item p,
.package-details .pricing-card h3,
.package-details .pricing-features li,
.package-details .price-header h3,
.package-details .price .currency,
.package-details .price .amount,
.package-details .price .period {
    color: white !important;
}

.package-details .section-heading h2 em {
    color: var(--accent-light) !important;
}

/* Override pricing card text to black for all pricing cards */
.package-details .pricing-card h3,
.package-details .pricing-card .pricing-features li,
.package-details .pricing-card .price-header h3,
.package-details .pricing-card .price .currency,
.package-details .pricing-card .price .amount,
.package-details .pricing-card .price .period {
    color: black !important;
}

/* Platforms Section - Equal Height Tiles */
.platforms-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.platforms-section .col-lg-3 {
    display: flex;
    margin-bottom: 30px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 100%;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.platform-item i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.platform-item h4 {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.platform-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Success Stories Section - Equal Height Tiles */
.success-stories .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.success-stories .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

.success-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 100%;
}

.success-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.success-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.success-item h4 {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.success-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Process Section - Equal Height Tiles */
.process-section .row,
.seo-process .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.process-section .col-lg-3,
.seo-process .col-lg-3 {
    display: flex;
    margin-bottom: 30px;
}

.process-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 100%;
    position: relative;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.process-item h4 {
    color: black;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Results Section - Equal Height Tiles */
.results-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.results-section .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 100%;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.result-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.result-item h4 {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Background styling for all sections with equal height tiles */
.platforms-section {
    background: var(--primary-gradient);
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.success-stories {
    background: var(--primary-gradient);
    padding: 40px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.process-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.seo-process {
    background: var(--primary-gradient);
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.results-section {
    background: var(--primary-gradient);
    padding: 40px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.platforms-section .section-heading h2,
.success-stories .section-heading h2 {
    color: black !important;
}

.process-section .section-heading h2,
.seo-process .section-heading h2,
.results-section .section-heading h2 {
    color: black !important;
}

.platforms-section .section-heading h2 em,
.success-stories .section-heading h2 em,
.process-section .section-heading h2 em,
.seo-process .section-heading h2 em,
.results-section .section-heading h2 em {
    color: var(--accent-light) !important;
}

.platforms-section .section-heading p,
.success-stories .section-heading p {
    color: rgba(0, 0, 0, 0.8) !important;
}

.process-section .section-heading p,
.seo-process .section-heading p,
.results-section .section-heading p {
    color: rgba(0, 0, 0, 0.8) !important;
}

/* Package Page Banner Enhancements */
.main-banner .inner-content h4 {
    color: var(--accent-light) !important;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.main-banner .inner-content h2 {
    color: var(--text-light) !important;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.main-banner .inner-content h2 em {
    background: var(--secondary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.main-banner .inner-content h2 span {
    color: var(--accent-pink);
}

.main-banner .right-first-image {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-banner .right-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-banner .right-content .row {
    width: 100%;
    margin: 0;
    align-items: center;
    min-height: 500px;
}

.main-banner .right-first-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    opacity: 0.1;
    z-index: 0;
}

.main-banner .right-first-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.main-banner .right-first-image .thumb {
    position: relative;
    z-index: 2;
}

.main-banner .right-first-image .inner-content h4 {
    color: var(--text-light) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.main-banner .right-first-image .inner-content span {
    color: var(--accent-light) !important;
    font-size: 1rem;
    font-weight: 500;
}

/* Banner Decorative Elements */
.main-banner {
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.main-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

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

/* Banner Icons Animation */
.main-banner .right-first-image .inner-content::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--accent-pink);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
}

/* Package-specific decorations */
.main-banner .left-content::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--secondary-gradient);
    border-radius: 1px;
}

/* Enhance the existing banner background */
.main-banner {
    background: var(--primary-gradient);
    position: relative;
}

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

/* Price Highlight Styling */
.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: fit-content;
}

.price-highlight .price-label {
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-highlight .price-amount {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-highlight .price-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.package-content-details h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-pink);
    margin-top: 5px;
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.package-pricing {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--accent-pink);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-pink);
    font-size: 0.9rem;
}

.pricing-button {
    text-align: center;
}

/* Process Sections */
.process-section,
.seo-process,
.platforms-section,
.success-stories,
.results-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-item,
.platform-item,
.success-item,
.result-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.process-item:hover,
.platform-item:hover,
.success-item:hover,
.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.platform-item i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.success-metric,
.result-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 15px;
    background: var(--secondary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive adjustments for equal height tiles on mobile */
@media (max-width: 768px) {
    .platforms-section .row,
    .success-stories .row,
    .process-section .row,
    .seo-process .row,
    .results-section .row {
        flex-direction: column;
    }

    .platforms-section .col-lg-3,
    .platforms-section .col-lg-4,
    .success-stories .col-lg-4,
    .process-section .col-lg-3,
    .seo-process .col-lg-3,
    .results-section .col-lg-4 {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .platform-item,
    .success-item,
    .process-item,
    .result-item {
        margin-bottom: 20px;
        height: auto;
    }

    .platforms-section {
        padding: 60px 0 30px 0;
    }

    .success-stories {
        padding: 30px 0 60px 0;
    }

    .process-section {
        padding: 60px 0;
    }

    .seo-process {
        padding: 60px 0 30px 0;
    }

    .results-section {
        padding: 30px 0 60px 0;
    }
}

/* ================== Portfolio Section Styles ================== */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 144, 198, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-section .section-heading h2 {
    color: white !important;
}

.portfolio-section .section-heading h2 em {
    color: var(--accent-light) !important;
}

.portfolio-section .section-heading h2 span {
    color: var(--accent-pink) !important;
}

.portfolio-section .section-heading p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.portfolio-item {
    margin-bottom: 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(247, 144, 198, 0.3);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.portfolio-item: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(0, 0, 0, 0.7) 0%, rgba(247, 144, 198, 0.8) 100%);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.portfolio-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.portfolio-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.portfolio-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-stats {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-stats span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.portfolio-button {
    margin-top: 50px;
    text-align: center;
}

.portfolio-button .main-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b9d 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 144, 198, 0.3);
}

.portfolio-button .main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 144, 198, 0.5);
    background: linear-gradient(135deg, #ff6b9d 0%, var(--accent-color) 100%);
    color: white;
}

/* Mobile Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-item {
        height: 300px;
        margin-bottom: 20px;
    }

    .portfolio-content h4 {
        font-size: 20px;
    }

    .portfolio-content p {
        font-size: 14px;
    }

    .portfolio-button {
        margin-top: 30px;
    }
}

/* SEO Analysis Graphic */
.seo-analysis-graphic {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-container {
    position: relative;
    width: 550px;
    height: 500px;
}

.website-mockup {
    width: 280px;
    height: 350px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 20px;
    left: 30px;
    overflow: hidden;
    border: 3px solid #e5e7eb;
}

.website-header {
    height: 55px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-bottom: 1px solid #4b5563;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.browser-dots {
    position: relative;
}

.browser-dots::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
}

.url-bar {
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    margin-left: 80px;
    flex: 1;
    text-align: center;
}

.website-content {
    height: calc(100% - 55px);
    position: relative;
}

.hero-section {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: gradientShift 4s ease-in-out infinite alternate;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.main-title {
    width: 120px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    margin-bottom: 10px;
    animation: titlePulse 2s ease-in-out infinite;
}

.subtitle {
    width: 90px;
    height: 7px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    margin: 0 auto 12px;
    animation: titlePulse 2s ease-in-out infinite 0.5s;
}

.cta-button {
    width: 60px;
    height: 18px;
    background: linear-gradient(135deg, #ff6b9d 0%, var(--accent-pink) 100%);
    border-radius: 9px;
    margin: 0 auto;
    animation: buttonGlow 3s ease-in-out infinite;
}

.content-cards {
    display: flex;
    gap: 6px;
    padding: 12px 10px;
    justify-content: space-between;
}

.card {
    width: 82px;
    height: 55px;
    border-radius: 8px;
    position: relative;
    animation: cardFloat 3s ease-in-out infinite;
}

.card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 60%;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.card-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation-delay: 0s;
}

.card-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation-delay: 0.3s;
}

.card-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation-delay: 0.6s;
}

.website-mockup .footer-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-top: 1px solid #4b5563;
}

.seo-scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.scanner-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ff6b9d 30%, var(--accent-pink) 50%, #ff6b9d 70%, transparent 100%);
    position: absolute;
    animation: scanWebsite 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(247, 144, 198, 0.8);
}

.seo-metrics {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-circle {
    width: 100px;
    height: 100px;
    position: relative;
}

.circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--accent-pink) 0deg, var(--accent-pink) var(--progress, 0deg), #e2e8f0 var(--progress, 0deg));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: circleGrow 2s ease-out forwards;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 76px;
    height: 76px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.circle-progress .percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-pink);
    z-index: 2;
    line-height: 1;
}

.circle-progress .label {
    font-size: 11px;
    color: #64748b;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
}

.circle-1 .circle-progress {
    --progress: 302deg;
    animation-delay: 0.5s;
}

.circle-2 .circle-progress {
    --progress: 317deg;
    animation-delay: 1s;
}

.circle-3 .circle-progress {
    --progress: 338deg;
    animation-delay: 1.5s;
}

.seo-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.search-icon, .ranking-arrow, .target-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(247, 144, 198, 0.3);
    border: 3px solid var(--accent-pink);
}

.search-icon i, .ranking-arrow i, .target-icon i {
    color: var(--accent-pink);
    font-size: 22px;
}

.search-icon {
    top: 50px;
    right: 120px;
    animation: float 3s ease-in-out infinite;
}

.ranking-arrow {
    bottom: 80px;
    left: 50px;
    animation: float 3s ease-in-out infinite 1s;
}

.target-icon {
    bottom: 30px;
    right: 160px;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    100% {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(247, 144, 198, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(247, 144, 198, 0.6);
        transform: scale(1.05);
    }
}

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

@keyframes scanWebsite {
    0% {
        top: -3px;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
    }
}

@keyframes circleGrow {
    0% {
        background: conic-gradient(var(--accent-pink) 0deg, var(--accent-pink) 0deg, #e2e8f0 0deg);
    }
    100% {
        background: conic-gradient(var(--accent-pink) 0deg, var(--accent-pink) var(--progress), #e2e8f0 var(--progress));
    }
}

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

/* Mobile Responsive SEO Graphic */
@media (max-width: 768px) {
    .newsletter-text {
        padding-left: 0 !important;
        span{
            font-size: 18px !important;
            
            &::before {
                display: inline-block;
                margin-right: 20px;
            }
        }
    }

    .seo-analysis-graphic {
        height: 350px;
    }

    .seo-container {
        width: 320px;
        height: 280px;
        transform: scale(1.2);
    }

    .website-mockup {
        width: 160px;
        height: 200px;
    }

    .hero-section {
        height: 60px;
    }

    .main-title {
        width: 60px;
        height: 5px;
    }

    .subtitle {
        width: 45px;
        height: 3px;
    }

    .cta-button {
        width: 30px;
        height: 10px;
    }

    .card {
        width: 44px;
        height: 32px;
    }

    .content-cards {
        padding: 6px 4px;
        gap: 3px;
    }

    .website-mockup .footer-section {
        height: 16px;
    }

    .metric-circle {
        width: 60px;
        height: 60px;
    }

    .circle-progress .percent {
        font-size: 10px;
    }

    .circle-progress .label {
        font-size: 7px;
    }

    .search-icon, .ranking-arrow, .target-icon {
        width: 32px;
        height: 32px;
    }

    .search-icon i, .ranking-arrow i, .target-icon i {
        font-size: 12px;
    }
}

/* Our Work Page Styling */
.results-metrics {
    margin: 30px 0;
}

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

.metric-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: white !important;
    margin-top: 5px;
}

.client-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.client-testimonial p {
    color: white !important;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    color: white !important;
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: white !important;
}

.success-stories-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-stories-section .section-heading h2 {
    color: white !important;
}

.success-stories-section .section-heading h2 em {
    color: var(--accent-light) !important;
}

.success-stories-section .section-heading p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.highlight-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.case-study {
    margin-bottom: 50px;
}

.case-study-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

/* Case Study Header with Image */
.case-study-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.case-study-image {
    flex: 0 0 250px;
    width: 250px;
}

.work-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.work-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.4);
}

.case-study-text {
    flex: 1;
}

.case-study-content h3 {
    color: white !important;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-study-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.results-list {
    margin: 30px 0;
}

.result-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.bullet {
    font-size: 1.2rem;
    margin-top: 2px;
}

.result-point strong {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    line-height: 1.5;
}

.case-conclusion {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-pink);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-top: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Responsive Our Work Page */
@media (max-width: 768px) {
    .metric-row {
        flex-direction: column;
        gap: 15px;
    }

    .case-study-item {
        padding: 25px;
    }

    .case-study-content h3 {
        font-size: 1.5rem;
    }

    /* Case Study Images Mobile */
    .case-study-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .case-study-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .work-image {
        height: 200px;
        border-radius: 12px;
    }

    .case-study-text {
        width: 100%;
    }

    /* Banner section mobile responsive */
    .our-work-page .main-banner .left-content .inner-content {
        padding: 0 10px;
    }

    .our-work-page .main-banner .client-testimonial {
        padding: 10px;
    }

    .our-work-page .main-banner .results-metrics {
        padding: 0 5px;
    }

    /* Right side graphic mobile */
    .work-showcase-graphic {
        min-height: 450px;
        margin-top: 40px;
    }

    .success-visual {
        padding: 35px 25px;
    }

    .bar-chart {
        height: 200px;
        padding: 0 20px;
    }

    .bar-chart::before {
        left: 20px;
        right: 20px;
    }

    .bar-chart::after {
        left: 20px;
    }

    .bar {
        width: 35px;
    }

    .metric-bubble {
        margin-left: 0 !important;
        margin-right: auto;
        margin-left: auto;
        justify-content: center;
    }
}

/* Our Work Banner Styling */
.our-work-page .main-banner .left-content {
    text-align: left;
}

.our-work-page .main-banner .left-content .inner-content {
    padding: 0 15px;
}

/* Banner section content styling */
.our-work-page .main-banner .results-metrics {
    padding: 0 5px;
}

.our-work-page .main-banner .client-testimonial {
    padding: 15px;
    margin: 30px 0;
}

.our-work-page .main-banner .metric-item {
    margin: 0 2px;
}

/* Ensure all banner text is white */
.our-work-page .main-banner p {
    color: white !important;
}

.our-work-page .main-banner .inner-content h4,
.our-work-page .main-banner .inner-content h2,
.our-work-page .main-banner .inner-content h2 em,
.our-work-page .main-banner .inner-content h2 span {
    color: white !important;
}

.our-work-page .main-banner .main-border-button {
    text-align: left;
    margin-top: 30px;
}

/* Right Side Graphic Styling */
.work-showcase-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 750px;
    position: relative;
}

.graphic-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.success-visual {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 70px 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.success-visual:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.chart-representation {
    text-align: center;
    margin-bottom: 40px;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 380px;
    margin-bottom: 40px;
    padding: 0 40px;
    position: relative;
}

.bar-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.bar-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    top: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

/* Add horizontal grid lines */
.bar-chart {
    background-image: linear-gradient(to top, transparent 25%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 25.5%, transparent 25.5%),
    linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 50.5%, transparent 50.5%),
    linear-gradient(to top, transparent 75%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 75.5%, transparent 75.5%);
}

.bar {
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-light));
    width: 70px;
    border-radius: 12px 12px 0 0;
    position: relative;
    animation: growUp 1.5s ease-out forwards;
    box-shadow: 0 8px 35px rgba(236, 72, 153, 0.5);
    height: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px 8px 0 0;
}

.bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
}

.bar-1 {
    animation-delay: 0.2s;
}

.bar-2 {
    animation-delay: 0.4s;
}

.bar-3 {
    animation-delay: 0.6s;
}

.bar-4 {
    animation-delay: 0.8s;
}

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
}

.chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.floating-metrics {
    position: relative;
}

.metric-bubble {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 25px 35px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(8px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.3);
}

.metric-bubble i {
    color: var(--accent-pink);
    font-size: 1.8rem;
}

.metric-bubble span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bubble-1 {
    animation-delay: 0s;
    margin-left: 20px;
}

.bubble-2 {
    animation-delay: 1s;
    margin-left: 60px;
}

.bubble-3 {
    animation-delay: 2s;
    margin-left: 10px;
}

@keyframes growUp {
    from {
        height: 0%;
        opacity: 0.7;
    }
    to {
        height: var(--final-height);
        opacity: 1;
    }
}

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

/* Legal Document Styling */
.main-banner.privacy-policy-page,
.main-banner.terms-page {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 120px 0 80px 0;
}

.privacy-content {
    padding: 80px 0;
    background: var(--surface-light);
}

.legal-document {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.legal-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.last-updated {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.last-updated p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 3px;
}

.privacy-section h4 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.privacy-section p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-section ul li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: -2px;
}

.contact-details {
    background: rgba(236, 72, 153, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.contact-details p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Mobile Responsive for Legal Documents */
@media (max-width: 768px) {
    .main-banner.privacy-policy-page,
    .main-banner.terms-page {
        padding: 100px 0 60px 0;
        min-height: 300px;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .legal-document {
        padding: 40px 30px;
        margin: 0 15px;
        border-radius: 15px;
    }

    .privacy-section h3 {
        font-size: 24px;
        padding-left: 15px;
    }

    .privacy-section h3::before {
        height: 25px;
        width: 4px;
    }

    .privacy-section h4 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }

    .privacy-section ul li {
        padding-left: 25px;
    }

    .contact-details {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .legal-document {
        padding: 30px 20px;
    }

    .privacy-section h3 {
        font-size: 22px;
    }

    .privacy-section h4 {
        font-size: 18px;
    }

    .last-updated {
        padding: 15px;
    }
}

/* Banner Text Styling for Legal Pages */
.main-banner.privacy-policy-page .caption.header-text h6,
.main-banner.terms-page .caption.header-text h6 {
    color: var(--text-light) !important;
}

.main-banner.privacy-policy-page .caption.header-text h2,
.main-banner.terms-page .caption.header-text h2 {
    color: var(--text-light) !important;
}

.main-banner.privacy-policy-page .caption.header-text h2 em,
.main-banner.terms-page .caption.header-text h2 em {
    color: var(--accent-light) !important;
}

.main-banner.privacy-policy-page .caption.header-text p,
.main-banner.terms-page .caption.header-text p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* About Section Background Graphics */
#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 5%;
    width: 50%;
    height: 60%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    transform: rotate(15deg);
}

/* Packages Section Background Graphics */
#packages {
    position: relative;
    overflow: hidden;
}

#packages::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -5%;
    width: 45%;
    height: 50%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-10deg);
}

/* Portfolio Section Background Graphics */
.portfolio-section {
    position: relative;
    overflow: hidden;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 10%;
    width: 45%;
    height: 50%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg);
}

/* Testimonials Section Background Graphics */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0%;
    width: 40%;
    height: 45%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-20deg);
}

/* Contact Section Background Graphics */
#contact {
    position: relative;
    overflow: hidden;
}

#contact::after {
    content: '';
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 45%;
    height: 45%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(10deg);
}

/* Services Section Background Graphics */
#services {
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 45%;
    height: 45%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    transform: rotate(30deg);
}

/* Package Details Section Background Graphics */
.package-details {
    position: relative;
    overflow: hidden;
}

.package-details::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 60%;
    height: 70%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    transform: rotate(20deg);
}

/* Success Stories Section Background Graphics */
.success-stories-section {
    position: relative;
    overflow: hidden;
}

.success-stories-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 5%;
    width: 55%;
    height: 60%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-25deg);
}

/* Privacy Content Section Background Graphics */
.privacy-content {
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 55%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(15deg);
}

.privacy-content::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 10%;
    width: 45%;
    height: 50%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-20deg);
}

/* Platforms Section Background Graphics */
.platforms-section {
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 5%;
    width: 55%;
    height: 60%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg);
}

/* Process Section Background Graphics */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 0%;
    width: 50%;
    height: 55%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-30deg);
}

/* Results Section Background Graphics */
.results-section {
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 55%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
    transform: rotate(30deg);
}

/* Features Grid Section Background Graphics */
.features-grid {
    position: relative;
    overflow: hidden;
}

.features-grid::before {
    content: '';
    position: absolute;
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 50%;
    background: url('../images/Picture-1%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%) rotate(-15deg);
}

/* Our Work Page Specific Graphics */
.our-work-page .success-stories-section::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 0%;
    width: 60%;
    height: 65%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    transform: rotate(20deg);
}

/* Legal Document Background Graphics */
.legal-document {
    position: relative;
    overflow: hidden;
}

.legal-document::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: 5%;
    width: 40%;
    height: 45%;
    background: url('../images/Picture-2%20(1).png') no-repeat center;
    background-size: contain;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    transform: rotate(45deg);
}

/* Ensure content stays above background graphics */
.container {
    position: relative;
    z-index: 3;
}

.section-heading, .package-item, .portfolio-item, .testimonial-item {
    position: relative;
    z-index: 3;
}

/* Free Audit Section Styling */
.free-audit-section {
    padding: 120px 0;
    background: var(--surface-light);
    position: relative;
    overflow: visible;
}

.free-audit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.free-audit-section .container {
    position: relative;
    z-index: 2;
}

/* Free Audit Section Heading Colors - New Brand Theme */
.free-audit-section .section-heading h2 {
    color: var(--text-primary) !important;
}

.free-audit-section .section-heading h2 em {
    color: var(--primary-blue) !important;
}

.free-audit-section .section-heading h2 span {
    color: var(--accent-color) !important;
}

.audit-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.audit-options {
    margin-bottom: 50px;
}

.audit-options h3 {
    text-align: center;
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.audit-option {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(236, 72, 153, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.audit-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.audit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.audit-icon i {
    font-size: 28px;
    color: white;
}

.audit-option h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.audit-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-option ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.audit-option ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.audit-form-container {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
}

.audit-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.audit-form-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.audit-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

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

.audit-form input,
.audit-form select,
.audit-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(226, 232, 240, 1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.audit-form input::placeholder,
.audit-form textarea::placeholder {
    color: var(--text-secondary);
}

.audit-form select {
    cursor: pointer;
    background: white;
    position: relative;
    z-index: 100;
    pointer-events: auto;
    width: 100% !important;
    min-height: 50px;
}

.audit-form select:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.audit-form select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
    outline: none;
}

.audit-form select option {
    padding: 10px;
    background: white;
    color: var(--text-primary);
    border: none;
}

/* Ensure dropdown opens above other elements */
.audit-form .form-group {
    position: relative;
    z-index: 50;
}

.audit-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(236, 72, 153, 0.05);
    border-radius: 12px;
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-check i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.benefit-check span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.audit-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.audit-submit-btn i {
    font-size: 1.1rem;
}

.audit-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.trust-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-divider {
    color: var(--text-secondary);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Responsive Design for Audit Section */
@media (max-width: 992px) {
    .audit-option {
        margin-bottom: 30px;
    }

    .audit-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .free-audit-section {
        padding: 80px 0;
    }

    .audit-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .audit-options h3 {
        font-size: 1.5rem;
    }

    .audit-form-header h3 {
        font-size: 1.5rem;
    }

    .audit-icon {
        width: 60px;
        height: 60px;
    }

    .audit-icon i {
        font-size: 24px;
    }

    .audit-option h4 {
        font-size: 1.2rem;
    }

    .audit-trust {
        flex-direction: column;
        gap: 15px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .audit-option {
        padding: 20px 15px;
    }

    .audit-form-container {
        padding: 25px 20px;
    }

    .audit-benefits {
        padding: 15px;
    }

    .benefit-check {
        font-size: 0.9rem;
    }
}

/* Newsletter Bar Styling */
.newsletter-bar {
    padding: 15px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e91e63 25%, var(--accent-color) 50%, #c2185b 75%, var(--accent-color) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.newsletter-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.newsletter-bar::after {
    content: '✉️';
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    z-index: 2;
    animation: bounce 2s infinite;
}

.newsletter-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.newsletter-text {
    flex: 1;
    padding-left: 50px;
}

.newsletter-text span {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text span::before {
    content: '🚀';
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.newsletter-form-inline {
    flex-shrink: 0;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 6px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    min-width: 380px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.newsletter-input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: #333 !important;
    font-size: 1rem;
    outline: none;
    border-radius: 25px;
    margin-right: 6px;
    font-weight: 500;
}

.newsletter-input-group input::placeholder {
    color: rgba(51, 51, 51, 0.7) !important;
    font-weight: 500;
}

.newsletter-input-group input:focus {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.newsletter-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e91e63 100%);
    color: white !important;
    border: none;
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #e91e63 0%, var(--accent-color) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
}

.newsletter-button:active {
    transform: translateY(0) scale(1);
}

.newsletter-button i {
    font-size: 14px;
    color: white !important;
    animation: flyIn 1s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-60%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes flyIn {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-compact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-input-group {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .newsletter-text span {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .newsletter-bar {
        padding: 30px 0;
    }

    .newsletter-input-group {
        max-width: 300px;
    }

    .newsletter-text span {
        font-size: 0.85rem;
    }

    .newsletter-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Fix for audit dropdown visibility */
.audit-container,
.audit-form-container,
.audit-form .form-group {
    overflow: visible !important;
}

.audit-form select {
    position: relative !important;
    z-index: 9999 !important;
}

/* Custom Checkbox Styling for Audit Form */
.audit-type-selection {
    margin-bottom: 25px !important;
}

.audit-selection-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.checkbox-item {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 1);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    border-color: var(--accent-color);
    background: rgba(236, 72, 153, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
}

.checkbox-item.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    position: relative;
}

.checkbox-item.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), #e91e63);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-item label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + label .checkbox-custom {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-item input[type="checkbox"]:checked + label .checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
    flex: 1;
}

.checkbox-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.checkbox-text small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.recommended-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-color), #e91e63);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Animation for checked state */
.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--text-primary);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--accent-color);
    background: rgba(236, 72, 153, 0.1);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .checkbox-item {
        padding: 12px;
    }

    .checkbox-text strong {
        font-size: 0.95rem;
    }

    .checkbox-text small {
        font-size: 0.8rem;
    }

    .recommended-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 8px;
        display: inline-block;
    }
}

/* Row layout adjustments for checkboxes */
.checkbox-group {
    flex-wrap: wrap;
}

.checkbox-item {
    flex: 1;
    min-width: 200px;
    max-width: calc(25% - 9px);
}

/* Ensure recommended badge doesn't overlap */
.checkbox-item.featured .recommended-badge {
    top: -10px;
    right: 8px;
}

/* Better spacing for row layout */
@media (max-width: 1200px) {
    .checkbox-item {
        max-width: calc(50% - 6px);
    }
}

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

    .checkbox-item {
        max-width: 100%;
        flex: none;
    }

    .checkbox-item.featured .recommended-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 8px;
        display: inline-block;
    }
}

/* Form row layout for name and phone fields */
.audit-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.audit-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Adjust checkbox styling without descriptions */
.checkbox-item {
    padding: 12px 16px;
}

.checkbox-text strong {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Remove spacing for small text since it's no longer there */
.checkbox-text small {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .audit-form .form-row {
        flex-direction: column;
        gap: 0;
    }

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