/* Smooth scrolling and elegant transitions */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #0D0D0D;
    background-color: #FFFFFF;
    font-size: 18px;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth animations for content sections */
section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.manifesto-section {
    animation-delay: 0.2s;
}

.contact-section {
    animation-delay: 0.4s;
}

/* Smooth hover animations */
.manifesto-highlight {
    transition: all 0.3s ease;
}

.manifesto-highlight:hover {
    transform: translateY(-2px);
}

.leadership-disciplines .discipline {
    transition: all 0.4s ease;
}

.leadership-disciplines .discipline:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(26, 26, 26, 0.12);
    border-color: rgba(26, 26, 26, 0.2);
}

/* Smooth transitions for navigation */
.nav-menu a {
    transition: all 0.3s ease;
}

.logo-img {
    transition: transform 0.3s ease;
}

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

/* Smooth transitions for contact info */
.contact-info {
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 13, 13, 0.15), 0 0 0 1px rgba(44, 44, 44, 0.3);
}

.contact-info p {
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

/* Enhanced color palette with prominent ivory/white/executive grey */
:root {
    --ivory: #FFFFF0;
    --white: #FFFFFF;
    --executive-grey: #0D0D0D;
    --light-grey: #F8F8F8;
    --medium-grey: #666666;
    --accent-grey: #2C2C2C;
    --gold-accent: #D4AF37;
    --important-color: #8B4513;
    --border-light: #E5E5E5;
    --gradient-primary: linear-gradient(135deg, #FFFFF0 0%, #FFFFFF 50%, #F8F8F8 100%);
    --gradient-secondary: linear-gradient(135deg, #FFFFFF 0%, #FFFFF0 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-executive: linear-gradient(135deg, #0D0D0D 0%, #2C2C2C 100%);
}

/* Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--medium-grey);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding-bottom: 3px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--executive-grey);
}

.logo-right {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Main content spacing */
main {
    margin-top: 100px;
    min-height: calc(100vh - 180px);
}

/* Hero section with enhanced ivory/white/executive grey */
.hero {
    background: var(--gradient-primary);
    padding: 140px 60px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E5E5E5" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.03) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    color: var(--executive-grey);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.subheading {
    font-size: 22px;
    color: var(--medium-grey);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    letter-spacing: 0.5px;
}

.name-line h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--executive-grey);
    margin-bottom: 15px;
    letter-spacing: 0.2px;
}

.name-line .title {
    font-size: 18px;
    color: var(--medium-grey);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.name-line .location {
    font-size: 16px;
    color: var(--medium-grey);
    font-style: italic;
    letter-spacing: 0.2px;
}

.contact-info-hero {
    margin: 20px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Contact info with executive grey box */
.contact-section-hero {
    margin: 25px 0;
    padding: 30px;
    background: var(--executive-grey);
    color: var(--white);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-align: left;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(13, 13, 13, 0.2);
}

.contact-section-hero h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.1px;
}

.contact-section-hero p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.contact-section-hero p:first-of-type {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.creator-title {
    font-size: 18px;
    color: var(--executive-grey);
    margin: 15px 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.copyright-hero {
    font-size: 14px;
    color: var(--medium-grey);
    margin-top: 25px;
    font-style: italic;
    letter-spacing: 0.2px;
}

/* Opening statement with ivory/white/executive grey */
.opening-statement {
    background-color: var(--white);
    padding: 100px 60px;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.opening-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid4" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%231A1A1A" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid4)"/></svg>');
    opacity: 0.4;
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
}

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

.statement-content p {
    font-size: 22px;
    line-height: 1.8;
    color: var(--executive-grey);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.statement-content p:last-child {
    margin-bottom: 0;
}

/* About page sections */
.about-section,
.services-section,
.belief-section,
.clients-section,
.philosophy-section {
    background-color: var(--white);
    padding: 80px 40px;
}

.about-section:nth-child(even),
.services-section:nth-child(even),
.belief-section:nth-child(even),
.clients-section:nth-child(even),
.philosophy-section:nth-child(even) {
    background-color: var(--ivory);
}

.about-content,
.services-content,
.belief-content,
.clients-content,
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h1,
.services-content h1,
.belief-content h1,
.clients-content h1,
.philosophy-content h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 40px;
    text-align: center;
}

.belief-content h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 20px;
    text-align: center;
}

.about-content p,
.belief-content p,
.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--executive-grey);
    margin-bottom: 20px;
}

