:root {
    --color-white: rgba(255, 255, 255, 1);
    --color-cream-50: rgba(252, 252, 249, 1);
    --color-cream-100: rgba(255, 255, 253, 1);
    --color-gray-200: rgba(245, 245, 245, 1);
    --color-gray-300: rgba(167, 169, 169, 1);
    --color-gray-400: rgba(119, 124, 124, 1);
    --color-slate-500: rgba(98, 108, 113, 1);
    --color-charcoal-700: rgba(31, 33, 33, 1);
    --color-charcoal-800: rgba(38, 40, 40, 1);
    --color-slate-900: rgba(19, 52, 59, 1);
    --color-teal-300: rgba(50, 184, 198, 1);
    --color-teal-400: rgba(45, 166, 178, 1);
    --color-teal-500: rgba(33, 128, 141, 1);
    --color-teal-600: rgba(29, 116, 128, 1);
    --color-primary: #198BEA;
    --color-secondary: #172A39;

    --color-background: var(--color-cream-50);
    --color-surface: var(--color-cream-100);
    --color-text: var(--color-slate-900);
    --color-text-secondary: var(--color-slate-500);
    --color-border: rgba(94, 82, 64, 0.2);
    --color-card-border: rgba(94, 82, 64, 0.12);

    --font-family-base: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-background: var(--color-charcoal-700);
        --color-surface: var(--color-charcoal-800);
        --color-text: var(--color-gray-200);
        --color-text-secondary: rgba(167, 169, 169, 0.7);
        --color-border: rgba(119, 124, 124, 0.3);
        --color-card-border: rgba(119, 124, 124, 0.2);
    }
}

* {
    scroll-padding-top: 92px;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Wrapper to scope the background effects */
.ContactNewDesign {
    position: relative;
    isolation: isolate;
}


/* Animated Mesh Gradient Background */
/* .ContactNewDesignmesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(25, 139, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(23, 42, 57, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(25, 139, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(23, 42, 57, 0.08) 0%, transparent 50%);
    animation: meshMove 20s ease infinite;
} */

@keyframes meshMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
        background-size: 80% 80%, 70% 70%, 60% 60%, 75% 75%;
    }

    50% {
        background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%;
        background-size: 70% 70%, 80% 80%, 75% 75%, 60% 60%;
    }
}

/* Hero Section with Split Design */
.ContactNewDesignhero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1a3a4d 50%, var(--color-primary) 100%);
    padding: 4rem 2rem;
}

.ContactNewDesignhero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M50 0v100M0 50h100' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.3;
    animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.ContactNewDesignhero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Pattern Overlay */
/* .ContactNewDesigngrid-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-image:
			linear-gradient(rgba(25, 139, 234, 0.03) 1px, transparent 1px),
			linear-gradient(90deg, rgba(25, 139, 234, 0.03) 1px, transparent 1px);
		background-size: 50px 50px;
		opacity: 0.5;
	} */

.ContactNewDesignhero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    line-height: 1.1;
}

.ContactNewDesignhero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ContactNewDesignhero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.ContactNewDesignbadge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Main Container */
.ContactNewDesigncontainer {
    max-width: 1200px;
    margin: -120px auto 4rem;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 10;
}

/* Contact Section Grid */
.ContactNewDesigncontact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Glass Card Effect */
.ContactNewDesignglass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    animation: cardSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@media (prefers-color-scheme: dark) {
    .ContactNewDesignglass-card {
        background: rgba(38, 40, 40, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
}

.ContactNewDesignglass-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ContactNewDesigncard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(25, 139, 234, 0.2);
}

.ContactNewDesigncard-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(25, 139, 234, 0.3);
}

.ContactNewDesigncard-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.ContactNewDesigncard-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

/* Form Styling */
.ContactNewDesignform-grid {
    display: grid;
    gap: 1.5rem;
}

