/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    margin-top: 0;
    padding-top: 0;
}

/* Modern CSS Variables - Updated for Logo Compatibility */
:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #f8f9fa;
    --text-dark: #000000;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.25);
    --border-radius: 20px;
    --transition: all 0.3s ease;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --brown-light: #a0522d;
    --brown-dark: #8B4513;
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.trust-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideInUp 0.6s ease;
}

.trust-item i {
    color: #000000;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 300px;
    padding: 0 20px;
}

.logo {
    width: 200px;
    height: 50px;
    object-fit: contain;
    color: #333333;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    display: none;
    color: #333333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.7rem;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .bar {
        background-color: #fff;
    }
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(26, 26, 26, 0.1));
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease;
    background: linear-gradient(135deg, #ffffff 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 600;
    animation: slideInUp 1s ease 0.2s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    animation: slideInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Buttons */
.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #d4af37, transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    transform: skewX(-15deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 60vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    animation: slideInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition);
}

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

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

/* Tech Sphere */
.tech-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #d4af37 0%, #4a90e2 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

.sphere-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: dataFlow 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-point:nth-child(1) { top: 20%; left: 20%; }
.data-point:nth-child(2) { top: 20%; right: 20%; }
.data-point:nth-child(3) { bottom: 20%; left: 20%; }
.data-point:nth-child(4) { bottom: 20%; right: 20%; }
.data-point:nth-child(5) { top: 50%; left: 10%; }
.data-point:nth-child(6) { top: 50%; right: 10%; }

/* Floating Tech Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 10%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Animations */
@keyframes dataFlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: var(--transition);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
    animation: glow 2s infinite;
}

.service-card:nth-child(1) { animation: slideInLeft 0.6s ease; }
.service-card:nth-child(2) { animation: slideInUp 0.6s ease 0.1s both; }
.service-card:nth-child(3) { animation: slideInRight 0.6s ease 0.2s both; }
.service-card:nth-child(4) { animation: slideInLeft 0.6s ease 0.3s both; }
.service-card:nth-child(5) { animation: slideInUp 0.6s ease 0.4s both; }
.service-card:nth-child(6) { animation: slideInRight 0.6s ease 0.5s both; }
.service-card:nth-child(7) { animation: slideInLeft 0.6s ease 0.6s both; }

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Success Metrics Section */
.success-metrics {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
    position: relative;
    overflow: hidden;
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.metric-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Success Metrics specific styling */
.success-metrics .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.success-metrics .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Policy Pages Styling */
.page-hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.meta-item i {
    color: var(--gold-light);
}

.policy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--gold-light);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #555;
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* Grid Layouts for Policy Pages */
.purpose-grid,
.security-grid,
.rights-grid,
.obligations-grid,
.prohibited-grid,
.liability-grid,
.privacy-grid,
.services-grid-terms,
.kvkk-categories,
.processing-purposes,
.transfer-reasons,
.collection-methods,
.kvkk-rights,
.rights-application,
.evaluation-process,
.security-measures,
.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.purpose-item,
.security-item,
.right-item,
.obligation-item,
.prohibited-item,
.liability-item,
.privacy-item,
.service-term-item,
.category-item,
.method-item,
.reason-item,
.application-method,
.process-step,
.period-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-item:hover,
.security-item:hover,
.right-item:hover,
.obligation-item:hover,
.prohibited-item:hover,
.liability-item:hover,
.privacy-item:hover,
.service-term-item:hover,
.category-item:hover,
.method-item:hover,
.reason-item:hover,
.application-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.purpose-item i,
.security-item i,
.right-item i,
.obligation-item i,
.prohibited-item i,
.liability-item i,
.privacy-item i,
.service-term-item i,
.category-item i,
.method-item i,
.reason-item i,
.application-method i {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.purpose-item h4,
.security-item h4,
.right-item h4,
.obligation-item h4,
.prohibited-item h4,
.liability-item h4,
.privacy-item h4,
.service-term-item h4,
.category-item h4,
.method-item h4,
.reason-item h4,
.application-method h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.purpose-item p,
.security-item p,
.right-item p,
.obligation-item p,
.prohibited-item p,
.liability-item p,
.privacy-item p,
.service-term-item p,
.method-item p,
.reason-item p,
.application-method p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Retention Table */
.retention-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.retention-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-row:nth-child(even) {
    background: #f8f9fa;
}

.retention-type {
    font-weight: 600;
    color: var(--primary-color);
}

.retention-period {
    color: #666;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--gold-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-light);
    min-width: 30px;
}

.contact-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Update Info */
.update-info {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
    margin: 1.5rem 0;
}

.update-info p {
    margin: 0.5rem 0;
    color: #1976d2;
    font-weight: 500;
}

/* Process Steps */
.evaluation-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .purpose-grid,
    .security-grid,
    .rights-grid,
    .obligations-grid,
    .prohibited-grid,
    .liability-grid,
    .privacy-grid,
    .services-grid-terms,
    .kvkk-categories,
    .processing-purposes,
    .transfer-reasons,
    .collection-methods,
    .kvkk-rights,
    .rights-application,
    .evaluation-process,
    .security-measures,
    .retention-periods {
        grid-template-columns: 1fr;
    }
    
    .retention-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.experience::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="expPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="40" cy="40" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23expPattern)"/></svg>');
    pointer-events: none;
}

