/*
Theme Name: Diss Creative
Theme URI: https://disscreative.com/
Author: Antigravity
Description: A creative Coming Soon landing page with premium DISS Creative brand colors, featuring interactive sections, product showcase, and secure contact submissions database integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diss-the-creative
*/

/* Theme Styles Extracted from index.php */
		:root {
			--bg-light: #ffffff;
			--bg-alt: #f9fafb;
			--brand-primary: #8cc63f; /* green */
			--brand-secondary: #31aae2; /* cyan */
			--brand-dark: #091611; /* deep green-black */
			--text-dark: #111827;
			--text-muted: #4b5563;
			--text-light: #f3f4f6;
			--border-color: rgba(17, 24, 39, 0.08);
			--font-primary: 'Plus Jakarta Sans', sans-serif;
			--font-heading: 'Outfit', sans-serif;
			--font-accent: 'Caveat', cursive;
		}

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

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: var(--font-primary);
			background-color: var(--bg-light);
			color: var(--text-dark);
			line-height: 1.6;
			overflow-x: hidden;
		}

		/* Header Section */
		header {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			background: rgba(255, 255, 255, 0.95);
			backdrop-filter: blur(12px);
			border-bottom: 1px solid var(--border-color);
			z-index: 1000;
			transition: all 0.3s ease;
		}

		.header-container {
			max-width: 1280px;
			margin: 0 auto;
			padding: 16px 24px;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.brand-logo-img {
			height: 52px;
			width: auto;
			display: block;
		}

		nav {
			display: flex;
			align-items: center;
			gap: 32px;
		}

		.nav-link {
			font-family: var(--font-heading);
			font-size: 1rem;
			font-weight: 600;
			color: var(--text-dark);
			text-decoration: none;
			transition: color 0.2s ease;
		}

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

		.header-cta {
			background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
			color: #fff;
			padding: 10px 22px;
			border-radius: 8px;
			font-family: var(--font-heading);
			font-weight: 700;
			text-decoration: none;
			box-shadow: 0 4px 14px rgba(140, 198, 63, 0.2);
			transition: transform 0.2s ease, box-shadow 0.2s ease;
		}

		.header-cta:hover {
			transform: translateY(-2px);
			box-shadow: 0 6px 18px rgba(140, 198, 63, 0.35);
		}

		/* Hero Banner Section */
		.hero-banner {
			position: relative;
			background: var(--brand-dark);
			color: #ffffff;
			padding: 84px 0 0 0;
			overflow: hidden;
		}

		.hero-image-only {
			width: 100%;
			height: auto;
			display: block;
		}

		.hero-bg-svg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 1;
			pointer-events: none;
		}

		.hero-container {
			max-width: 1280px;
			margin: 0 auto;
			padding: 0 24px;
			position: relative;
			z-index: 2;
			display: grid;
			grid-template-columns: 1.1fr 0.9fr;
			gap: 48px;
			align-items: center;
		}

		@media (max-width: 992px) {
			.hero-container {
				grid-template-columns: 1fr;
				text-align: center;
			}
		}

		.hero-content {
			max-width: 700px;
		}

		.hero-badge-top {
			font-family: var(--font-heading);
			font-size: 0.85rem;
			font-weight: 700;
			letter-spacing: 1.5px;
			color: var(--brand-primary);
			text-transform: uppercase;
			margin-bottom: 16px;
			display: inline-block;
		}

		.hero-title {
			font-family: var(--font-heading);
			font-size: clamp(2.4rem, 4.5vw, 3.8rem);
			line-height: 1.15;
			font-weight: 800;
			margin-bottom: 20px;
			letter-spacing: -1px;
		}

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

		.hero-title span.script-font {
			font-family: var(--font-accent);
			color: var(--brand-primary);
			font-weight: 400;
			display: block;
			font-size: clamp(2.2rem, 4vw, 3.4rem);
			margin-top: 5px;
			text-transform: none;
			letter-spacing: 0;
		}

		.hero-desc {
			font-size: 1.1rem;
			color: rgba(255, 255, 255, 0.8);
			margin-bottom: 36px;
			line-height: 1.6;
		}

		.hero-desc span.highlight {
			color: var(--brand-primary);
			font-weight: 600;
		}

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

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

		.banner-service-item {
			display: flex;
			gap: 16px;
			align-items: flex-start;
			text-align: left;
		}

		.banner-service-icon {
			color: var(--brand-primary);
			flex-shrink: 0;
			margin-top: 4px;
		}

		.banner-service-title {
			font-family: var(--font-heading);
			font-size: 1rem;
			font-weight: 700;
			text-transform: uppercase;
			color: #ffffff;
			margin-bottom: 4px;
		}

		.banner-service-desc {
			font-size: 0.85rem;
			color: rgba(255, 255, 255, 0.65);
			line-height: 1.4;
		}

		/* Right Side Showcase */
		.hero-showcase {
			position: relative;
			display: flex;
			flex-direction: column;
			align-items: center;
			z-index: 5;
		}

		.showcase-tagline {
			font-family: var(--font-heading);
			font-size: 0.9rem;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.8);
			margin-bottom: 24px;
		}

		.showcase-tagline span {
			color: var(--brand-primary);
		}

		/* CSS Mockup System */
		.mockup-wrapper {
			position: relative;
			width: 100%;
			max-width: 480px;
			margin: 0 auto;
		}

		.floating-badge {
			position: absolute;
			background: rgba(9, 22, 17, 0.8);
			backdrop-filter: blur(8px);
			border: 1.5px solid rgba(140, 198, 63, 0.4);
			border-radius: 8px;
			padding: 8px 12px;
			color: var(--brand-primary);
			font-family: var(--font-heading);
			font-weight: 700;
			font-size: 0.8rem;
			box-shadow: 0 8px 32px 0 rgba(140, 198, 63, 0.2);
			z-index: 12;
			animation: float-badge 4s ease-in-out infinite;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.badge-code {
			top: 15%;
			right: -25px;
			animation-delay: 0s;
		}

		.badge-db {
			top: 45%;
			right: -35px;
			animation-delay: 1.5s;
			color: var(--brand-secondary);
			border-color: rgba(49, 170, 226, 0.4);
			box-shadow: 0 8px 32px 0 rgba(49, 170, 226, 0.2);
		}

		.badge-api {
			top: 75%;
			right: -20px;
			animation-delay: 0.75s;
		}

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

		.laptop-mockup {
			position: relative;
			background: #2d3748;
			border: 12px solid #1a202c;
			border-radius: 16px 16px 0 0;
			aspect-ratio: 16/10;
			overflow: hidden;
			box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
		}

		.laptop-screen {
			width: 100%;
			height: 100%;
			background: #0f172a;
			padding: 16px;
			position: relative;
			font-family: monospace;
			font-size: 0.75rem;
			color: #38bdf8;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			gap: 8px;
		}

		.laptop-screen-header {
			display: flex;
			gap: 6px;
			margin-bottom: 8px;
		}

		.dot {
			width: 6px;
			height: 6px;
			border-radius: 50%;
		}
		.dot.red { background: #ef4444; }
		.dot.yellow { background: #eab308; }
		.dot.green { background: #22c55e; }

		.laptop-code-line {
			white-space: nowrap;
			animation: typing 4s steps(40) infinite alternate;
			overflow: hidden;
		}

		.laptop-code-comment { color: #64748b; }
		.laptop-code-keyword { color: #f43f5e; }
		.laptop-code-string { color: #10b981; }

		.laptop-base {
			height: 12px;
			background: #e2e8f0;
			border-radius: 0 0 16px 16px;
			position: relative;
			box-shadow: 0 8px 16px rgba(0,0,0,0.3);
		}

		.laptop-notch {
			width: 80px;
			height: 4px;
			background: #cbd5e1;
			margin: 0 auto;
			border-radius: 0 0 8px 8px;
		}

		/* Phone Mockup overlay */
		.phone-mockup {
			position: absolute;
			bottom: -20px;
			left: -20px;
			width: 110px;
			aspect-ratio: 9/19;
			background: #0f172a;
			border: 4px solid #1e293b;
			border-radius: 14px;
			box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
			z-index: 10;
			overflow: hidden;
			padding: 10px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
		}

		.phone-text {
			font-family: var(--font-heading);
			font-size: 0.6rem;
			font-weight: 700;
			color: #fff;
			text-transform: uppercase;
			letter-spacing: 0.5px;
			line-height: 1.3;
		}

		.phone-text span {
			color: var(--brand-primary);
		}

		/* Mug Mockup overlay */
		.mug-mockup {
			position: absolute;
			bottom: -15px;
			right: -15px;
			width: 70px;
			height: 70px;
			background: #111827;
			border-radius: 8px 8px 14px 14px;
			border: 2px solid #374151;
			box-shadow: 0 15px 20px rgba(0,0,0,0.3);
			z-index: 10;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
			padding: 6px;
		}

		.mug-handle {
			position: absolute;
			right: -12px;
			top: 15px;
			width: 14px;
			height: 36px;
			border: 4px solid #111827;
			border-left: none;
			border-radius: 0 10px 10px 0;
		}

		.mug-text {
			font-family: var(--font-heading);
			font-size: 0.45rem;
			font-weight: 800;
			color: #fff;
			line-height: 1.1;
			letter-spacing: 0.2px;
		}

		.mug-text span {
			color: var(--brand-primary);
		}

		/* Slanted Highlights Bar */
		.highlights-bar {
			background: #ffffff;
			color: var(--text-dark);
			padding: 24px 0;
			position: relative;
			z-index: 10;
			border-top: 1px solid rgba(0,0,0,0.05);
			border-bottom: 1px solid rgba(0,0,0,0.05);
		}

		.highlights-container {
			max-width: 1280px;
			margin: 0 auto;
			padding: 0 24px;
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 24px;
		}

		@media (max-width: 768px) {
			.highlights-container {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 480px) {
			.highlights-container {
				grid-template-columns: 1fr;
			}
		}

		.highlight-item {
			display: flex;
			align-items: center;
			gap: 16px;
		}

		.highlight-icon {
			color: var(--brand-primary);
			flex-shrink: 0;
		}

		.highlight-text-block {
			display: flex;
			flex-direction: column;
		}

		.highlight-label {
			font-family: var(--font-heading);
			font-size: 0.95rem;
			font-weight: 800;
			text-transform: uppercase;
			color: var(--text-dark);
		}

		.highlight-sub {
			font-size: 0.8rem;
			color: var(--text-muted);
		}

		/* Call To Action Bar */
		.cta-banner-bar {
			background: linear-gradient(90deg, #091611 0%, #152c23 100%);
			padding: 20px 0;
			text-align: center;
			border-bottom: 3px solid var(--brand-primary);
			position: relative;
			z-index: 10;
		}

		.cta-banner-text {
			font-family: var(--font-heading);
			font-size: 1.15rem;
			font-weight: 800;
			color: #ffffff;
			letter-spacing: 1px;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 12px;
		}

		.cta-banner-text span {
			color: var(--brand-primary);
		}

		.cta-banner-arrows {
			color: var(--brand-primary);
			animation: pulse-arrows 1s infinite;
		}

		@keyframes pulse-arrows {
			0%, 100% { transform: translateX(0); }
			50% { transform: translateX(5px); }
		}

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

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

		.section-header {
			text-align: center;
			max-width: 700px;
			margin: 0 auto 60px auto;
		}

		.section-title {
			font-family: var(--font-heading);
			font-size: clamp(2rem, 3.5vw, 2.8rem);
			font-weight: 800;
			color: var(--text-dark);
			margin-bottom: 16px;
			letter-spacing: -0.5px;
		}

		.section-subtitle {
			font-size: 1.05rem;
			color: var(--text-muted);
		}

		/* About Us Section */
		#about {
			background-color: var(--bg-light);
		}

		.about-content-grid {
			display: grid;
			grid-template-columns: 1.1fr 0.9fr;
			gap: 60px;
			align-items: flex-start;
		}

		@media (max-width: 992px) {
			.about-content-grid {
				grid-template-columns: 1fr;
				gap: 40px;
			}
		}

		.about-text {
			display: flex;
			flex-direction: column;
			gap: 20px;
		}

		.about-p {
			font-size: 1.05rem;
			color: var(--text-muted);
			line-height: 1.7;
		}

		.about-cards-column {
			display: flex;
			flex-direction: column;
			gap: 24px;
		}

		.about-card {
			background: var(--bg-alt);
			border: 1px solid var(--border-color);
			border-radius: 16px;
			padding: 32px;
			box-shadow: 0 4px 20px rgba(0,0,0,0.02);
			transition: transform 0.3s ease;
		}

		.about-card:hover {
			transform: translateY(-4px);
		}

		.about-card-header {
			display: flex;
			align-items: center;
			gap: 16px;
			margin-bottom: 16px;
		}

		.about-card-title {
			font-family: var(--font-heading);
			font-size: 1.3rem;
			font-weight: 700;
			color: var(--text-dark);
		}

		.about-card-desc {
			font-size: 0.95rem;
			color: var(--text-muted);
			line-height: 1.6;
		}

		/* Services Section */
		#services {
			background-color: var(--bg-alt);
		}

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

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

		@media (max-width: 768px) {
			.services-grid-container {
				grid-template-columns: repeat(2, 1fr);
			}
		}

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

		.service-card {
			background: #ffffff;
			border: 1px solid var(--border-color);
			border-radius: 16px;
			padding: 30px;
			box-shadow: 0 4px 20px rgba(0,0,0,0.01);
			transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
			display: flex;
			flex-direction: column;
			gap: 16px;
		}

		.service-card:hover {
			transform: translateY(-5px);
			border-color: var(--brand-primary);
			box-shadow: 0 12px 30px rgba(140, 198, 63, 0.08);
		}

		.service-icon-box {
			width: 48px;
			height: 48px;
			background: rgba(140, 198, 63, 0.08);
			border-radius: 10px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: var(--brand-primary);
		}

		.service-card-title {
			font-family: var(--font-heading);
			font-size: 1.1rem;
			font-weight: 700;
			color: var(--text-dark);
			line-height: 1.3;
		}

		/* Why Choose Us Section */
		#why-choose-us {
			background-color: var(--bg-light);
		}

		.why-grid-container {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}

		@media (max-width: 992px) {
			.why-grid-container {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 576px) {
			.why-grid-container {
				grid-template-columns: 1fr;
			}
		}

		.why-card {
			background: var(--bg-alt);
			border: 1px solid var(--border-color);
			border-radius: 16px;
			padding: 30px;
			display: flex;
			align-items: flex-start;
			gap: 20px;
			transition: transform 0.3s ease;
		}

		.why-card:hover {
			transform: translateY(-4px);
		}

		.why-card-icon {
			color: var(--brand-primary);
			flex-shrink: 0;
			margin-top: 4px;
		}

		.why-card-content {
			display: flex;
			flex-direction: column;
			gap: 6px;
		}

		.why-card-title {
			font-family: var(--font-heading);
			font-size: 1.15rem;
			font-weight: 700;
			color: var(--text-dark);
		}

		/* Portfolio Section */
		#portfolio {
			background-color: var(--bg-alt);
		}

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

		@media (max-width: 992px) {
			.portfolio-grid {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 768px) {
			.portfolio-grid {
				grid-template-columns: 1fr;
			}
		}

		.portfolio-card {
			background: #ffffff;
			border: 1px solid var(--border-color);
			border-radius: 16px;
			overflow: hidden;
			box-shadow: 0 4px 20px rgba(0,0,0,0.01);
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			display: flex;
			flex-direction: column;
		}

		.portfolio-card:hover {
			transform: translateY(-6px);
			box-shadow: 0 15px 35px rgba(0,0,0,0.08);
		}

		.portfolio-img-container {
			position: relative;
			width: 100%;
			aspect-ratio: 16/10;
			background: #e5e7eb;
			overflow: hidden;
		}

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

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

		.portfolio-badge {
			position: absolute;
			top: 16px;
			left: 16px;
			background: var(--brand-primary);
			color: #fff;
			font-size: 0.75rem;
			font-weight: 700;
			text-transform: uppercase;
			padding: 4px 10px;
			border-radius: 30px;
		}

		.portfolio-body {
			padding: 24px;
			display: flex;
			flex-direction: column;
			gap: 12px;
			flex-grow: 1;
		}

		.portfolio-card-title {
			font-family: var(--font-heading);
			font-size: 1.25rem;
			font-weight: 700;
			color: var(--text-dark);
		}

		.portfolio-excerpt {
			font-size: 0.9rem;
			color: var(--text-muted);
			line-height: 1.5;
		}

		.portfolio-link {
			margin-top: auto;
			font-family: var(--font-heading);
			font-size: 0.9rem;
			font-weight: 700;
			color: var(--brand-primary);
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 6px;
		}

		.portfolio-link:hover {
			color: var(--brand-secondary);
		}

		/* Web Packages Section */
		#pricing {
			background-color: var(--bg-light);
		}

		.pricing-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
			align-items: center;
		}

		@media (max-width: 992px) {
			.pricing-grid {
				grid-template-columns: 1fr;
				max-width: 450px;
				margin: 0 auto;
			}
		}

		.pricing-card {
			background: var(--bg-alt);
			border: 1px solid var(--border-color);
			border-radius: 20px;
			padding: 40px;
			text-align: center;
			position: relative;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}

		.pricing-card.featured {
			background: #ffffff;
			border: 2px solid var(--brand-primary);
			box-shadow: 0 15px 40px rgba(140, 198, 63, 0.12);
			transform: scale(1.05);
			z-index: 5;
		}

		@media (max-width: 992px) {
			.pricing-card.featured {
				transform: scale(1);
			}
		}

		.pricing-card:hover {
			transform: translateY(-5px);
		}

		.pricing-card.featured:hover {
			transform: translateY(-5px) scale(1.05);
		}

		@media (max-width: 992px) {
			.pricing-card.featured:hover {
				transform: translateY(-5px);
			}
		}

		.pricing-badge {
			position: absolute;
			top: -14px;
			left: 50%;
			transform: translateX(-50%);
			background: var(--brand-primary);
			color: #fff;
			font-family: var(--font-heading);
			font-size: 0.75rem;
			font-weight: 700;
			text-transform: uppercase;
			padding: 6px 16px;
			border-radius: 30px;
		}

		.pricing-tier {
			font-family: var(--font-heading);
			font-size: 1.4rem;
			font-weight: 700;
			color: var(--text-dark);
			margin-bottom: 12px;
		}

		.pricing-price {
			font-family: var(--font-heading);
			font-size: 3rem;
			font-weight: 800;
			color: var(--text-dark);
			margin-bottom: 24px;
		}

		.pricing-features {
			list-style: none;
			text-align: left;
			margin-bottom: 36px;
			display: flex;
			flex-direction: column;
			gap: 12px;
		}

		.pricing-features li {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 0.95rem;
			color: var(--text-muted);
		}

		.pricing-features li::before {
			content: '✓';
			color: var(--brand-primary);
			font-weight: bold;
		}

		.pricing-btn {
			display: block;
			width: 100%;
			padding: 14px;
			border-radius: 10px;
			font-family: var(--font-heading);
			font-weight: 700;
			text-decoration: none;
			transition: all 0.2s ease;
		}

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

		.pricing-btn.outline:hover {
			background: var(--brand-primary);
			color: #fff;
		}

		.pricing-btn.solid {
			background: var(--brand-primary);
			color: #fff;
			box-shadow: 0 4px 14px rgba(140, 198, 63, 0.25);
		}

		.pricing-btn.solid:hover {
			box-shadow: 0 6px 20px rgba(140, 198, 63, 0.4);
		}

		/* Contact Section */
		#contact {
			background-color: var(--bg-alt);
		}

		.contact-grid {
			display: grid;
			grid-template-columns: 0.9fr 1.1fr;
			gap: 60px;
		}

		@media (max-width: 992px) {
			.contact-grid {
				grid-template-columns: 1fr;
				gap: 40px;
			}
		}

		.contact-info-block {
			display: flex;
			flex-direction: column;
			gap: 30px;
		}

		.contact-lead-text {
			font-size: 1.1rem;
			color: var(--text-muted);
			line-height: 1.6;
		}

		.contact-tagline-quote {
			font-family: var(--font-heading);
			font-size: 1.25rem;
			font-weight: 700;
			color: var(--brand-primary);
			border-left: 4px solid var(--brand-primary);
			padding-left: 16px;
			margin-top: 10px;
		}

		.contact-method-card {
			display: flex;
			align-items: flex-start;
			gap: 16px;
		}

		.contact-method-icon {
			color: var(--brand-primary);
			flex-shrink: 0;
			margin-top: 4px;
		}

		.contact-method-details h4 {
			font-family: var(--font-heading);
			font-size: 1rem;
			font-weight: 700;
			color: var(--text-dark);
			margin-bottom: 4px;
		}

		.contact-method-details p,
		.contact-method-details a {
			font-size: 0.95rem;
			color: var(--text-muted);
			text-decoration: none;
		}

		.contact-method-details a:hover {
			color: var(--brand-primary);
		}

		/* Form Styling inside WPCF7 */
		.contact-form-card {
			background: #ffffff;
			border: 1px solid var(--border-color);
			border-radius: 20px;
			padding: 40px;
			box-shadow: 0 10px 30px rgba(0,0,0,0.02);
		}

		.contact-form-card input[type="text"],
		.contact-form-card input[type="email"],
		.contact-form-card input[type="tel"],
		.contact-form-card input[type="url"],
		.contact-form-card textarea {
			width: 100%;
			background: #f9fafb;
			border: 1px solid rgba(17, 24, 39, 0.12);
			border-radius: 12px;
			padding: 14px 16px;
			color: #111827;
			font-family: var(--font-primary);
			font-size: 1rem;
			margin-top: 6px;
			margin-bottom: 12px;
			transition: border-color 0.3s ease, box-shadow 0.3s ease;
		}
		
		.contact-form-card input[type="text"]:focus,
		.contact-form-card input[type="email"]:focus,
		.contact-form-card textarea:focus {
			outline: none;
			border-color: var(--brand-primary);
			box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.15);
		}

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

		.contact-form-card input[type="submit"],
		.contact-form-card button,
		.contact-form-card .wpcf7-submit {
			width: 100%;
			background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
			border: none;
			border-radius: 12px;
			padding: 16px;
			font-family: var(--font-heading);
			font-size: 1rem;
			font-weight: 700;
			color: #fff;
			cursor: pointer;
			transition: transform 0.2s ease, box-shadow 0.2s ease;
			box-shadow: 0 10px 20px rgba(140, 198, 63, 0.15);
			margin-top: 10px;
		}

		.contact-form-card input[type="submit"]:hover,
		.contact-form-card button:hover,
		.contact-form-card .wpcf7-submit:hover {
			transform: translateY(-2px);
			box-shadow: 0 12px 25px rgba(140, 198, 63, 0.25);
		}

		.contact-form-card label {
			font-size: 0.85rem;
			font-weight: 600;
			text-transform: uppercase;
			color: var(--text-muted);
			letter-spacing: 0.5px;
		}

		/* Footer */
		footer {
			background: #ffffff;
			border-top: 1px solid var(--border-color);
			padding: 60px 0 30px 0;
		}

		.footer-grid {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			flex-wrap: wrap;
			gap: 40px;
			margin-bottom: 40px;
		}

		.footer-left {
			flex: 1 1 350px;
		}

		.footer-right {
			flex: 1 1 250px;
		}

		.footer-tagline {
			font-size: 0.9rem;
			color: var(--text-muted);
			margin-top: 12px;
			max-width: 320px;
		}

		.footer-right h4 {
			font-family: var(--font-heading);
			font-size: 1.05rem;
			font-weight: 700;
			text-transform: uppercase;
			color: var(--text-dark);
			margin-bottom: 16px;
		}

		.footer-bottom {
			border-top: 1px solid rgba(0,0,0,0.05);
			padding-top: 30px;
			text-align: center;
			font-size: 0.85rem;
			color: var(--text-muted);
		}

		/* Mobile Nav Toggle */
		.mobile-nav-toggle {
			display: none;
			background: none;
			border: none;
			cursor: pointer;
			padding: 8px;
			z-index: 1001;
			flex-direction: column;
			gap: 6px;
		}

		.hamburger-bar {
			display: block;
			width: 24px;
			height: 2px;
			background-color: var(--text-dark);
			transition: all 0.3s ease;
		}

		.mobile-only-cta {
			display: none;
		}

		/* Responsive adjustments */
		@media (max-width: 768px) {
			.header-container {
				padding: 12px 20px;
			}

			.brand-logo-img {
				height: 40px;
			}

			.mobile-nav-toggle {
				display: flex;
			}

			/* Hamburger animation when menu is open */
			header.nav-open .hamburger-bar:nth-child(1) {
				transform: translateY(8px) rotate(45deg);
			}
			header.nav-open .hamburger-bar:nth-child(2) {
				opacity: 0;
			}
			header.nav-open .hamburger-bar:nth-child(3) {
				transform: translateY(-8px) rotate(-45deg);
			}

			nav {
				position: fixed;
				top: 65px; /* height of header on mobile */
				left: 0;
				width: 100%;
				height: calc(100vh - 65px);
				background: #ffffff;
				flex-direction: column;
				align-items: center;
				justify-content: flex-start;
				padding-top: 40px;
				gap: 24px;
				z-index: 999;
				transform: translateX(100%);
				transition: transform 0.3s ease-in-out;
				box-shadow: 0 10px 15px rgba(0,0,0,0.05);
			}

			header.nav-open nav {
				transform: translateX(0);
			}

			.header-cta {
				display: none; /* Hide top CTA on mobile header */
			}

			.mobile-only-cta {
				display: inline-block;
				background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
				color: #fff !important;
				padding: 12px 28px;
				border-radius: 8px;
				font-family: var(--font-heading);
				font-weight: 700;
				text-decoration: none;
				box-shadow: 0 4px 14px rgba(140, 198, 63, 0.2);
				text-align: center;
				margin-top: 12px;
				width: 80%;
				max-width: 300px;
			}

			.hero-banner {
				padding: 65px 0 0 0;
			}

			/* Grid optimizations for mobile */
			.services-grid-container {
				grid-template-columns: 1fr !important;
			}

			.why-grid-container {
				grid-template-columns: 1fr !important;
			}
		}

		@media (max-width: 576px) {
			section {
				padding: 60px 0;
			}
			.section-header {
				margin-bottom: 40px;
			}
			.contact-grid {
				gap: 30px;
			}
			.contact-form-card {
				padding: 24px;
			}
			.pricing-card {
				padding: 30px 20px;
			}
		}