.highlight {
    font-style: italic;
    color: var(--accent-grey);
    font-size: 22px;
    text-align: center;
    margin: 30px 0;
    font-weight: 300;
}

/* Leadership disciplines section removed */

/* Content boxes for structured sections */
.content-box {
    background: var(--white);
    border: 2px solid var(--gold-accent);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(13, 13, 13, 0.1);
}

.content-box h3 {
    color: var(--important-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote box for identity section */
.quote-box {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold-accent);
    border-radius: 8px;
    padding: 25px 30px;
    margin: 20px 0;
    text-align: left;
    box-shadow: 0 5px 15px rgba(13, 13, 13, 0.08);
}

.quote-box p {
    color: var(--executive-grey);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-style: italic;
    font-weight: 400;
}

.quote-box p:last-child {
    margin-bottom: 0;
}

/* Highlight box for CEO coaches section */
.highlight-box {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    text-align: center;
    box-shadow: none;
    flex: 1;
    min-width: 160px;
    transition: all 0.4s ease;
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.3;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item:hover::before {
    opacity: 0.8;
}

.highlight-title {
    color: var(--important-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Entrepreneur grid for prominent Indian leaders */
.entrepreneur-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.entrepreneur-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--executive-grey);
    box-shadow: none;
    flex: 1;
    min-width: 200px;
    transition: all 0.4s ease;
    position: relative;
}

.entrepreneur-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-accent);
    opacity: 0.3;
}

.entrepreneur-item:hover {
    transform: translateY(-3px);
}

.entrepreneur-item:hover::before {
    opacity: 0.8;
}

/* Gap grid for REAL GAP section */
.gap-grid {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.gap-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--important-color);
    box-shadow: none;
    flex: 1;
    min-width: 150px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.gap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--important-color);
    opacity: 0.3;
}

.gap-item:hover {
    transform: translateY(-4px);
}

.gap-item:hover::before {
    opacity: 0.8;
}

/* Have and Lack grids */
.have-grid, .lack-grid {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.have-item, .lack-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--executive-grey);
    box-shadow: none;
    flex: 1;
    min-width: 130px;
    transition: all 0.4s ease;
    position: relative;
}

.have-item::before, .lack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-accent);
    opacity: 0.3;
}

.have-item:hover, .lack-item:hover {
    transform: translateY(-3px);
}

.have-item:hover::before, .lack-item:hover::before {
    opacity: 0.8;
}

/* Not items with X marks */
.not-box {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.not-item {
    background: var(--white);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: rgba(220, 53, 69, 0.7);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.1);
    flex: 1;
    min-width: 140px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.not-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.5);
}

.x-mark {
    font-size: 20px;
    color: rgba(220, 53, 69, 0.8);
}

.not-text {
    color: rgba(220, 53, 69, 0.9);
}

/* Leaders grid for Most leaders section */
.leaders-grid {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.leaders-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--medium-grey);
    box-shadow: none;
    flex: 1;
    min-width: 150px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.leaders-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--medium-grey);
    opacity: 0.3;
}

.leaders-item:hover {
    transform: translateY(-4px);
}

.leaders-item:hover::before {
    opacity: 0.8;
}

/* Key statement styling */
.key-statement {
    font-size: 22px;
    font-weight: 600;
    color: var(--important-color);
    text-align: center;
    margin: 40px 0;
    padding: 25px 30px;
    position: relative;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.key-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.key-statement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.key-statement:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Design section */
.design-section {
    background-color: var(--ivory);
    padding: 80px 40px;
}

.design-content {
    max-width: 800px;
    margin: 0 auto;
}

.design-content h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 40px;
    text-align: center;
}

