:root {
    --warm-orange: #FF7A00;
    --warm-background: #FFF4E6;
    --text-gray: #4A5568;
    --orange-light: #FFE5CC;
    --dark-gray: #1a1a1a;
    --max-width: 1400px;
}

/* ============================================
   BASE & LAYOUT
   ============================================ */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-gray);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
} */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   NAVIGATION - ENHANCED & RESPONSIVE
   ============================================ */
.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--warm-orange), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--warm-orange);
    transform: translateY(-2px);
}

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

/* Mobile navigation */
@media (max-width: 1024px) {
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
}

/* Dropdown - Enhanced */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 100;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 122, 0, 0.1);
    overflow: hidden;
    padding: 0.5rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    color: var(--text-gray);
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.06));
    transform: translateX(8px);
    color: var(--warm-orange);
}

@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 220px;
        left: 0;
        transform: translateX(0) translateY(10px);
    }

    .dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}

/* ============================================
   HERO SECTION - ULTRA RESPONSIVE
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF4E6 50%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Animated gradient overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 154, 60, 0.06) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {

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

    50% {
        transform: scale(1.15) rotate(5deg);
        opacity: 0.8;
    }
}

/* Floating particles */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 122, 0, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 122, 0, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 122, 0, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 122, 0, 0.3), transparent);
    background-size: 200% 200%, 300% 300%, 250% 250%, 150% 150%;
    animation: particles 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particles {

    0%,
    100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }

    25% {
        background-position: 100% 0%, 0% 100%, 100% 100%, 50% 50%;
    }

    50% {
        background-position: 100% 100%, 100% 0%, 0% 100%, 100% 0%;
    }

    75% {
        background-position: 0% 100%, 100% 100%, 100% 0%, 50% 100%;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Tagline - Responsive */
.hero-content>span {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.5s ease-out 0.3s both;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Hero title - Ultra responsive */
.hero-section h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--warm-orange) 50%, #1a1a1a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 8s ease-in-out infinite, fadeIn 1.5s ease-out 0.5s both;
    letter-spacing: -0.03em;
    padding: 0 1rem;
}

@keyframes titleShine {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Hero description - Responsive */
.hero-section p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeIn 1.5s ease-out 0.7s both;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-section h1 {
        margin: 1rem 0;
    }

    .hero-section p {
        margin-bottom: 2rem;
    }
}

/* ============================================
   BUTTONS - RESPONSIVE & ENHANCED
   ============================================ */
.apple-button,
.dark-button {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border-radius: 16px;
    padding: 1.1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.apple-button {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 122, 0, 0.2);
    color: var(--warm-orange);
}

.apple-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.apple-button:hover::before {
    width: 300px;
    height: 300px;
}

.apple-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.25);
    border-color: var(--warm-orange);
}

.dark-button {
    background-color: rgba(29, 29, 31, 0.98);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    opacity: 0;
    transition: opacity 0.4s;
}

.dark-button:hover::before {
    opacity: 0.15;
}

.dark-button:hover {
    background-color: rgb(29, 29, 31);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--warm-orange);
}

/* Button responsiveness */
@media (max-width: 768px) {

    .apple-button,
    .dark-button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .apple-button,
    .dark-button {
        padding: 0.9rem 1.5rem;
    }
}

/* ============================================
   SERVICE CARDS - RESPONSIVE GRID
   ============================================ */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 122, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    height: 100%;
}

/* Gradient sweep effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 122, 0, 0.12),
            transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

/* Animated border */
.service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: linear-gradient(45deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--warm-orange);
    box-shadow:
        0 30px 60px rgba(255, 122, 0, 0.25),
        0 0 0 1px rgba(255, 122, 0, 0.1) inset;
    z-index: 10;
}

.service-card:hover::after {
    opacity: 0.4;
}

/* Icon wrapper */
.service-card .icon-wrapper,
.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warm-background) 0%, var(--orange-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.2);
    position: relative;
    font-size: 2rem;
}

.service-card .icon-wrapper::before,
.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: conic-gradient(from 180deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-card:hover .icon-wrapper,
.service-card:hover .service-card-icon {
    transform: translateY(-10px) scale(1.2) rotate(10deg);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
}

.service-card:hover .icon-wrapper::before,
.service-card:hover .service-card-icon::before {
    opacity: 0.6;
}

/* Card title */
.service-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Card description */
.service-card p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Arrow */
.card-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--warm-orange);
    font-size: 1.5rem;
}

.service-card:hover .card-arrow {
    transform: translateX(12px);
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(12px);
    }

    50% {
        transform: translateX(18px);
    }
}

/* Responsive cards */
@media (max-width: 1024px) {
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .service-card .icon-wrapper,
    .service-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-badge {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 6px 15px rgba(255, 122, 0, 0.35));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(4deg);
    }

    50% {
        transform: translateY(-25px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-4deg);
    }
}

/* ============================================
   GRADIENT TEXT - ENHANCED
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--warm-orange) 0%, #ff9a3c 50%, var(--warm-orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 5s ease-in-out infinite;
    font-weight: 700;
}

@keyframes textShine {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* ============================================
   FEATURE ITEMS - RESPONSIVE
   ============================================ */
.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.75rem;
    margin-left: -1.75rem;
    border-radius: 1.5rem;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 154, 60, 0.08));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-item:hover {
    transform: translateX(15px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF7ED, var(--warm-background));
    border-radius: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.2) rotate(8deg);
    background: linear-gradient(135deg, #FFE8CC, #FFD299);
}

.feature-item:hover .feature-icon-wrapper::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1.5rem;
        margin-left: -1.5rem;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   IMAGE EFFECTS - RESPONSIVE
   ============================================ */