.ContactNewDesignform-group {
    animation: fadeInInput 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.ContactNewDesignform-group:nth-child(1) {
    animation-delay: 0.1s;
}

.ContactNewDesignform-group:nth-child(2) {
    animation-delay: 0.2s;
}

.ContactNewDesignform-group:nth-child(3) {
    animation-delay: 0.3s;
}

.ContactNewDesignform-group:nth-child(4) {
    animation-delay: 0.4s;
}

.ContactNewDesignform-group:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInInput {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ContactNewDesign label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.ContactNewDesignrequired {
    color: #ef4444;
}

.ContactNewDesign input[type="text"],
.ContactNewDesign input[type="email"],
.ContactNewDesign input[type="tel"],
.ContactNewDesign textarea,
.ContactNewDesign select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-family-base);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.ContactNewDesign input[type="text"]::placeholder,
.ContactNewDesign input[type="email"]::placeholder,
.ContactNewDesign input[type="tel"]::placeholder,
.ContactNewDesign textarea::placeholder,
.ContactNewDesign select::placeholder {
    font-family: 'Inter', sans-serif;
}

@media (prefers-color-scheme: dark) {

    .ContactNewDesign input[type="text"],
    .ContactNewDesign input[type="email"],
    .ContactNewDesign input[type="tel"],
    .ContactNewDesign textarea,
    .ContactNewDesign select {
        background: rgba(38, 40, 40, 0.5);
    }
}

.ContactNewDesign input:focus,
.ContactNewDesign textarea:focus,
.ContactNewDesign select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(25, 139, 234, 0.1);
    transform: translateY(-2px);
}

@media (prefers-color-scheme: dark) {

    .ContactNewDesign input:focus,
    .ContactNewDesign textarea:focus,
    .ContactNewDesign select:focus {
        background: rgba(38, 40, 40, 0.8);
    }
}

.ContactNewDesign textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.ContactNewDesign .ContactNewDesignbtn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(25, 139, 234, 0.3);
    margin-top: 1rem;
}

.ContactNewDesignbtn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ContactNewDesignbtn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.ContactNewDesignbtn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 139, 234, 0.4);
}

.ContactNewDesignbtn-submit:active {
    transform: translateY(-1px);
}

.ContactNewDesignbtn-submit span {
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.ContactNewDesigninfo-cards {
    display: grid;
    gap: 1.5rem;
}

.ContactNewDesigninfo-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@media (prefers-color-scheme: dark) {
    .ContactNewDesigninfo-item {
        background: rgba(38, 40, 40, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.ContactNewDesigninfo-item:nth-child(1) {
    animation-delay: 0.2s;
}

.ContactNewDesigninfo-item:nth-child(2) {
    animation-delay: 0.3s;
}

.ContactNewDesigninfo-item:nth-child(3) {
    animation-delay: 0.4s;
}

.ContactNewDesigninfo-item:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ContactNewDesigninfo-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    .ContactNewDesigninfo-item:hover {
        background: rgba(38, 40, 40, 0.8);
    }
}

.ContactNewDesigninfo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(25, 139, 234, 0.3);
}

.ContactNewDesigninfo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.ContactNewDesigninfo-content a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.ContactNewDesigninfo-content a:hover {
    color: var(--color-primary);
}

/* Company Info Banner */
.ContactNewDesigncompany-banner {
    background: linear-gradient(135deg, rgba(25, 139, 234, 0.1), rgba(23, 42, 57, 0.1));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border-left: 5px solid var(--color-primary);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ContactNewDesigncompany-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.ContactNewDesigncompany-banner p {
    color: var(--color-text-secondary);
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Success Alert */
.ContactNewDesignsuccess-alert {
    display: none;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    color: #166534;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
}

.ContactNewDesignCapture-alert {
    display: none;
    padding: 1.25rem;
    background: linear-gradient(229deg, rgb(197 34 34 / 15%), rgb(197 34 34 / 5%));
    border: 2px solid rgba(237, 43, 43, 0.54);
    border-radius: 12px;
    color: rgb(255, 0, 0);
    margin-bottom: 1.5rem;
    animation: slideInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ContactNewDesignsuccess-alert.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ContactNewDesignCapture-alert.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ContactNewDesignsuccess-icon {
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.ContactNewDesignCapture-icon {
    width: 24px;
    height: 24px;
    background: rgb(197, 34, 34);
    background: rgb(233 65 65 / 96%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .ContactNewDesigncontact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ContactNewDesignhero-content h1 {
        font-size: 3rem;
    }

    .ContactNewDesigncontainer {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .ContactNewDesignhero-section {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .ContactNewDesignhero-content h1 {
        font-size: 2.5rem;
    }

    .ContactNewDesignhero-content p {
        font-size: 1.1rem;
    }

    .ContactNewDesignglass-card {
        padding: 2rem;
    }

    .ContactNewDesigncontainer {
        margin-top: -60px;
        padding: 0 1rem 2rem;
    }

    .ContactNewDesigncard-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ContactNewDesignhero-content h1 {
        font-size: 2rem;
    }

    .ContactNewDesignglass-card {
        padding: 1.5rem;
    }

    .ContactNewDesigncard-icon {
        width: 48px;
        height: 48px;
    }

    .ContactNewDesigncard-icon svg {
        width: 24px;
        height: 24px;
    }
}