.design-content h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 30px;
}

.design-content h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-grey);
    margin-bottom: 15px;
    margin-top: 30px;
}

.design-principles ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.design-principles li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--executive-grey);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.design-principles li:before {
    content: "•";
    color: var(--accent-grey);
    position: absolute;
    left: 0;
}

.emphasis {
    font-style: italic;
    color: var(--accent-grey);
    font-size: 20px;
    text-align: center;
    margin: 30px 0;
    font-weight: 300;
    background-color: var(--white);
    padding: 20px;
    border-left: 3px solid var(--accent-grey);
}

/* Services */
.service-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--light-grey);
    border-left: 3px solid var(--accent-grey);
}

.service-item h2 {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--executive-grey);
    margin: 0;
}

/* Clients list */
.clients-content ul {
    list-style: none;
    padding: 0;
}

.clients-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--executive-grey);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.clients-content li:before {
    content: "•";
    color: var(--accent-grey);
    position: absolute;
    left: 0;
}

/* Manifesto section with enhanced ivory/white/executive grey */
.manifesto-section {
    background: var(--gradient-secondary);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%231A1A1A" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
}

.manifesto-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInUp 1.2s ease-out;
}

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

/* Important text styling for headings */
h1, h2, h3 {
    color: var(--important-color);
    font-weight: 300;
}

.manifesto-content h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--important-color);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.3px;
    position: relative;
}

.manifesto-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--important-color);
}

.manifesto-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--executive-grey);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.manifesto-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.manifesto-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--executive-grey);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.manifesto-content li:before {
    content: "•";
    color: var(--gold-accent);
    position: absolute;
    left: 10px;
    font-size: 20px;
}

/* Important text styling */
.important {
    color: var(--important-color);
    font-weight: 400;
}

strong, b {
    color: var(--important-color);
    font-weight: 500;
}

/* Modern manifesto highlight without box */
.manifesto-highlight {
    font-style: italic;
    color: var(--important-color);
    font-size: 32px;
    text-align: center;
    margin: 0 auto 60px auto;
    font-weight: 300;
    letter-spacing: 0.2px;
    position: relative;
    max-width: 800px;
    padding: 40px 20px 20px 20px;
}

.manifesto-highlight::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--important-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.manifesto-highlight::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 60px;
    color: var(--important-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Modern signature with ivory/white/executive grey */
.signature {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: var(--gradient-secondary);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.06);
    position: relative;
    overflow: hidden;
}

.signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-executive);
}

.signature p {
    font-size: 16px;
    color: var(--executive-grey);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.signature p:first-child {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--executive-grey);
}

/* Contact section */
.contact-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid5" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid5)"/></svg>');
    opacity: 0.2;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

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

/* Contact section headings */
.contact-content h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--important-color);
    margin-bottom: 40px;
    letter-spacing: -0.2px;
}

.contact-content p {
    font-size: 20px;
    color: var(--executive-grey);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.1px;
}

/* Contact info with decorative patterns and styling */
.contact-info {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFF0 100%);
    color: var(--executive-grey);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(13, 13, 13, 0.1), 0 0 0 1px rgba(44, 44, 44, 0.2);
    border: 1px solid var(--medium-grey);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.contact-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23D4AF37" opacity="0.15"/><path d="M 0 10 L 20 10" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/><path d="M 10 0 L 10 20" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.contact-info p {
    font-size: 18px;
    color: var(--executive-grey);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info p:nth-child(4) {
    font-family: 'Arial', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
}

