:root {
  /* Orange Security Theme Variables */
  --orange-theme-primary: #ff7b00;
  --orange-theme-primary-hover: #e56800;
  --orange-theme-gradient-light: linear-gradient(135deg, #ff7b00 0%, #ff9500 50%, #ffb347 100%);
  --orange-theme-gradient-medium: linear-gradient(135deg, #ff9500 0%, #ffb347 50%, #ffd700 100%);
  --orange-theme-gradient-dark: linear-gradient(135deg, #e56800 0%, #cc5500 50%, #b8860b 100%);
  
  /* Content Colors */
  --orange-theme-heading: #2c1810;
  
  /* Navigation Theme */
  --orange-theme-nav-active: #ff7b00;
  --orange-theme-nav-dropdown: #ff7b00;
  
  /* Typography */
  --default-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

.service-item .icon {
  background: var(--orange-theme-gradient-medium) !important;
  color: #fff !important;
}

.service-item .icon i {
  color: #ffffff !important;
}

#hero {
    background: linear-gradient(rgba(255, 123, 0, 0.1), rgba(229, 104, 0, 0.5)), 
                url('../img/background_image.png') center center/cover no-repeat;
    position: relative;
    min-height: 100vh;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.3) 0%, rgba(229, 104, 0, 0.5) 100%);
    z-index: 1;
}

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

/* Global Montserrat Font Application */
* {
    font-family: var(--default-font) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font) !important;
    font-weight: 600;
}

.navbar, .nav, .navmenu {
    font-family: var(--nav-font) !important;
}

.secure-hub-intro{
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 25%,
        rgba(248, 250, 252, 0.97) 50%,
        rgba(255, 255, 255, 0.99) 75%,
        rgba(251, 252, 254, 0.96) 100%);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.2) 0%, 
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 123, 0, 0.15) 50%,
        rgba(255, 255, 255, 0.25) 75%,
        rgba(229, 104, 0, 0.18) 100%) 1;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(255, 123, 0, 0.06),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.02);
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    will-change: transform, box-shadow;
}

.secure-hub-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, 
            rgba(255, 123, 0, 0.03) 0%, 
            transparent 50%),
        radial-gradient(circle at 70% 50%, 
            rgba(229, 104, 0, 0.02) 0%, 
            transparent 50%),
        linear-gradient(45deg, 
            transparent 30%, 
            rgba(255, 255, 255, 0.1) 50%, 
            transparent 70%);
    animation: etherealFloat 8s ease-in-out infinite;
    z-index: 1;
}

.secure-hub-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 45%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.6) 55%, 
        transparent 100%);
    animation: luxuryShimmer 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes etherealFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) rotate(1deg); 
        opacity: 0.5;
    }
    50% { 
        transform: translateX(-5px) translateY(10px) rotate(-0.5deg); 
        opacity: 0.7;
    }
    75% { 
        transform: translateX(-10px) translateY(-8px) rotate(0.8deg); 
        opacity: 0.4;
    }
}

@keyframes luxuryShimmer {
    0% { 
        left: -120%; 
        opacity: 0;
    }
    20% { 
        opacity: 1;
    }
    80% { 
        opacity: 1;
    }
    100% { 
        left: 120%; 
        opacity: 0;
    }
}

.secure-hub-intro:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 48px 96px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(255, 123, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.08),
        inset 0 4px 8px rgba(255, 255, 255, 0.95),
        inset 0 -2px 4px rgba(0, 0, 0, 0.03);
    border-image: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.35) 0%, 
        rgba(255, 255, 255, 0.5) 25%,
        rgba(255, 123, 0, 0.3) 50%,
        rgba(255, 255, 255, 0.45) 75%,
        rgba(229, 104, 0, 0.32) 100%) 1;
}

.secure-hub-intro * {
    color: #000000 !important;
    position: relative;
    z-index: 10;
}

.secure-hub-intro h1 {
    background: linear-gradient(135deg, 
        #0f0f0f 0%, 
        #2c2c2c 25%,
        #1a1a1a 50%,
        #333333 75%,
        #0a0a0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    animation: masterSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.secure-hub-intro h1::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--orange-theme-primary) 0%, 
        var(--orange-theme-primary-hover) 100%);
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 1.2s forwards;
}

@keyframes underlineExpand {
    to { width: 60%; }
}

.secure-hub-intro h2,
.secure-hub-intro h3,
.secure-hub-intro h4,
.secure-hub-intro h5,
.secure-hub-intro h6 {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #404040 50%, 
        #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: elegantSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    letter-spacing: -0.02em;
}

