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

:root {
    /* Color Palette - Muted Blue Theme */
	--primary-white: #ffffff;
	--soft-white: #f5f7fb;   /* very light, slightly cool blue-white */
	--cream: #e9f2fb;        /* pale muted blue background */
	--light-beige: #d9e4f5;  /* light muted blue */
	--beige: #c2d4f2;        /* medium-light muted blue */
	--warm-beige: #4a6fa5;   /* muted medium blue for deeper accents */
	--dark-beige: #233554;   /* deep navy-blue accent */
	--text-dark: #0b1220;
	--text-medium: #1f2937;
	--text-light: #6b7280;
	--accent-gold: #f6d365;  /* soft warm yellow accent */
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-base: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-beige);
    font-size: var(--font-size-base);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-beige);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--font-size-xl);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0 var(--spacing-xl);
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(228, 220, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(244, 241, 232, 0.05) 0%, transparent 50%);
    background-size: contain, contain, cover, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        conic-gradient(from 45deg, rgba(212, 175, 55, 0.05), rgba(244, 241, 232, 0.1), rgba(212, 175, 55, 0.05));
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: 
        radial-gradient(ellipse, rgba(228, 220, 192, 0.12) 0%, transparent 60%);
    animation: floatReverse 10s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
}

/* Decorative Background Elements */
.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration::before,
.hero-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: gentleFloat 6s ease-in-out infinite;
}

.hero-decoration::before {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    animation-delay: -2s;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 241, 232, 0.12));
}

.hero-decoration::after {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
    background: linear-gradient(45deg, rgba(228, 220, 192, 0.1), rgba(212, 175, 55, 0.06));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1.2s ease-out 0.3s forwards;
    position: relative;
    z-index: 3;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(244, 241, 232, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
    backdrop-filter: blur(1px);
    z-index: -1;
    opacity: 0;
    animation: fadeIn 2s ease-out 1.5s forwards;
}

.hero-greeting h1 {
    font-size: var(--font-size-5xl);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    opacity: 0;
    animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    position: relative;
}

.name-highlight {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-top: var(--spacing-xs);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gold) 60%, var(--text-dark) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: shimmer 3s ease-in-out 1.5s infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    overflow: visible;
}

.name-highlight .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

.name-highlight .sparkle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0.5s;
}

.name-highlight .sparkle:nth-child(2) {
    top: 80%;
    right: 15%;
    animation-delay: 1.2s;
}

.name-highlight .sparkle:nth-child(3) {
    top: 30%;
    right: 40%;
    animation-delay: 2s;
}

.name-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gold) 60%, var(--text-dark) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out 1.5s infinite;
    z-index: -1;
}

.name-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 50%, var(--accent-gold) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    animation: underlineExpandElegant 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards;
}

.hero-roles {
    font-size: var(--font-size-xl);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    position: relative;
}

.hero-roles::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px) scale(0.8);
    animation: slideInRight 1.2s ease-out 0.5s forwards;
}

.profile-image {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    margin: 0 auto;
}

.profile-image::before {
    content: "AA";
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--primary-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none; /* Hide placeholder when image is present */
}

.profile-image::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--warm-beige), var(--accent-gold), var(--beige), var(--accent-gold));
    z-index: -1;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(1px);
}

