
:root {
    --primary-color: #154734;
    --secondary-color: #D4AF37;
    --accent-color: #0b3e24;
    --primary-dark: #0b3e24;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --gray-light: #f3f4f6;
}

body {
    overflow-x: hidden;
}

.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.wave-divider svg {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

section.bg-white {
    position: relative;
    z-index: 10;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.cta-section {
    background: linear-gradient(45deg, var(--secondary-color), #f4c430);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-detail-card {
    position: relative;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    bottom: -60px;
    left: 0;
    opacity: 0.2;
}

.service-detail-card:last-child::before {
    display: none;
}

.stats-badge {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(10px); }
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 4rem 0;
    }

    .service-detail-card {
        margin-bottom: 4rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blur-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
}

.blur-effect-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -150px;
    left: -150px;
}

.blur-effect-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -200px;
    right: -200px;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.faq-content {
    max-height: 0;
    transition: max-height 0.5s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}


.contact-card {
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

[data-aos], .hero-content, .contact-card, .stat-item, .timeline-item, .service-detail-card {
    will-change: transform, opacity;
}

.blog-card * {
    user-select: none;
}

/* ==== Phone input (intl-tel-input) spacing fix ==== */
.iti { width: 100%; }

/* Add enough left padding so text/placeholder clears the flag + dial code */
.iti--allow-dropdown input#telephone,
.iti--separate-dial-code input#telephone {
  padding-left: 5.6rem !important; /* adjust 5.0–6.5rem to taste */
}

/* Optional: a little polish */
#telephone::placeholder { opacity: .75; }
.iti__flag-container { z-index: 3; }

/* Optional: slightly tighter on very small screens */
@media (max-width: 480px) {
  .iti--allow-dropdown input#telephone,
  .iti--separate-dial-code input#telephone {
    padding-left: 5rem !important;
  }
}
