/* Web Design & Development Page Styles */

/* Hero Section */
.web-design-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.web-design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.web-design-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: 3rem;
}

.hero-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Website Mockup */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.website-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.website-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.browser-frame {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27ca3f;
}

.browser-url {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
    flex: 1;
}

.browser-content {
    padding: 0;
    min-height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mockup-hero {
    padding: 2rem;
    text-align: center;
}

.mockup-nav {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.mockup-title {
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mockup-subtitle {
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    margin-bottom: 1rem;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.mockup-button {
    height: 8px;
    background: #ff6b6b;
    border-radius: 4px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.mockup-section {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
}

.mockup-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 60px;
    flex: 1;
    max-width: 80px;
}

/* Floating Icons */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(odd) {
    animation-delay: -1.5s;
}

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

/* Section Headers */
.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
}

.service-features i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #dc3545, #6366f1);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    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(45deg, rgba(220, 53, 69, 0.9), rgba(99, 102, 241, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

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

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

.portfolio-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions .btn {
    margin-bottom: 1rem;
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-visual {
        padding: 1.5rem 0;
    }
    
    .website-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-timeline {
        max-width: 700px;
    }
    
    .step-content {
        max-width: 280px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .website-mockup {
        transform: none;
        margin-top: 2rem;
        max-width: 400px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-image img {
        height: 200px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 auto;
        text-align: center;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .website-mockup {
        transform: none;
        margin-top: 2rem;
        max-width: 350px;
    }
    
    .browser-content {
        min-height: 250px;
    }
    
    .mockup-hero {
        padding: 1.5rem;
    }
    
    .mockup-section {
        padding: 1rem 1.5rem;
    }
    
    .mockup-cards {
        gap: 0.5rem;
    }
    
    .mockup-card {
        height: 50px;
        max-width: 60px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 4rem;
        margin-bottom: 2rem;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        max-width: none;
        padding: 1.5rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.75rem auto;
    }
    
    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-actions .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .portfolio-image img {
        height: 180px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .cta-title {
        font-size: 1.75rem !important;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .website-mockup {
        max-width: 300px;
    }
    
    .browser-content {
        min-height: 200px;
    }
    
    .mockup-hero {
        padding: 1rem;
    }
    
    .mockup-section {
        padding: 0.75rem 1rem;
    }
    
    .mockup-cards {
        gap: 0.25rem;
    }
    
    .mockup-card {
        height: 40px;
        max-width: 50px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .portfolio-image img {
        height: 150px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-badge,
    .section-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .section-title,
    .cta-title {
        font-size: 1.5rem !important;
    }
    
    .website-mockup {
        max-width: 280px;
    }
    
    .browser-header {
        padding: 8px 12px;
    }
    
    .browser-dots span {
        width: 10px;
        height: 10px;
    }
    
    .browser-url {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .browser-content {
        min-height: 180px;
    }
    
    .mockup-hero {
        padding: 0.75rem;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .portfolio-image img {
        height: 120px;
    }
    
    .hero-actions .btn,
    .cta-actions .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Touch Improvements */
@media (max-width: 768px) {
    .service-card,
    .portfolio-item {
        touch-action: manipulation;
    }
    
    .service-card:active,
    .portfolio-item:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    /* Better text readability */
    .service-card p,
    .step-content p,
    .cta-description {
        line-height: 1.6;
    }
    
    /* Prevent zoom on inputs */
    input, textarea, select, button {
        font-size: 16px;
    }
}

/* High DPI Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .portfolio-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Animation Performance on Mobile */
@media (prefers-reduced-motion: reduce) {
    .floating-icon,
    .website-mockup {
        animation: none;
    }
    
    .service-card:hover,
    .portfolio-item:hover {
        transform: none;
    }
    
    .website-mockup:hover {
        transform: none;
    }
}

/* Focus Improvements */
@media (max-width: 768px) {
    .btn:focus {
        outline: 3px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
    
    .service-card:focus,
    .portfolio-item:focus {
        outline: 2px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
}

/* ========================================
   Enhanced Feature Boxes
   ======================================== */

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-box-icon i {
    font-size: 28px;
    color: #ffffff;
}

.feature-box-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.feature-box-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.feature-box-icon.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.feature-box-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

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

.feature-box-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.feature-box-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   Enhanced Pricing Cards
   ======================================== */

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: #667eea;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4a4a4a;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-features li i {
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 3px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* ========================================
   Enhanced Contact Form
   ======================================== */

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-form-card > .text-center > p {
    color: #6c757d;
    font-size: 1rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* ========================================
   Responsive Adjustments for New Components
   ======================================== */

@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-box-icon {
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-badge {
        right: -35px;
        font-size: 0.7rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .feature-box {
        padding: 1.25rem;
    }
    
    .feature-box-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .feature-box-icon i {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