.profile-image:hover {
    transform: translateY(-12px) scale(1.08) rotate(2deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(212, 175, 55, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.profile-image:hover::after {
    opacity: 1;
    animation: rotateElegant 4s linear infinite;
    transform: scale(1.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Show the actual image */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1);
}

.profile-image:hover img {
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
    transform: scale(1.02);
}

.hero-intro {
    margin-bottom: var(--spacing-xl);
}

.hero-intro p {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    line-height: 1.6;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--primary-white);
    border: 1px solid var(--light-beige);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: var(--font-size-2xl);
    margin-top: 2px;
}

.highlight-item p {
    color: var(--text-medium);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none;
    border-radius: var(--radius-base);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    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: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
    background: var(--primary-white);
    color: var(--text-dark);
    border: 2px solid var(--beige);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.secondary:hover {
    background: var(--light-beige);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn.download {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    color: var(--primary-white);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn.download:hover {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-gold) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn.download i {
    margin-right: var(--spacing-xs);
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: 
        linear-gradient(135deg, var(--primary-white) 0%, var(--soft-white) 30%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 30%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: gentleFloat 8s ease-in-out infinite;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.about-image {
    position: relative;
    padding: var(--spacing-xl);
}

.about-image-container {
    width: 300px;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, var(--light-beige), var(--primary-white));
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--warm-beige), var(--accent-gold));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
}

.about-image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(212, 175, 55, 0.15);
}

.about-image-container:hover::before {
    opacity: 1;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(1.05) contrast(1.05);
}

.about-image-container:hover img {
    filter: brightness(1.1) contrast(1.1) saturate(1.05);
    transform: scale(1.05);
}

.about-text {
    padding: var(--spacing-md) 0;
}

.intro-paragraph {
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--accent-gold);
    background: rgba(244, 241, 232, 0.3);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.name-accent {
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-accent {
    font-weight: 500;
    color: var(--accent-gold);
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.highlight-card {
    background: var(--primary-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-beige);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.highlight-icon i {
    color: var(--primary-white);
    font-size: var(--font-size-lg);
}

.highlight-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.highlight-card p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: var(--font-size-sm);
}

.about-section {
    padding: var(--spacing-xl);
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
    border: 1px solid var(--light-beige);
    transition: all 0.3s ease;
    position: relative;
}

.about-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.section-icon i {
    color: var(--primary-white);
    font-size: var(--font-size-base);
}

.about-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

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

.about-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
}

/* About Section Wrapper - Card Left, Image Right */
.about-section-wrapper {
    max-width: 1200px;
    margin: 0 auto var(--spacing-3xl) auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.circular-image {
    width: 250px;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, var(--light-beige), var(--primary-white));
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.circular-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--warm-beige), var(--accent-gold));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
}

.circular-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(212, 175, 55, 0.15);
}

.circular-image:hover::before {
    opacity: 1;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: all 0.6s ease;
    filter: brightness(1.05) contrast(1.05);
}

.circular-image:hover img {
    filter: brightness(1.1) contrast(1.1) saturate(1.05);
    transform: scale(1.05);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.tag {
    background: linear-gradient(135deg, var(--light-beige), var(--beige));
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-base);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid var(--warm-beige);
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: var(--accent-gold);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--primary-white) 100%);
    border: 2px solid var(--light-beige);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.philosophy-item {
    text-align: center;
    padding: var(--spacing-md);
}

.philosophy-item h5 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.philosophy-item h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: var(--font-size-base);
    margin: 0;
}

.philosophy-quote {
    background: var(--light-beige);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-gold);
    position: relative;
}

.philosophy-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-gold);
    position: absolute;
    top: -10px;
    left: var(--spacing-md);
    opacity: 0.3;
    font-family: serif;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-2xl);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h4 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-cta p {
    font-size: var(--font-size-lg);
    color: var(--primary-white);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.5;
}

.about-cta .btn {
    background: var(--primary-white);
    color: var(--accent-gold);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-cta .btn:hover {
    background: var(--soft-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.experience-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-lg);
}

.experience-list li {
    padding: var(--spacing-lg);
    background: var(--soft-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-gold);
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: var(--font-size-base);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.experience-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--primary-white);
}

.experience-list li::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-white);
}