.feature-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.image-glow {
    position: absolute;
    inset: -3rem;
    background: linear-gradient(135deg, #FFD299, #FFE8CC, var(--warm-orange));
    background-size: 200% 200%;
    border-radius: 2rem;
    opacity: 0.25;
    filter: blur(60px);
    transition: all 0.6s ease;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.25;
        background-position: 0% 50%;
    }

    50% {
        opacity: 0.45;
        background-position: 100% 50%;
    }
}

.feature-image-wrapper:hover .image-glow {
    opacity: 0.6;
    filter: blur(70px);
}

.feature-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.feature-image-wrapper:hover .feature-image {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .feature-image-wrapper {
        border-radius: 1.5rem;
    }
}

/* ============================================
   WHY CARDS - RESPONSIVE GRID
   ============================================ */
.why-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.why-card-glow {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg,
            rgba(255, 210, 153, 0.5),
            rgba(255, 232, 204, 0.5),
            rgba(255, 122, 0, 0.4));
    background-size: 200% 200%;
    border-radius: 3rem;
    opacity: 0;
    filter: blur(40px);
    transition: all 0.5s ease;
    animation: glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.why-card:hover .why-card-glow {
    opacity: 1;
    filter: blur(50px);
}

.why-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 122, 0, 0.15);
    transform-style: preserve-3d;
    height: 100%;
}

.why-card:hover .why-card-content {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 122, 0, 0.25);
    border-color: var(--warm-orange);
}

.why-icon-wrapper {
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFF7ED, var(--warm-background));
    border-radius: 2rem;
    color: var(--warm-orange);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.2);
    position: relative;
    font-size: 2.5rem;
}

.why-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 2rem;
    background: conic-gradient(from 180deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.why-card:hover .why-icon-wrapper {
    transform: scale(1.25) rotate(12deg);
    background: linear-gradient(135deg, #FFE8CC, #FFD299);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.35);
}

.why-card:hover .why-icon-wrapper::before {
    opacity: 0.5;
}

/* Responsive why cards */
@media (max-width: 1024px) {
    .why-card-content {
        padding: 2rem;
    }

    .why-icon-wrapper {
        width: 5rem;
        height: 5rem;
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .why-card-content {
        padding: 2rem 1.5rem;
        border-radius: 1.75rem;
    }

    .why-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2rem;
        border-radius: 1.5rem;
    }
}

/* ============================================
   CONTACT & FORMS - RESPONSIVE
   ============================================ */
input,
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.2);
    border-color: var(--warm-orange);
    background: white;
}

input::placeholder,
textarea::placeholder {
    color: rgba(74, 85, 104, 0.5);
}

.contact-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 122, 0, 0.1);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 122, 0, 0.2);
    border-color: var(--warm-orange);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.05), transparent);
    transform: translateX(8px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF7ED, var(--warm-background));
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    font-size: 1.5rem;
    color: var(--warm-orange);
}

.contact-item:hover .icon-circle {
    transform: scale(1.25) rotate(12deg);
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
}

.contact-item:hover .icon-circle i {
    color: white;
}

/* Form button */
button[type="submit"] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 1.1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
    width: 100%;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover::before {
    width: 400px;
    height: 400px;
}

button[type="submit"]:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.45);
}

button[type="submit"]:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    button[type="submit"] {
        padding: 1rem 2rem;
    }
}

/* ============================================
   STATS CARD - RESPONSIVE
   ============================================ */
.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 122, 0, 0.15);
    transition: all 0.4s ease;
}

.stats-card:hover {
    box-shadow: 0 30px 70px rgba(255, 122, 0, 0.25);
    border-color: var(--warm-orange);
    transform: translateY(-5px);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.08);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-gray);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-card {
        padding: 2rem;
        border-radius: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }
}

/* ============================================
   TESTIMONIAL CARD - RESPONSIVE
   ============================================ */
.testimonial-card {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 122, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), #ff9a3c);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    box-shadow: 0 30px 70px rgba(255, 122, 0, 0.25);
    border-color: var(--warm-orange);
    transform: translateY(-10px);
}

.testimonial-quote {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--warm-orange);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--orange-light);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--warm-orange);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

@media (max-width: 1024px) {
    .testimonial-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
        border-radius: 2rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   SECTION HEADERS - RESPONSIVE
   ============================================ */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 154, 60, 0.1));
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--warm-orange);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

.section-tag:hover {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 154, 60, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

/* ============================================
   GRID UTILITIES - RESPONSIVE
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.stagger-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.stagger-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.stagger-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

.stagger-5 {
    animation-delay: 0.5s;
    opacity: 0;
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */


/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* Reveal effect for sections as you scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Make the Hero feel deeper */
#particle-bg canvas {
    filter: blur(1px);
    pointer-events: none;
}
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Takes full screen height */
    text-align: center;
    position: relative;
    overflow: hidden;
}

#particle-bg {
    position: absolute;
    /* Sits behind content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind text */
    pointer-events: none;
    /* Allows clicking buttons through the animation */
}

.hero-section .container {
    position: relative;
    z-index: 10;
    /* Forces text to the front */

}
#particle-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* Ensure it has height */
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF5E6; /* Your brand cream */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Above everything */
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1); /* Apple-style slide */
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-text {
    font-family: 'Space Mono', monospace; /* Use a tech font */
    color: #EA580C;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.progress-container {
    width: 100%;
    height: 2px;
    background: rgba(234, 88, 12, 0.1);
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: #EA580C;
    transition: width 0.4s ease;
}

.status-code {
    font-family: 'Space Mono', monospace;
    color: rgba(234, 88, 12, 0.5);
    font-size: 10px;
    margin-top: 10px;
}

/* Class to trigger when loading is done */
.preloader-hidden {
    transform: translateY(-100%); /* Slides up out of view */
}