.contact-info p {
    font-weight: 300;
    letter-spacing: 0.1px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.contact-info strong {
    color: var(--important-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

/* Fix phone number and email colors to be black instead of blue */
.contact-info p a {
    color: var(--executive-grey) !important;
    text-decoration: none;
}

.contact-info p a:hover {
    color: var(--executive-grey) !important;
    text-decoration: none;
}

/* Remove automatic phone number styling on iOS */
.contact-info p a[href^="tel:"] {
    color: var(--executive-grey) !important;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 600;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
}

.contact-info p a[href^="tel:"]:hover {
    color: var(--executive-grey) !important;
    text-decoration: none;
}

/* Ensure email links are also black */
.contact-info p a[href^="mailto:"] {
    color: var(--executive-grey) !important;
    text-decoration: none;
}

.contact-info p a[href^="mailto:"]:hover {
    color: var(--executive-grey) !important;
    text-decoration: none;
}

/* Simple footer without box */
footer {
    background: var(--gradient-primary);
    border-top: 1px solid var(--border-light);
    padding: 40px 60px;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: var(--executive-grey);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

footer p:first-child {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--executive-grey);
}

/* Low opacity for design credit line */
footer p:last-child {
    opacity: 0.3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--medium-grey);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-grey);
}

.modal h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-grey);
    margin-bottom: 20px;
}

.modal p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--executive-grey);
    margin-bottom: 20px;
}

.modal-button {
    background-color: var(--accent-grey);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: var(--executive-grey);
}

/* Modal trigger button */
.modal-trigger {
    background-color: transparent;
    border: 2px solid var(--accent-grey);
    color: var(--accent-grey);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.modal-trigger:hover {
    background-color: var(--accent-grey);
    color: var(--white);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        height: auto;
        min-height: 80px;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        gap: 20px;
        justify-content: center;
        width: 100%;
    }
    
    .logo-right {
        margin-top: 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    main {
        margin-top: 120px;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .subheading {
        font-size: 18px;
    }
    
    .name-line h2 {
        font-size: 28px;
    }
    
    .about-section,
    .services-section,
    .belief-section,
    .clients-section,
    .philosophy-section,
    .manifesto-section,
    .contact-section,
    .opening-statement {
        padding: 60px 20px;
    }
    
    .about-content h1,
    .services-content h1,
    .belief-content h1,
    .clients-content h1,
    .philosophy-content h1,
    .manifesto-content h1,
    .contact-content h1 {
        font-size: 28px;
    }
    
    .service-item {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .statement-content p {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info p {
        font-size: 16px;
        text-align: left;
    }
    
    .contact-info strong {
        display: inline-block;
        min-width: 70px;
    }
    
    .manifesto-highlight {
        font-size: 24px;
        padding: 30px 15px 15px 15px;
        margin: 0 auto 40px auto;
    }
    
    .manifesto-highlight::before {
        top: 5px;
        left: 15px;
        font-size: 40px;
        opacity: 0.4;
    }
    
    .manifesto-highlight::after {
        bottom: 5px;
        right: 15px;
        font-size: 40px;
        opacity: 0.4;
    }
    
    .signature {
        margin-top: 60px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 15px;
        min-height: 70px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding-bottom: 2px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    main {
        margin-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .subheading {
        font-size: 16px;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .contact-info p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .contact-info strong {
        min-width: 60px;
        font-size: 14px;
    }
    
    .manifesto-highlight {
        font-size: 20px;
        padding: 25px 10px 10px 10px;
        line-height: 1.6;
    }
    
    .manifesto-highlight::before {
        top: 0;
        left: 10px;
        font-size: 32px;
        opacity: 0.5;
    }
    
    .manifesto-highlight::after {
        bottom: 0;
        right: 10px;
        font-size: 32px;
        opacity: 0.5;
    }
    
    body {
        font-size: 16px;
    }
    
    .statement-content p,
    .manifesto-content p,
    .about-content p,
    .belief-content p,
    .philosophy-content p {
        font-size: 16px;
    }
    
    .discipline h3 {
        font-size: 18px;
    }
    
    .discipline p {
        font-size: 14px;
    }
}