.experience-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-lg);
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-section-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .about-image-container {
        order: -1;
        justify-content: center;
    }
    
    .circular-image {
        width: 200px;
        height: 250px;
    }
    
    /* Experience Section Mobile Container */
    .experience .container {
        padding: 0 var(--spacing-xs);
    }
    
    .about-image {
        order: -1;
        padding: var(--spacing-md);
    }
    
    .about-image-container {
        width: 250px;
        height: 320px;
        margin: 0 auto;
    }
    
    .intro-paragraph {
        font-size: var(--font-size-lg);
        text-align: left;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .about-cta {
        padding: var(--spacing-lg);
    }
    
    .about-cta h4 {
        font-size: var(--font-size-xl);
    }
    
    .philosophy-quote::before {
        font-size: 3rem;
        top: -5px;
    }
}

/* Video Introduction Section */
.video-intro {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--soft-white) 100%);
    position: relative;
}

.video-intro-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.video-frame {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Experience Section */
.experience {
    background: var(--cream);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -5%;
    width: 25%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: gentleFloat 10s ease-in-out infinite reverse;
}

.experience-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg) 50px;
}

/* Elegant Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--soft-white) 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.timeline-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: var(--spacing-2xl);
    position: relative;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.timeline-item.active {
    opacity: 1;
    transform: scale(1);
}

.timeline-marker {
    position: absolute;
    left: var(--spacing-lg);
    top: var(--spacing-lg);
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border: 3px solid var(--primary-white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-gold), 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.active .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3), 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
}

.timeline-content {
    background: transparent;
    padding: 0;
    padding-left: calc(var(--spacing-lg) + 35px);
    padding-top: var(--spacing-xs);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-radius: 1px;
    opacity: 0.6;
}

.timeline-item.active .timeline-content::before {
    opacity: 1;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--warm-beige) 100%);
    width: 3px;
}

.timeline-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.timeline-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.timeline-content h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 1px;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
    text-align: justify;
}

.achievement-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.achievement-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.6;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: var(--font-size-base);
    width: 16px;
    height: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
}

.achievement-list li:hover {
    color: var(--text-dark);
    transform: translateX(4px);
}

/* Elegant Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--soft-white) 100%);
    border: 2px solid var(--light-beige);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--accent-gold);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    opacity: 0;
    animation: fadeInControls 1s ease-out 0.5s forwards;
    transform: translateY(-50%);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    color: var(--primary-white);
    border-color: var(--accent-gold);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn--prev {
    left: 10px;
}

.carousel-btn--next {
    right: 10px;
}

/* Elegant Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    opacity: 0;
    animation: fadeInControls 1s ease-out 1s forwards;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light-beige);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.indicator.active::before,
.indicator:hover::before {
    transform: scale(1);
}

.indicator.active {
    border-color: var(--accent-gold);
}

/* Carousel Animations */
@keyframes fadeInControls {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

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

/* Responsive Experience Carousel */
@media (max-width: 768px) {
    /* Experience Section Mobile Improvements */
    .experience-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .carousel-container {
        margin: 0 var(--spacing-sm);
        border-radius: var(--radius-lg);
    }
    
    .timeline-item {
        padding: var(--spacing-md);
        min-width: 100%;
        text-align: left;
    }
    
    .timeline-marker {
        width: 14px;
        height: 14px;
        left: 50%;
        top: var(--spacing-sm);
        transform: translateX(-50%);
        position: relative;
        margin: 0 auto var(--spacing-sm) auto;
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
        padding-left: var(--spacing-sm);
        text-align: left;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }
    
    .timeline-content h4 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .timeline-content p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }
    
    .timeline-content ul {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
    
    .timeline-content li {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-sm);
        z-index: 10;
    }
    
    .carousel-btn--prev {
        left: 5px;
    }
    
    .carousel-btn--next {
        right: 5px;
    }
    
    .carousel-indicators {
        padding: var(--spacing-sm);
        bottom: var(--spacing-xs);
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 var(--spacing-xs);
    }
}

/* Skills Section */
.skills {
    position: relative;
    overflow: hidden;
}

