/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1A202C;
    --dark-footer: #0a0e19;
    --dark-divider: #333d4e;
    --text-light: #E2E8F0;
    --text-medium: #CBD5E0;
    --text-dark: #1F2937;
    --text-grey: #6B7280;
    --accent-blue: #2563eb;
    --card-bg: #FFFFFF;
    --card-bg-light: #F8FAFC;
    --border-light: #E5E7EB;
    --whatsapp-green: #25d366;
    --star-gold: #FFD700;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--card-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: radial-gradient(1200px circle at 20% 20%, #2d3748 0%, #1a202c 40%, #0b0f1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0) 70%);
    filter: blur(10px);
    animation: floatGlow 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(14px);
    animation: floatGlow 14s ease-in-out infinite reverse;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.hero-sweep {
    position: absolute;
    inset: -40% -10%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
    transform: translateX(-35%);
    animation: sweep 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 14px;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    object-fit: cover;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 0 10px rgba(255, 255, 255, 0.03),
        0 0 40px rgba(37, 99, 235, 0.25);
}

.hero-name {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-role {
    color: var(--text-medium);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text {
    color: var(--text-light);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 34px;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 2vw + 1.6rem, 3.4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    letter-spacing: -0.4px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-separator {
    width: 60px;
    height: 2px;
    background-color: var(--text-medium);
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: clamp(1.1rem, 0.8vw + 0.9rem, 1.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
    letter-spacing: -0.2px;
}

.hero-experience {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-medium);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.35);
}

.btn-calendly {
    background-color: var(--accent-blue);
    color: white;
}

.btn-calendly:hover {
    background-color: #1d4ed8;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-medium);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.9; }
    50% { transform: translateY(-20px) translateX(15px) scale(1.05); opacity: 1; }
}

@keyframes sweep {
    0% { transform: translateX(-45%) rotate(0deg); opacity: 0.15; }
    50% { transform: translateX(0%) rotate(0deg); opacity: 0.3; }
    100% { transform: translateX(45%) rotate(0deg); opacity: 0.15; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 1.6vw + 1.4rem, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.3px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.6), rgba(37, 99, 235, 0));
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 50px;
    letter-spacing: 0.2px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* About Section */
.about {
    background-color: var(--card-bg-light);
    padding: 120px 20px;
    background-image: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}

/* Premium micro-hover effects */
.about-card,
.service-card,
.project-card,
.testimonial-card,
.metric-card,
.expertise-card {
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%) padding-box,
        linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(16, 185, 129, 0.18)) border-box;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.about-card::before,
.service-card::before,
.project-card::before,
.testimonial-card::before,
.metric-card::before,
.expertise-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(120px circle at 20% 10%, rgba(37, 99, 235, 0.10), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.about-card:hover,
.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.metric-card:hover,
.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
}

.about-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.12));
    color: #1f2937;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.about-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.about-card p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-card ul {
    list-style: none;
    padding-left: 0;
}

.about-card ul li {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

.about-card strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Metrics Section */
.metrics {
    background-color: var(--card-bg);
    padding: 90px 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-grey);
}

/* Services Section */
.services {
    background-color: var(--card-bg-light);
    padding: 120px 20px;
    background-image: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #38bdf8 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.35);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-grey);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

/* Experience Section */
.experience {
    background-color: var(--card-bg);
    padding: 120px 20px;
}

.experience-content {
    margin-top: 50px;
}

.experience-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 14px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%) padding-box,
        linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(16, 185, 129, 0.14)) border-box;
    margin-bottom: 40px;
}

.experience-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.highlight-column ul {
    list-style: none;
    padding: 0;
}

.highlight-column ul li {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.highlight-column ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

.expertise-section {
    margin-top: 40px;
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.expertise-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.expertise-card {
    background-color: var(--card-bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.06),
        0 2px 6px rgba(15, 23, 42, 0.04);
}

.expertise-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.12));
    color: #1f2937;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.expertise-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.additional-tech {
    margin-top: 30px;
}

.additional-tech p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background-color: var(--card-bg-light);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
}

/* Projects Section */
.projects {
    background-color: var(--card-bg-light);
    padding: 120px 20px;
    background-image: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    position: relative;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #38bdf8 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.35);
}

.project-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.project-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tag {
    background-color: var(--card-bg-light);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
}

.project-features {
    list-style: none;
    padding: 0;
}

.project-features li {
    color: var(--text-grey);
    padding: 5px 0;
    font-size: 0.9rem;
    padding-left: 18px;
    position: relative;
}

.project-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
}

.cta-section p {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--card-bg-light);
    padding: 120px 20px;
    background-image: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.35);
}

.testimonial-stars {
    color: var(--star-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 10px;
}

.testimonial-text {
    color: var(--text-grey);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.98rem;
}

.testimonial-client {
    color: var(--text-dark);
}

.testimonial-client strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-client div {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background-color: var(--dark-footer);
    color: var(--text-light);
    padding: 120px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-value {
    color: var(--text-light);
    font-size: 1rem;
}

.follow-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-medium);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
}

.contact-actions-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
}

/* Appointment Section */
.appointment {
    background-color: var(--card-bg-light);
    padding: 120px 20px;
}

.calendly-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.calendly-note {
    text-align: center;
    color: var(--text-grey);
    margin-top: 20px;
}

.calendly-note a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.calendly-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--dark-footer);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-medium);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--text-light);
}

.footer-divider {
    height: 1px;
    background-color: var(--dark-divider);
    margin: 30px 0;
}

.footer-copyright {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        width: 300px;
        height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero-image img {
        width: 250px;
        height: 250px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .about-card,
    .service-card,
    .project-card,
    .testimonial-card {
        padding: 20px;
    }
}