.experience-timeline {
    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="expPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="40" cy="40" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23expPattern)"/></svg>');
    pointer-events: none;
}

.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
}

.marker-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: var(--white);
}

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

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
}

.timeline-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.timeline-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.timeline-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.3rem;
}

.timeline-stats .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .experience-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: -60px;
        top: 0;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .timeline-content::before {
        left: -20px !important;
        border-right-color: var(--white) !important;
        border-left-color: transparent !important;
    }
    
    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-stats .stat {
        flex: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 1.5rem;
        margin-left: 0.5rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.3rem;
    }
}

.experience-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card:nth-child(1) { animation: slideInLeft 0.6s ease 0.1s both; }
.testimonial-card:nth-child(2) { animation: slideInUp 0.6s ease 0.2s both; }
.testimonial-card:nth-child(3) { animation: slideInRight 0.6s ease 0.3s both; }
.testimonial-card:nth-child(4) { animation: slideInLeft 0.6s ease 0.4s both; }
.testimonial-card:nth-child(5) { animation: slideInUp 0.6s ease 0.5s both; }
.testimonial-card:nth-child(6) { animation: slideInRight 0.6s ease 0.6s both; }

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: starPulse 2s infinite;
}

.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    padding: 1rem 0;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background: var(--white);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.about::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="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    color: #ffffff;
}

.about-header {
    margin-bottom: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 144, 226, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #d4af37;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text .section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.about-description-wrapper {
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 144, 226, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.stat-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.ceo-quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 144, 226, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.quote-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: #d4af37;
    font-size: 1.1rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d4af37;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 144, 226, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.tech-badge i {
    color: #d4af37;
}

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

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 144, 226, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
    
    .ceo-quote {
        padding: 1.5rem;
    }
    
    .quote-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.blog::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateY(-2px);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    aspect-ratio: 4/3;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    animation: float 3s ease-in-out infinite;
}

.portfolio-item:nth-child(1) { animation: slideInLeft 0.6s ease 0.1s both; }
.portfolio-item:nth-child(2) { animation: slideInUp 0.6s ease 0.2s both; }
.portfolio-item:nth-child(3) { animation: slideInRight 0.6s ease 0.3s both; }
.portfolio-item:nth-child(4) { animation: slideInLeft 0.6s ease 0.4s both; }
.portfolio-item:nth-child(5) { animation: slideInUp 0.6s ease 0.5s both; }
.portfolio-item:nth-child(6) { animation: slideInRight 0.6s ease 0.6s both; }
.portfolio-item:nth-child(7) { animation: slideInLeft 0.6s ease 0.7s both; }
.portfolio-item:nth-child(8) { animation: slideInUp 0.6s ease 0.8s both; }

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    backdrop-filter: blur(5px);
}

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

.portfolio-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.portfolio-overlay p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.portfolio-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    justify-content: center;
}

