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

:root {
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --orange: #FFA500;
    --white: #fffffe;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-text: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #1C1C1C;
    color: var(--dark-gray);
    overflow-x: hidden;
}

::selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--dark-gray);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--orange));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange), var(--gold));
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  background: #2E2E2E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo-container {
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.4));
    animation: glow 2s ease-in-out infinite;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--gold), var(--orange));
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.3s;
}

.sparkle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.6s;
}

.sparkle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.9s;
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(218, 165, 32, 0.7)) drop-shadow(0 0 70px rgba(255, 215, 0, 0.5));
    }
}

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

/* Main Content */
.main-content {
    width: 100%;
    overflow-x: hidden;
}

.main-content.hidden {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #3B3B3B;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: white;
    margin: 0 0 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.social-icon:hover {
    color: var(--gold);
    transform: translateY(-4px) scale(1.1);
}

.social-icon:hover::before {
    opacity: 0.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

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

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

@keyframes scroll-down {
    0% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 25px;
        opacity: 0.5;
    }
    100% {
        top: 10px;
        opacity: 1;
    }
}

/* About Section */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#3B3B3B;
    padding: 6rem 2rem;
    position: relative;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(218, 165, 32, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.about-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out 0.2s;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 2rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 2px;
}

.about-text {
    color: white;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--gold);
    font-weight: 600;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: black;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Portfolio Section */
.portfolio {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3B3B3B;
    padding: 6rem 2rem;
    position: relative;
}

.portfolio-container {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.portfolio-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease-out;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-card {
    background: var(--off-white);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(218, 165, 32, 0.2);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 1.5rem;
}

.category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.portfolio-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-size: 1rem;
}

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: flex-end;
}

.icon-placeholder {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-card:hover .icon-placeholder {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(45deg) scale(1.1);
}

/* Tools Section */
.tools {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#3B3B3B;
    padding: 6rem 2rem;
    position: relative;
}

.tools-container {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tool-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.tool-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.tool-card {
    background: #3B3B3B;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(218, 165, 32, 0.15);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover .tool-icon {
    animation: bounce 0.6s ease;
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.tool-icon span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    transition: all 0.3s ease;
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

/* Testimonials Section */
.testimonials {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3B3B3B;
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-container {
    max-width: 900px;
    width: 100%;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    height: 450px;
    margin-bottom: 3rem;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--off-white);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(218, 165, 32, 0.1);
}

.testimonial-card.prev {
    transform: translateX(-100px) scale(0.9);
}

.quote-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 2rem;
}

.quote-icon svg {
    width: 30px;
    height: 30px;
}

.testimonial-text {
    color: var(--medium-gray);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 2.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    border-radius: 2px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 0.25rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Contact Section */
.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#3B3B3B;
    padding: 6rem 2rem;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

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

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out 0.3s;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.25));
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
    transform: scale(1.1);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem;
}

.info-item a {
    color: white ;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold);
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out 0.4s;
}

.contact-form.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--dark-gray);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
    background: var(--white);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

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

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

.submit-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.3s ease;
}

.submit-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Footer */
.footer {
    background: #3B3B3B;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 2rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(218, 165, 32, 0.3);
    border-color: var(--gold);
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.footer-social-icon:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-icon:hover::before {
    opacity: 0.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
}

.footer-copyright p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        transform: translateY(-30px);
    }

    .about-image.visible {
        transform: translateY(0);
    }

    .about-content {
        transform: translateY(30px);
    }

    .about-content.visible {
        transform: translateY(0);
    }

    .contact-info {
        transform: translateY(-30px);
    }

    .contact-info.visible {
        transform: translateY(0);
    }

    .contact-form {
        transform: translateY(30px);
    }

    .contact-form.visible {
        transform: translateY(0);
    }

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

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }

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

    .portfolio-card {
        padding: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-icon {
        width: 60px;
        height: 60px;
    }

    .tool-icon span {
        font-size: 1.5rem;
    }

    .testimonial-slider {
        height: 550px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .author-info p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
