/* Custom CSS for RespectClean */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Logo Animation */
.logo-container {
    position: relative;
}

.logo-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transition: width 0.3s ease;
}

.logo-container:hover .logo-underline {
    width: 100%;
}

/* Navigation */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* New Navbar styles */
.navbar-main {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 4rem;
    padding: 0.5rem 0;
    padding-top: max(0.5rem, env(safe-area-inset-top));
    padding-bottom: 0.5rem;
}

.navbar-logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669; /* green-600 */
}

.nav-links-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: block;
    }
}

.nav-links-list {
    margin-left: 2.5rem; /* ml-10 */
    display: flex;
    align-items: baseline;
    gap: 2rem; /* space-x-8 */
}

.nav-link {
    color: #374151; /* gray-700 */
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #059669; /* green-600 */
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-inner {
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 640px) {
    .mobile-menu-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151; /* gray-700 */
}

.mobile-nav-link:hover {
    color: #059669; /* green-600 */
}

.mobile-btn-spacing {
    margin-top: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 300px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #10b981;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* iPhone notch support */
    background: linear-gradient(135deg, #1e3a8a, #10b981);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: calc(4rem + max(0.5rem, env(safe-area-inset-top))); /* Navbar height + notch */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(16, 185, 129, 0.7)), 
                url('images/hero-background.jpg') center/cover no-repeat;
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon {
    font-size: 3rem;
    z-index: 2;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* About Section */
.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.05);
}

/* Stats Animation */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Form Styles */
.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.contact-icon i {
    font-size: 1.25rem;
}

/* Footer */
.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.125rem;
    color: white;
}

.social-link:hover {
    background: #10b981;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading animation for service cards */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Pulse animation for CTA buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Scroll Indicator */

/* New Services Section styles */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-light-gray {
    background-color: #f9fafb; /* gray-50 */
}

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

.mb-large {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
    color: #111827; /* gray-900 */
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563; /* gray-600 */
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-image {
    height: 12rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image.green {
    background-image: url('images/terrasse.jpg');
}

.service-image.blue {
    background-image: url('images/pelouse.jpg');
}

.service-image.purple {
    background-image: url('images/jardin.jpg');
}

.service-image.orange {
    background-image: url('images/facade.jpg');
}

.service-image.teal {
    background-image: url('images/parking.jpg');
}

.service-image.red {
    background-image: url('images/urgence.jpg');
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #111827; /* gray-900 */
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563; /* gray-600 */
    margin-bottom: 1rem;
}

.service-features {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6b7280; /* gray-500 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 0.25rem;
}

/* About Section */
.about-section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-white {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563; /* gray-600 */
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #111827; /* gray-900 */
}

.feature-description {
    color: #4b5563; /* gray-600 */
}

.about-image-wrapper {
    border-radius: 1rem;
    height: 24rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Stats Animation */
.stats-section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bg-green-600 {
    background-color: #059669; /* green-600 */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stat-number {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.stat-label {
    color: #d1fae5; /* green-100 */
}

/* Form Styles */
.contact-section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form-wrapper {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #111827; /* gray-900 */
    margin-bottom: 1.5rem;
}

.form-space-y-6 > *:not([hidden]) ~ *:not([hidden]) {
    margin-top: 1.5rem;
}

.form-grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-input-full-width {
    width: 100%;
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon.green-bg {
    background-color: #d1fae5; /* green-100 */
    color: #059669; /* green-600 */
}

.contact-icon.blue-bg {
    background-color: #dbeafe; /* blue-100 */
    color: #2563eb; /* blue-600 */
}

.contact-icon.purple-bg {
    background-color: #ede9fe; /* purple-100 */
    color: #9333ea; /* purple-600 */
}

.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #111827; /* gray-900 */
}

.contact-text {
    color: #4b5563; /* gray-600 */
}

.contact-small-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6b7280; /* gray-500 */
}

.cta-card {
    background-color: #059669; /* green-600 */
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.cta-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-card-description {
    margin-bottom: 1rem;
}

.cta-card-info {
    display: flex;
    align-items: center;
    color: #a7f3d0; /* green-200 */
}

.cta-card-icon {
    margin-right: 0.5rem;
}

.cta-card-icon i {
    font-size: 1rem;
}

/* Footer */
.footer-bg {
    background-color: #111827; /* gray-900 */
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #4ade80; /* green-400 */
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af; /* gray-400 */
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af; /* gray-400 */
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list i {
    font-size: 0.875rem;
    color: #4ade80;
    width: 16px;
}

.footer-list a:hover {
    color: #4ade80; /* green-400 */
}

.footer-bottom-border {
    border-top: 1px solid #374151; /* gray-800 */
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af; /* gray-400 */
}

a.nav-link.text-gray-700.hover\:text-green-600.transition-colors.duration-300 {
    text-decoration: none;
}

a.mobile-nav-link {
    text-decoration: none;
}

.hero-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

p.post-code {
    color: #4b5563;
}

.vat-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.vat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.vat-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.vat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.vat-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.vat-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vat-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

/* Animations */