.secure-hub-intro p {
    color: #2c2c2c !important;
    line-height: 1.75;
    font-weight: 450;
    font-size: 1.1rem;
    animation: gracefulFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    margin-bottom: 2rem;
    opacity: 0.92;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.secure-hub-intro .btn,
.secure-hub-intro button,
.secure-hub-intro a[role="button"],
.secure-hub-intro .btn-get-started {
    background: linear-gradient(135deg, 
        var(--orange-theme-primary) 0%, 
        #ff8f1a 25%,
        var(--orange-theme-primary-hover) 50%,
        #d45a00 75%,
        #cc5500 100%);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 24px rgba(255, 123, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: premiumAppear 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    will-change: transform, box-shadow;
}

.secure-hub-intro .btn::before,
.secure-hub-intro button::before,
.secure-hub-intro a[role="button"]::before,
.secure-hub-intro .btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 100%);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.secure-hub-intro .btn:hover,
.secure-hub-intro button:hover,
.secure-hub-intro a[role="button"]:hover,
.secure-hub-intro .btn-get-started:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 40px rgba(255, 123, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    background: linear-gradient(135deg, 
        #ff8f1a 0%, 
        var(--orange-theme-primary) 25%,
        #e56800 50%,
        #cc5500 75%,
        #b84d00 100%);
}

.secure-hub-intro .btn:hover::before,
.secure-hub-intro button:hover::before,
.secure-hub-intro a[role="button"]:hover::before,
.secure-hub-intro .btn-get-started:hover::before {
    left: 100%;
}

.secure-hub-intro .btn:active,
.secure-hub-intro button:active,
.secure-hub-intro a[role="button"]:active,
.secure-hub-intro .btn-get-started:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes masterSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-80px) translateY(-20px) scale(0.9);
        filter: blur(4px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(10px) translateY(-5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes elegantSlideIn {
    0% {
        opacity: 0;
        transform: translateX(60px) translateY(15px) scale(0.95);
        filter: blur(3px);
    }
    70% {
        opacity: 0.9;
        transform: translateX(-8px) translateY(3px) scale(1.01);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes gracefulFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(2px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(15px) scale(1.01);
        filter: blur(1px);
    }
    100% {
        opacity: 0.92;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes premiumAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(3px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.secure-hub-intro span {
    color: #000000 !important;
}

.secure-hub-intro div {
    color: #000000 !important;
}

.secure-hub-intro a:not([role="button"]):not(.btn):not(.btn-get-started) {
    color: var(--orange-theme-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.secure-hub-intro a:not([role="button"]):not(.btn):not(.btn-get-started)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--orange-theme-primary) 0%, 
        var(--orange-theme-primary-hover) 100%);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.secure-hub-intro a:not([role="button"]):not(.btn):not(.btn-get-started):hover {
    color: var(--orange-theme-primary-hover) !important;
    transform: translateY(-1px);
}

.secure-hub-intro a:not([role="button"]):not(.btn):not(.btn-get-started):hover::after {
    width: 100%;
}

/* Enhanced responsive behavior */
@media (max-width: 768px) {
    .secure-hub-intro {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .secure-hub-intro h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.2rem;
    }
    
    .secure-hub-intro p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .secure-hub-intro .btn,
    .secure-hub-intro .btn-get-started {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===== ULTRA-PROFESSIONAL FOOTER STYLING ===== */

.footer {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2c2c2c 25%,
        #232323 50%,
        #1f1f1f 75%,
        #181818 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 123, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 104, 0, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 123, 0, 0.02) 0%, transparent 100%);
    z-index: 1;
}

.footer * {
    position: relative;
    z-index: 2;
}

.footer-newsletter {
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.95) 0%, 
        rgba(229, 104, 0, 0.98) 50%,
        rgba(204, 85, 0, 0.96) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: subtleFloat 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(10px) translateY(-5px); }
    66% { transform: translateX(-5px) translateY(8px); }
}

.footer-newsletter h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: titleSlideIn 1s ease-out;
}

.footer-newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    animation: textFadeIn 1s ease-out 0.2s both;
}

.footer-newsletter .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: formSlideUp 1s ease-out 0.4s both;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    border-radius: 50px;
}

.footer-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter input[type="submit"] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--orange-theme-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter input[type="submit"]:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.footer-top {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(35, 35, 35, 0.97) 50%,
        rgba(31, 31, 31, 0.96) 100%);
}

.footer-about .sitename {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--orange-theme-primary);
    font-weight: 600;
}

.footer-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-theme-primary) 0%, var(--orange-theme-primary-hover) 100%);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links li i {
    color: var(--orange-theme-primary);
    margin-right: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover i {
    color: var(--orange-theme-primary-hover);
    transform: translateX(3px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(255, 123, 0, 0.3);
}

.social-links {
    gap: 12px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.1) 0%, 
        rgba(229, 104, 0, 0.15) 100%);
    border: 2px solid rgba(255, 123, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--orange-theme-primary) 0%, var(--orange-theme-primary-hover) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: var(--orange-theme-primary);
    box-shadow: 0 8px 24px rgba(255, 123, 0, 0.3);
    color: #ffffff;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.copyright {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98) 0%, 
        rgba(20, 20, 20, 0.99) 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 123, 0, 0.1);
    backdrop-filter: blur(10px);
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.copyright .sitename {
    color: var(--orange-theme-primary);
    font-weight: 700;
}

/* Footer Animation Keyframes */
@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes formSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== TEAM SECTION ICON STYLING ===== */

.team-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%);
    border: 3px solid rgba(255, 123, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 24px rgba(255, 123, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.4) 0%, 
        rgba(229, 104, 0, 0.3) 50%,
        rgba(255, 123, 0, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .icon-circle {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 123, 0, 0.6);
    box-shadow: 
        0 16px 40px rgba(255, 123, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.team-member:hover .icon-circle::before {
    opacity: 1;
}

.icon-circle i {
    font-size: 2rem;
    color: var(--orange-theme-primary);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.team-member:hover .icon-circle i {
    color: var(--orange-theme-primary-hover);
    transform: scale(1.1);
}

/* Fix footer text visibility */
.footer-contact p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(255, 123, 0, 0.3);
}

.footer h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 400;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .footer-newsletter h4 {
        font-size: 1.8rem;
    }
    
    .footer-newsletter .newsletter-form {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }
    
    .footer-newsletter input[type="email"],
    .footer-newsletter input[type="submit"] {
        border-radius: 12px;
        padding: 14px 20px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-about .sitename {
        font-size: 1.6rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.8rem;
    }
}