.skills .section-header {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.skills .section-header h2 {
    margin-bottom: var(--spacing-xs);
}

.skills::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: gentleFloat 12s ease-in-out infinite;
}

.skills-grid {
    display: grid;
    grid-template-columns: minmax(320px, 700px);
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    background: var(--primary-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--light-beige);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: skillCardFadeIn 0.8s ease-out forwards;
}

.skill-card:nth-child(1) { animation-delay: 0.2s; }
.skill-card:nth-child(2) { animation-delay: 0.4s; }
.skill-card:nth-child(3) { animation-delay: 0.6s; }

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

.skill-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

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

.skill-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--warm-beige), var(--accent-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.skill-card:hover .skill-icon::after {
    opacity: 1;
    animation: rotateElegant 3s linear infinite;
}

.skill-icon i {
    font-size: var(--font-size-2xl);
    color: var(--primary-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon i {
    transform: scale(1.1);
}

.skill-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    position: relative;
    padding-bottom: var(--spacing-sm);
    text-align: center;
}

.skill-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--warm-beige));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skill-card:hover h3::after {
    width: 50px;
}

.skill-card ul {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.skill-card li {
    color: var(--text-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.6;
    font-size: var(--font-size-base);
    background: rgba(244, 241, 232, 0.3);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: skillItemFadeIn 0.5s ease-out forwards;
}

.skill-card li:hover {
    background: var(--primary-white);
    border-left-color: var(--accent-gold);
    transform: translateX(8px);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.skill-card li::before {
    content: '';
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.skill-card li:hover::before {
    background: var(--warm-beige);
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Tools Section */
.tools-section {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--cream) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tools-section::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentleFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.tools-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(244, 241, 232, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentleFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.tools-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.tools-section h3::before {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--font-size-2xl);
    opacity: 0.8;
    animation: gentleFloat 4s ease-in-out infinite;
}

.tools-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--warm-beige), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}


/* Tools Grid - 4 Cards Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Tool Category Cards */
.tool-category {
    background: var(--primary-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: toolCategoryFadeIn 0.8s ease-out forwards;
}

/* Category Icons Container */
.category-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* Individual Tool Icons within Cards */
.tool-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--soft-white) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(212, 175, 55, 0.1);
}

/* Brand-specific tool icon colors */
.tools-section .tool-icon i {
    color: inherit;
}

/* Logo images in tool icons */
.tools-section .tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tool-icon:hover img {
    transform: scale(1.1);
}

.tools-section .tool-google { color: #4285F4; }
.tools-section .tool-microsoft { color: #F35325; }
.tools-section .tool-zoom { color: #0B5CFF; }
.tools-section .tool-slack { color: #611f69; }
.tools-section .tool-whatsapp { color: #25D366; }

.tools-section .tool-monday { color: #FF3D57; }
.tools-section .tool-clickup { color: #7B68EE; }
.tools-section .tool-notion { color: #111111; }
.tools-section .tool-eventbrite { color: #FF5700; }
.tools-section .tool-quickbooks { color: #2CA01C; }

.tools-section .tool-canva { color: #00C4CC; }
.tools-section .tool-figma { color: #F24E1E; }
.tools-section .tool-wordpress { color: #21759B; }
.tools-section .tool-shopify { color: #95BF47; }
.tools-section .tool-video { color: #E50914; }

.tools-section .tool-instagram { color: #E4405F; }
.tools-section .tool-facebook { color: #1877F2; }
.tools-section .tool-linkedin { color: #0A66C2; }
.tools-section .tool-tiktok { color: #010101; }
.tools-section .tool-email { color: #FFB400; }

/* Tool Category Animation Delays */
.tool-category:nth-child(1) { animation-delay: 0.2s; }
.tool-category:nth-child(2) { animation-delay: 0.4s; }
.tool-category:nth-child(3) { animation-delay: 0.6s; }
.tool-category:nth-child(4) { animation-delay: 0.8s; }

/* Tool Category Hover Effects */
.tool-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

/* Tool Icon Hover Effects */
.tool-icon:hover {
    transform: scale(1.15) translateY(-2px);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    color: var(--primary-white);
    border-color: var(--accent-gold);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 3px 12px rgba(212, 175, 55, 0.4);
}

/* Keep white background for tool icons with logos on hover */
.tool-icon:hover img {
    background: var(--primary-white);
    border-radius: 50%;
}

.tool-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--warm-beige), var(--accent-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-icon:hover::before {
    opacity: 0.4;
    animation: rotateElegant 3s linear infinite;
}

.tool-category h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

/* Tool Category Animation */
@keyframes toolCategoryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Work Section - Image Carousel */
.work {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -8%;
    width: 30%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: gentleFloat 15s ease-in-out infinite;
}

.work::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -10%;
    width: 35%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(244, 241, 232, 0.4) 0%, transparent 70%);
    pointer-events: none;
    animation: gentleFloat 12s ease-in-out infinite reverse;
}

/* Image Carousel Container */
.image-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(212, 175, 55, 0.2);
    background: var(--primary-white);
}

.image-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.image-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-slide:hover img {
    transform: scale(1.02);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--accent-gold);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    opacity: 0;
    animation: fadeInControls 1s ease-out 0.5s forwards;
}

.carousel-control:hover {
    background: var(--accent-gold);
    color: var(--primary-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.carousel-control--prev {
    left: 20px;
}

.carousel-control--next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
    opacity: 0;
    animation: fadeInControls 1s ease-out 1s forwards;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.dot.active,
.dot:hover {
    background: var(--primary-white);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Elegant Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    max-width: 95vw;
    max-height: 95vh;
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.4),
        0 15px 50px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(0.7) translateY(100px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.image-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-white);
    font-size: var(--font-size-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-close:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(90deg);
    color: var(--primary-white);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--light-beige), var(--cream));
    padding: var(--spacing-lg);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}


/* Testimonials Section */
.testimonials {
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -15%;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: gentleFloat 18s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(244, 241, 232, 0.4) 0%, transparent 60%);
    pointer-events: none;
    animation: gentleFloat 14s ease-in-out infinite reverse;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--light-beige);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialCardFadeIn 0.8s ease-out forwards;
    cursor: pointer;
    height: 300px;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }
.testimonial-card:nth-child(4) { animation-delay: 0.8s; }
.testimonial-card:nth-child(5) { animation-delay: 1.0s; }
.testimonial-card:nth-child(6) { animation-delay: 1.2s; }

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

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

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

.testimonial-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(181, 147, 47, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2.5rem;
    color: var(--primary-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: expandPulse 2s ease-in-out infinite;
}

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

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalImageZoom 0.4s ease-out;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--primary-white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}


/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 50%, var(--beige) 100%);
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: gentleFloat 20s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(244, 241, 232, 0.6) 0%, transparent 60%);
    pointer-events: none;
    animation: gentleFloat 16s ease-in-out infinite reverse;
}

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

.contact-header {
    margin-bottom: var(--spacing-md);
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.contact-form {
    background: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light-beige);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: contactFormFadeIn 0.8s ease-out 0.3s forwards;
}

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

.form-group {
    margin-bottom: var(--spacing-sm);
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: formGroupFadeIn 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.5s; }
.form-group:nth-child(2) { animation-delay: 0.6s; }
.form-group:nth-child(3) { animation-delay: 0.7s; }
.form-group:nth-child(4) { animation-delay: 0.8s; }
.form-group:nth-child(5) { animation-delay: 0.9s; }

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--light-beige);
    border-radius: var(--radius-base);
    font-size: var(--font-size-base);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
    background: var(--primary-white);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(244, 241, 232, 0.3) 100%);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--warm-beige);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.contact-form .btn {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-beige) 100%);
    color: var(--primary-white);
    border: none;
    border-radius: var(--radius-base);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-lg);
    opacity: 0;
    animation: buttonFadeIn 0.6s ease-out 1.2s forwards;
}

.contact-form .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: left 0.6s ease;
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.contact-info {
    background: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    height: fit-content;
    border: 1px solid var(--light-beige);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: contactInfoFadeIn 0.8s ease-out 0.5s forwards;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige));
    border-radius: 50%;
    opacity: 0.1;
}

.contact-info > p:first-child {
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.contact-info > p:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-md);
    background: rgba(244, 241, 232, 0.3);
    border-radius: var(--radius-sm);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-details p:hover {
    background: var(--primary-white);
    border-left-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.contact-details i {
    color: var(--accent-gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.contact-details p:hover i {
    background: var(--accent-gold);
    color: var(--primary-white);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--primary-white);
    padding: var(--spacing-lg) 0;
}

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--beige);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.25rem;
        --font-size-4xl: 1.875rem;
        --font-size-3xl: 1.5rem;
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-xl);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
        padding: var(--spacing-sm) 0;
    }
    
    .hero {
        padding: 60px 0 var(--spacing-lg);
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero-image {
        order: -1; /* Show image first on mobile */
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .profile-image::before {
        font-size: var(--font-size-3xl);
    }
    
    .hero-greeting h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero-roles {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .tool-category {
        padding: var(--spacing-lg);
    }
    
    .category-icons {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-xs);
    }
    
    .tool-icon {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-sm);
    }
    
    .image-slide img {
        height: 400px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .carousel-control--prev {
        left: 10px;
    }
    
    .carousel-control--next {
        right: 10px;
    }
    
    .modal-content {
        max-width: 98vw;
        max-height: 98vh;
        margin: var(--spacing-sm);
    }
    
    .modal-image-container {
        padding: var(--spacing-md);
    }
    
    .modal-image {
        max-height: 70vh;
        border-radius: var(--radius-base);
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: var(--font-size-base);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .contact {
        padding: var(--spacing-sm) 0;
    }
    
    .contact-header {
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Ultra-Mobile Experience Section */
    .experience-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .carousel-container {
        margin: 0 var(--spacing-xs);
    }
    
    .timeline-item {
        padding: var(--spacing-sm);
    }
    
    .timeline-content h3 {
        font-size: var(--font-size-base);
    }
    
    .timeline-content h4 {
        font-size: var(--font-size-xs);
    }
        .timeline-content p {
          font-size: var(--font-size-xs);
          line-height: 1.4;
          margin-bottom: var(--spacing-sm);
      }
      
      .timeline-content p br {
          display: none;
      }
      
      .timeline-content ul {
          max-width: 100%;
          margin: 0;
      }
    
    .achievement-list {
        gap: var(--spacing-xs);
    }
    
    .achievement-list li {
        font-size: var(--font-size-xs);
        line-height: 1.4;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .carousel-btn--prev {
        left: 2px;
    }
    
    .carousel-btn--next {
        right: 2px;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        justify-content: center;
    }
    
    .skill-card {
        padding: var(--spacing-md);
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

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

/* Professional Hero Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Enhanced Elegant Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes underlineExpandElegant {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes rotateElegant {
    0% {
        transform: scale(1.1) rotate(0deg);
    }
    25% {
        transform: scale(1.12) rotate(90deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
    75% {
        transform: scale(1.12) rotate(270deg);
    }
    100% {
        transform: scale(1.1) rotate(360deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) rotate(-120deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(-240deg) scale(0.95);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

/* Skills Animations */
@keyframes skillCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes skillItemFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toolCategoryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Work Animations */
@keyframes projectCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes projectItemFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Testimonials Animations */
@keyframes testimonialCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starFadeIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

/* Modal Animations */
@keyframes modalFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes modalImageZoom {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Animations */
@keyframes contactFormFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactInfoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formGroupFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}