.portfolio-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background */
.contact-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-contact-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-contact {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    animation: floatContact 6s ease-in-out infinite;
}

.shape-contact.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-contact.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-contact.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.shape-contact.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.shape-contact.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 60%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes floatContact {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle-contact {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    animation: particleFloatContact 8s linear infinite;
}

.particle-contact:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle-contact:nth-child(2) { top: 20%; right: 30%; animation-delay: 2s; }
.particle-contact:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }
.particle-contact:nth-child(4) { top: 60%; right: 20%; animation-delay: 6s; }
.particle-contact:nth-child(5) { top: 80%; left: 30%; animation-delay: 1s; }
.particle-contact:nth-child(6) { bottom: 20%; right: 50%; animation-delay: 3s; }

@keyframes particleFloatContact {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

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

.contact-form-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
    resize: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-wrapper label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 600;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    transition: width 0.3s ease;
}

.input-wrapper:focus-within .input-line {
    width: 100%;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    z-index: 2;
    position: relative;
}

.btn-icon {
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.submit-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 120px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 1.5rem;
    }
    
    .input-wrapper {
        padding: 1rem;
    }
    
    .submit-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .form-icon i {
        font-size: 1.2rem;
    }
    
    .input-wrapper {
        padding: 0.8rem;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        font-size: 0.9rem;
    }
    
    .input-wrapper label {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    color: #fff;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: footerParticleFloat 8s infinite linear;
}

.footer-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.footer-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.footer-particles .particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }
.footer-particles .particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 6s; }
.footer-particles .particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }

@keyframes footerParticleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section.main-section {
    grid-column: 1;
    max-width: 100%;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-text {
    display: none;
}

.footer-description {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-description .highlight {
    color: #d4af37;
    font-weight: 600;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    animation: statCount 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

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

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.social-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-hover {
    opacity: 1;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title.services-title {
    background: #4a90e2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.footer-title i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconGlow 2s infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), transparent);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a i {
    font-size: 1rem;
    color: #d4af37;
    transition: all 0.3s ease;
    min-width: 20px;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.footer-links a.active {
    background: #4a90e2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.footer-links a.active i {
    color: white;
}

.highlight-text {
    background: #4a90e2;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    padding: 1.5rem;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.12) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 2rem;
    margin-left: -1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.footer-contact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.footer-contact:hover::before {
    opacity: 1;
}

.footer-contact:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.8rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
    transition: left 0.7s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(8px) translateY(-8px) scale(1.03);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(212, 175, 55, 0.12) 50%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #d4af37 0%, #b8941f 50%, #a67c1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover .contact-icon::before {
    left: 100%;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.contact-item:hover .contact-icon i {
    transform: translate(-50%, -50%) scale(1.4);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.contact-info {
    flex: 1;
    position: relative;
}

.contact-info h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.contact-item:hover .contact-info h4 {
    color: #f0c040;
    transform: translateX(8px);
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item:hover .contact-info p {
    color: rgba(255, 255, 255, 1);
    transform: translateX(8px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    border-radius: 1px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-extra {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.separator {
    color: #666;
    font-weight: bold;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 15px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 120px;
        height: 90px;
    }
    
    .footer-logo-img {
        width: 105px;
        height: 79px;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 9999;
        cursor: pointer;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        margin-right: 10px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 9998;
        height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-item {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .tech-sphere {
        width: 150px;
        height: 150px;
    }
    
    .sphere-core {
        width: 60px;
        height: 60px;
    }
    
    .tech-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item {
        aspect-ratio: 3/2;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.9rem;
    }
    
    .portfolio-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .portfolio-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 110px;
        height: 80px;
    }
    
    .footer-logo-img {
        width: 95px;
        height: 71px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    
    .portfolio-overlay {
        padding: 1rem;
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 10001;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.modal-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
}

.project-tech h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    justify-content: center;
}

.project-links .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    min-width: 150px;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .project-links {
        flex-direction: column;
    }
} 

/* Blog Page Specific Styles */
.blog-hero {
    background: linear-gradient(135deg, #f4d03f 0%, #8B4513 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Blog Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    background: rgba(0,0,0,0.2);
    color: var(--text-dark);
}

.blog-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-modal-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.blog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.blog-modal-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-modal-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--brown-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    align-self: flex-start;
}

.blog-modal-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.blog-modal-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-modal-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-modal-meta i {
    color: var(--primary-color);
}

.blog-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-modal-tags .tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-modal-content-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.blog-modal-content-text h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.blog-modal-content-text h3:first-child {
    margin-top: 0;
}

.blog-modal-content-text p {
    margin-bottom: 1rem;
}

/* Active navigation link for blog page */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-modal-body {
        grid-template-columns: 1fr;
    }
    
    .blog-modal-image {
        border-radius: 20px 20px 0 0;
    }
    
    .blog-modal-text {
        padding: 2rem;
    }
    
    .blog-modal-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .blog-modal-text {
        padding: 1.5rem;
    }
    
    .blog-modal-text h2 {
        font-size: 1.3rem;
    }
    
    .blog-modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* ===== NEW TRUST-BUILDING FEATURES ===== */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff4757, #ff3838, #ff6348);
    background-size: 200% 200%;
    color: white;
    padding: 20px 0;
    position: relative;
    z-index: 10000;
    animation: gradientShift 3s ease-in-out infinite, pulse 2s infinite;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    min-height: 60px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.urgency-banner::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

.urgency-banner .urgency-content::before {
    content: '🔥';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 24px;
    animation: float 3s ease-in-out infinite reverse;
    opacity: 0.7;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.urgency-content i {
    font-size: 22px;
    animation: pulse 1.5s infinite, bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.urgency-content span {
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease;
    letter-spacing: 0.5px;
}

.btn-urgent {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.btn-urgent:hover {
    background: white;
    color: #ff6b6b;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4d03f 0%, #8B4513 100%);
    color: white;
    position: relative;
}

.certifications::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.certifications .section-header {
    position: relative;
    z-index: 2;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.certification-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::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 ease;
}

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

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

.certification-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: all 0.3s ease;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.certification-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.certification-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4d03f, #8B4513);
}

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

.story-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.story-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.story-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: #f0f0f0;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4d03f, #8B4513);
}

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

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f4d03f, #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.position {
    font-size: 16px;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: #f0f0f0;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8B4513;
    color: white;
    transform: scale(1.1);
}

/* Consultation Section */
.consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4d03f 0%, #8B4513 100%);
    color: white;
    position: relative;
}

.consultation::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.consultation-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.consultation-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-benefits {
    display: grid;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit i {
    color: #4ade80;
    font-size: 20px;
}

.consultation-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-form-inner {
    display: grid;
    gap: 20px;
}

.consultation-form-inner .form-group input,
.consultation-form-inner .form-group select,
.consultation-form-inner .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    color: #333;
    font-size: 16px;
}

.consultation-form-inner .form-group input::placeholder,
.consultation-form-inner .form-group textarea::placeholder {
    color: #666;
}

.consultation-form-inner .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-form-inner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Security Badges */
.security-badges {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateX(5px);
    background: white;
}

.badge i {
    color: #4ade80;
    font-size: 14px;
}

/* Responsive Design for New Features */
@media (max-width: 768px) {
    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    

    
    .security-badges {
        left: 10px;
        bottom: 10px;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .urgency-banner {
        padding: 10px 0;
    }
    
    .certification-card {
        padding: 20px;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    

} 

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #d4af37;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Project Calculator */
.calculator {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    min-height: 100vh;
    margin-top: 0;
}

.calculator .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.calculator .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-form .form-group {
    margin-bottom: 25px;
}

.calculator-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
}

.calculator-form select,
.calculator-form input[type="range"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calculator-form select:focus,
.calculator-form input[type="range"]:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.calculator-form select option {
    background: #333;
    color: white;
}

#featureCount {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #d4af37;
}

.calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
}

.result-card h3 {
    margin-bottom: 20px;
    color: #d4af37;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Client Logos */
.clients {
    padding: 80px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-logo {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
    background: white;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

.client-logo span {
    display: block;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-light));
}

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

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.award-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.award-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.award-year {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::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="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 0.6;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details {
    color: #ffffff;
}

.contact-details h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #d4af37;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: #f4d03f;
}

.contact-details p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details p {
    color: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 25px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .contact-details h4 {
        font-size: 1.3rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-details h4 {
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--brown-dark));
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.newsletter-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-form .btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .calculator {
        padding: 140px 0 80px;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-form {
        padding: 2rem 1.5rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
}
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
    }
    
    .faq-hero .hero-title {
        font-size: 2.5rem;
        text-align: center;
        transform: none;
    }
    
    .faq-hero .hero-description {
        font-size: 1.1rem;
        text-align: center;
        transform: none;
    }
}

@media (max-width: 480px) {
    .calculator {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .calculator-form {
        padding: 1.5rem 1rem;
    }
    
    .result-card {
        padding: 1.5rem 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .result-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        padding: 20px 15px;
    }
    
    .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        padding: 30px 20px;
    }
    
    .newsletter-text h2 {
        font-size: 24px;
    }
    
    .newsletter-text p {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .faq-hero .hero-title {
        font-size: 2rem;
        text-align: center;
        transform: none;
    }
    
    .faq-hero .hero-description {
        font-size: 1rem;
        text-align: center;
        transform: none;
    }
}

/* Creative Calculator Hero */
.creative-calculator-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 30%; right: 25%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 30%; left: 20%; animation-delay: 3s; }
.floating-element:nth-child(5) { bottom: 60%; right: 30%; animation-delay: 4s; }

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; right: 30%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; right: 20%; animation-delay: 3s; }
.particle:nth-child(5) { top: 80%; left: 30%; animation-delay: 4s; }
.particle:nth-child(6) { bottom: 20%; right: 50%; animation-delay: 5s; }
.particle:nth-child(7) { bottom: 40%; left: 10%; animation-delay: 6s; }
.particle:nth-child(8) { bottom: 60%; right: 10%; animation-delay: 7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.creative-calculator-hero .hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.creative-calculator-hero .hero-content {
    color: white;
}

.creative-calculator-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease;
}

.creative-calculator-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.creative-calculator-hero .title-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.creative-calculator-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.4s both;
}

.creative-calculator-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.6s both;
}

.creative-calculator-hero .stat-item {
    text-align: center;
}

.creative-calculator-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.creative-calculator-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.creative-calculator-hero .hero-cta {
    animation: slideInUp 0.8s ease 0.8s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* 3D Calculator */
.calculator-3d {
    position: relative;
    perspective: 1000px;
    animation: slideInRight 1s ease 0.5s both;
}

.calc-body {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.calc-body:hover {
    transform: rotateY(-10deg) rotateX(5deg);
}

.calc-screen {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.calc-display {
    text-align: right;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.calc-expression {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.calc-result {
    font-size: 1.5rem;
    font-weight: bold;
}

.calc-keypad {
    display: grid;
    gap: 10px;
}

.calc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.calc-key {
    background: linear-gradient(145deg, #34495e, #2c3e50);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.calc-key:hover {
    background: linear-gradient(145deg, #3498db, #2980b9);
    transform: translateY(-2px);
}

.calc-key.operator {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.calc-key.equals {
    background: linear-gradient(145deg, #27ae60, #229954);
}

.calc-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(10px);
}

/* Price Bubbles */
.price-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.price-bubble {
    position: absolute;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: bubbleFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.price-bubble:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.price-bubble:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.price-bubble:nth-child(3) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.price-bubble:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Creative Calculator Section */
.creative-calculator {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Progress Container */
.progress-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    border-radius: 10px;
    width: 25%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.progress-step span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Calculator Steps */
.calculator-step {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.calculator-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.step-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Project Type Grid */
.project-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.project-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.project-type-card.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fff9e6, #fff);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-type-card:hover .card-glow {
    opacity: 1;
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.project-type-card:hover .type-icon {
    transform: scale(1.1);
}

.project-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.project-type-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #d4af37;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-type-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Complexity Selector */
.complexity-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.complexity-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.complexity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.complexity-card.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fff9e6, #fff);
}

.complexity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.complexity-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.complexity-card p {
    color: #666;
    margin-bottom: 1rem;
}

.complexity-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.complexity-features span {
    display: block;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.complexity-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
}

/* Features Selector */
.features-selector {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.features-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-checkbox:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #d4af37;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #d4af37;
}

.feature-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.feature-text {
    font-weight: 500;
    color: #333;
}

/* Results Container */
.results-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-card.primary {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-price {
    font-size: 3rem;
    font-weight: 800;
    color: inherit;
}

.result-details {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    font-weight: 700;
}

/* Breakdown Chart */
.result-breakdown {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-breakdown h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.breakdown-chart {
    display: grid;
    gap: 1.5rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-bar {
    flex: 1;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    border-radius: 20px;
    width: var(--percentage, 0%);
    transition: width 1s ease;
}

.bar-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-weight: 600;
    z-index: 1;
}

.bar-percentage {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-weight: 700;
    z-index: 1;
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .creative-calculator-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .creative-calculator-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .creative-calculator-hero .hero-stats {
        justify-content: center;
    }
    
    .calc-body {
        width: 250px;
        height: 350px;
    }
    
    .project-type-grid {
        grid-template-columns: 1fr;
    }
    
    .complexity-selector {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .creative-calculator-hero .hero-title {
        font-size: 2rem;
    }
    
    .calc-body {
        width: 200px;
        height: 300px;
        padding: 15px;
    }
    
    .calc-key {
        padding: 10px;
        font-size: 1rem;
    }
    
    .step-header h2 {
        font-size: 2rem;
    }
    
    .trust-content h2 {
        font-size: 2rem;
    }
}

/* Calculator Hero */
.calculator-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.calculator-hero::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="calculatorPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23calculatorPattern)"/></svg>');
    pointer-events: none;
}

.calculator-hero .hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 0.8s ease;
}

.calculator-hero .hero-description {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.2s both;
}

/* Simple Calculator Styles */
.calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.range-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.range-container input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

.range-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-container span {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background-color: #f8f9fa;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Simple Result Card */
.calculator-result {
    position: sticky;
    top: 2rem;
}

.result-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline {
    margin-bottom: 1.5rem;
}

.timeline p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.timeline span {
    color: var(--primary-color);
    font-weight: 600;
}

.result-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.result-actions {
    display: flex;
    gap: 1rem;
}

.result-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e9ecef;
}

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

/* FAQ Hero */
.faq-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.faq-hero::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="faqPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faqPattern)"/></svg>');
    pointer-events: none;
}

.faq-hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-hero .hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInUp 0.8s ease;
    text-align: center;
    transform: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.faq-hero .hero-description {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.2s both;
    text-align: center;
    transform: none;
} 

/* Contact Cards Grid Layout */
.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 144, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-card-icon {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.contact-card-icon i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    transform: scale(1.1);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-card-content h4 {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-content h4 {
    color: #f4d03f;
}

.contact-card-content p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-content p {
    color: #f8f9fa;
}

/* Responsive adjustments for contact cards */
@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-card-icon i {
        font-size: 1.1rem;
    }
    
    .contact-card-content h4 {
        font-size: 1rem;
    }
    
    .contact-card-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-card-icon i {
        font-size: 1rem;
    }
    
    .contact-card-content h4 {
        font-size: 0.95rem;
    }
    
    .contact-card-content p {
        font-size: 0.8rem;
    }
}

/* Copyright Section */
.copyright-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.copyright-section::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="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.copyright-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright-content p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright-content p:hover {
    opacity: 1;
}

.legal-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: #d4af37;
}

.legal-links .separator {
    color: #ffffff;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Responsive adjustments for copyright section */
@media (max-width: 768px) {
    .copyright-section {
        padding: 1.5rem 0;
    }
    
    .copyright-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .copyright-section {
        padding: 1rem 0;
    }
    
    .copyright-content p {
        font-size: 0.85rem;
    }
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(74, 144, 226, 0.2));
    color: #d4af37;
    transform: translateX(5px);
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Responsive dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        font-size: 0.85rem;
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        transform: none;
    }
}